mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-27 01:56:14 +01:00
Include SERIAL
This commit is contained in:
parent
9b3c6fe896
commit
f38bf512ab
|
@ -98,6 +98,7 @@
|
||||||
#define REV(speed)
|
#define REV(speed)
|
||||||
#define START(route)
|
#define START(route)
|
||||||
#define SENDLOCO(cab,route)
|
#define SENDLOCO(cab,route)
|
||||||
|
#define SERIAL(msg)
|
||||||
#define SERIAL1(msg)
|
#define SERIAL1(msg)
|
||||||
#define SERIAL2(msg)
|
#define SERIAL2(msg)
|
||||||
#define SERIAL3(msg)
|
#define SERIAL3(msg)
|
||||||
|
@ -132,6 +133,7 @@
|
||||||
#undef EXRAIL
|
#undef EXRAIL
|
||||||
#undef PRINT
|
#undef PRINT
|
||||||
#undef LCN
|
#undef LCN
|
||||||
|
#undef SERIAL
|
||||||
#undef SERIAL1
|
#undef SERIAL1
|
||||||
#undef SERIAL2
|
#undef SERIAL2
|
||||||
#undef SERIAL3
|
#undef SERIAL3
|
||||||
|
@ -143,6 +145,7 @@ const int StringMacroTracker1=__COUNTER__;
|
||||||
#define ENDEXRAIL default: DIAG(F("printMessage error %d %d"),id,StringMacroTracker1); return ; }}
|
#define ENDEXRAIL default: DIAG(F("printMessage error %d %d"),id,StringMacroTracker1); return ; }}
|
||||||
#define PRINT(msg) case (__COUNTER__ - StringMacroTracker1) : printMessage2(F(msg));break;
|
#define PRINT(msg) case (__COUNTER__ - StringMacroTracker1) : printMessage2(F(msg));break;
|
||||||
#define LCN(msg) case (__COUNTER__ - StringMacroTracker1) : StringFormatter::send(&LCN_SERIAL,F(msg));break;
|
#define LCN(msg) case (__COUNTER__ - StringMacroTracker1) : StringFormatter::send(&LCN_SERIAL,F(msg));break;
|
||||||
|
#define SERIAL(msg) case (__COUNTER__ - StringMacroTracker1) : StringFormatter::send(&Serial,F(msg));break;
|
||||||
#define SERIAL1(msg) case (__COUNTER__ - StringMacroTracker1) : StringFormatter::send(&Serial1,F(msg));break;
|
#define SERIAL1(msg) case (__COUNTER__ - StringMacroTracker1) : StringFormatter::send(&Serial1,F(msg));break;
|
||||||
#define SERIAL2(msg) case (__COUNTER__ - StringMacroTracker1) : StringFormatter::send(L&Serial2,F(msg));break;
|
#define SERIAL2(msg) case (__COUNTER__ - StringMacroTracker1) : StringFormatter::send(L&Serial2,F(msg));break;
|
||||||
#define SERIAL3(msg) case (__COUNTER__ - StringMacroTracker1) : StringFormatter::send(&Serial3,F(msg));break;
|
#define SERIAL3(msg) case (__COUNTER__ - StringMacroTracker1) : StringFormatter::send(&Serial3,F(msg));break;
|
||||||
|
@ -199,6 +202,7 @@ const int StringMacroTracker1=__COUNTER__;
|
||||||
#undef SERVO2
|
#undef SERVO2
|
||||||
#undef FADE
|
#undef FADE
|
||||||
#undef SENDLOCO
|
#undef SENDLOCO
|
||||||
|
#undef SERIAL
|
||||||
#undef SERIAL1
|
#undef SERIAL1
|
||||||
#undef SERIAL2
|
#undef SERIAL2
|
||||||
#undef SERIAL3
|
#undef SERIAL3
|
||||||
|
@ -269,6 +273,7 @@ const int StringMacroTracker1=__COUNTER__;
|
||||||
#define RETURN OPCODE_RETURN,NOP,
|
#define RETURN OPCODE_RETURN,NOP,
|
||||||
#define REV(speed) OPCODE_REV,V(speed),
|
#define REV(speed) OPCODE_REV,V(speed),
|
||||||
#define SENDLOCO(cab,route) OPCODE_SENDLOCO,V(cab),OPCODE_PAD,V(route),
|
#define SENDLOCO(cab,route) OPCODE_SENDLOCO,V(cab),OPCODE_PAD,V(route),
|
||||||
|
#define SERIAL(msg) PRINT(msg)
|
||||||
#define SERIAL1(msg) PRINT(msg)
|
#define SERIAL1(msg) PRINT(msg)
|
||||||
#define SERIAL2(msg) PRINT(msg)
|
#define SERIAL2(msg) PRINT(msg)
|
||||||
#define SERIAL3(msg) PRINT(msg)
|
#define SERIAL3(msg) PRINT(msg)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user