mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-22 15:46:14 +01:00
Fix @ reporting on startup
This commit is contained in:
parent
ef47257d67
commit
b478056a9f
|
@ -330,7 +330,7 @@ void CommandDistributor::setVirtualLCDSerial(Print * stream) {
|
|||
virtualLCDSerial=stream;
|
||||
}
|
||||
|
||||
Print* CommandDistributor::virtualLCDSerial=nullptr;
|
||||
Print* CommandDistributor::virtualLCDSerial=&USB_SERIAL;
|
||||
byte CommandDistributor::virtualLCDClient=0xFF;
|
||||
byte CommandDistributor::rememberVLCDClient=0;
|
||||
|
||||
|
|
|
@ -87,7 +87,7 @@ void setup()
|
|||
|
||||
DISPLAY_START (
|
||||
// This block is still executed for DIAGS if display not in use
|
||||
LCD(0,F("DCC-EX v%S"),F(VERSION));
|
||||
LCD(0,F("DCC-EX v" VERSION));
|
||||
LCD(1,F("Lic GPLv3"));
|
||||
);
|
||||
|
||||
|
|
|
@ -54,7 +54,9 @@
|
|||
xxx; \
|
||||
t->refresh();}
|
||||
#else
|
||||
#define DISPLAY_START(xxx) {}
|
||||
#define DISPLAY_START(xxx) { \
|
||||
xxx; \
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // LCD_Implementation_h
|
||||
|
|
1
myHalKCS.cpp
Normal file
1
myHalKCS.cpp
Normal file
|
@ -0,0 +1 @@
|
|||
// If you are planning to use multiple mux devices, perhaps it is good to use the 3-position syntax for all.
|
Loading…
Reference in New Issue
Block a user