mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-12-23 21:01:25 +01:00
Bugfix and refactor for EXRAIL getSignalSlot
This commit is contained in:
parent
1449dc7bac
commit
a610e83f6e
30
EXRAIL2.cpp
30
EXRAIL2.cpp
@ -1,4 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
|
* © 2024 Paul M. Antoine
|
||||||
* © 2021 Neil McKechnie
|
* © 2021 Neil McKechnie
|
||||||
* © 2021-2023 Harald Barth
|
* © 2021-2023 Harald Barth
|
||||||
* © 2020-2023 Chris Harlow
|
* © 2020-2023 Chris Harlow
|
||||||
@ -1143,20 +1144,25 @@ void RMFT2::kill(const FSH * reason, int operand) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int16_t RMFT2::getSignalSlot(int16_t id) {
|
int16_t RMFT2::getSignalSlot(int16_t id) {
|
||||||
for (int sigslot=0;;sigslot++) {
|
|
||||||
int16_t sighandle=GETHIGHFLASHW(RMFT2::SignalDefinitions,sigslot*8);
|
if (id > 0) {
|
||||||
if (sighandle==0) { // end of signal list
|
int sigslot = 0;
|
||||||
DIAG(F("EXRAIL Signal %d not defined"), id);
|
int16_t sighandle = 0;
|
||||||
return -1;
|
// Trundle down the signal list until we reach the end
|
||||||
}
|
while ((sighandle = GETHIGHFLASHW(RMFT2::SignalDefinitions, sigslot * 8)) != 0)
|
||||||
VPIN sigid = sighandle & SIGNAL_ID_MASK;
|
{
|
||||||
// sigid is the signal id used in RED/AMBER/GREEN macro
|
// sigid is the signal id used in RED/AMBER/GREEN macro
|
||||||
// for a LED signal it will be same as redpin
|
// for a LED signal it will be same as redpin
|
||||||
// but for a servo signal it will also have SERVO_SIGNAL_FLAG set.
|
// but for a servo signal it will also have SERVO_SIGNAL_FLAG set.
|
||||||
|
VPIN sigid = sighandle & SIGNAL_ID_MASK;
|
||||||
if (sigid != id) continue; // keep looking
|
if (sigid == (VPIN)id)
|
||||||
return sigslot; // relative slot in signals table
|
return sigslot; // found it
|
||||||
}
|
sigslot++; // keep looking
|
||||||
|
};
|
||||||
|
}
|
||||||
|
// We did not find the signal
|
||||||
|
DIAG(F("EXRAIL Signal %d not defined"), id);
|
||||||
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* static */ void RMFT2::doSignal(int16_t id,char rag) {
|
/* static */ void RMFT2::doSignal(int16_t id,char rag) {
|
||||||
|
@ -3,7 +3,8 @@
|
|||||||
|
|
||||||
#include "StringFormatter.h"
|
#include "StringFormatter.h"
|
||||||
|
|
||||||
#define VERSION "5.2.55"
|
#define VERSION "5.2.56"
|
||||||
|
// 5.2.56 - Bugfix and refactor for EXRAIL getSignalSlot
|
||||||
// 5.2.55 - Move EXRAIL isSignal() to public to allow use in STEALTH call
|
// 5.2.55 - Move EXRAIL isSignal() to public to allow use in STEALTH call
|
||||||
// 5.2.54 - Bugfix for EXRAIL signal handling for active high
|
// 5.2.54 - Bugfix for EXRAIL signal handling for active high
|
||||||
// 5.2.53 - Bugfix for EX-Fastclock, call I2CManager.begin() before checking I2C address
|
// 5.2.53 - Bugfix for EX-Fastclock, call I2CManager.begin() before checking I2C address
|
||||||
|
Loading…
Reference in New Issue
Block a user