mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2025-04-03 20:20:12 +02:00
EXRAIL Assert SET/RESET fix
This commit is contained in:
parent
e56e4826ec
commit
764639ed79
@ -145,9 +145,9 @@ constexpr bool unsafePin(const int16_t value, const uint16_t pos=0 ) {
|
|||||||
// check dangerous pins
|
// check dangerous pins
|
||||||
#define _PIN_RESERVED_ "\n\nUSER ERROR: Pin is used by Motor Shield or other critical function.\n"
|
#define _PIN_RESERVED_ "\n\nUSER ERROR: Pin is used by Motor Shield or other critical function.\n"
|
||||||
#undef SET
|
#undef SET
|
||||||
#define SET(vpin) static_assert(!unsafePin(vpin),"SET(" #vpin ")" _PIN_RESERVED_);
|
#define SET(vpin, ...) static_assert(!unsafePin(vpin),"SET(" #vpin ")" _PIN_RESERVED_);
|
||||||
#undef RESET
|
#undef RESET
|
||||||
#define RESET(vpin) static_assert(!unsafePin(vpin),"RESET(" #vpin ")" _PIN_RESERVED_);
|
#define RESET(vpin,...) static_assert(!unsafePin(vpin),"RESET(" #vpin ")" _PIN_RESERVED_);
|
||||||
#undef BLINK
|
#undef BLINK
|
||||||
#define BLINK(vpin,onDuty,offDuty) static_assert(!unsafePin(vpin),"BLINK(" #vpin ")" _PIN_RESERVED_);
|
#define BLINK(vpin,onDuty,offDuty) static_assert(!unsafePin(vpin),"BLINK(" #vpin ")" _PIN_RESERVED_);
|
||||||
#undef SIGNAL
|
#undef SIGNAL
|
||||||
|
@ -3,7 +3,8 @@
|
|||||||
|
|
||||||
#include "StringFormatter.h"
|
#include "StringFormatter.h"
|
||||||
|
|
||||||
#define VERSION "5.5.19"
|
#define VERSION "5.5.20"
|
||||||
|
// 5.5.20 - EXRAIL SET/RESET assert fix
|
||||||
// 5.5.19 - Railcom change to use RailcomCollector device
|
// 5.5.19 - Railcom change to use RailcomCollector device
|
||||||
// 5.5.18 - New STASH internals
|
// 5.5.18 - New STASH internals
|
||||||
// - EXRAIL IFSTASH/CLEAR_ANY_STASH
|
// - EXRAIL IFSTASH/CLEAR_ANY_STASH
|
||||||
|
Loading…
Reference in New Issue
Block a user