mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-22 23:56:13 +01:00
detection happening!
This commit is contained in:
parent
7bd790dfbf
commit
a49cb95795
|
@ -77,6 +77,7 @@ void DCCWaveform::interruptHandler() {
|
||||||
if (cutoutNextTime) {
|
if (cutoutNextTime) {
|
||||||
cutoutNextTime=false;
|
cutoutNextTime=false;
|
||||||
railcomSampleWindow=false; // about to cutout, stop reading railcom data.
|
railcomSampleWindow=false; // about to cutout, stop reading railcom data.
|
||||||
|
railcomCutoutCounter++;
|
||||||
DCCTimer::startRailcomTimer(9);
|
DCCTimer::startRailcomTimer(9);
|
||||||
}
|
}
|
||||||
byte sigMain=signalTransform[mainTrack.state];
|
byte sigMain=signalTransform[mainTrack.state];
|
||||||
|
@ -125,6 +126,7 @@ bool DCCWaveform::railcomPossible=false; // High accuracy only
|
||||||
volatile bool DCCWaveform::railcomActive=false; // switched on by user
|
volatile bool DCCWaveform::railcomActive=false; // switched on by user
|
||||||
volatile bool DCCWaveform::railcomDebug=false; // switched on by user
|
volatile bool DCCWaveform::railcomDebug=false; // switched on by user
|
||||||
volatile bool DCCWaveform::railcomSampleWindow=false; // true during packet transmit
|
volatile bool DCCWaveform::railcomSampleWindow=false; // true during packet transmit
|
||||||
|
volatile byte DCCWaveform::railcomCutoutCounter=0; // cyclic cutout
|
||||||
|
|
||||||
bool DCCWaveform::setRailcom(bool on, bool debug) {
|
bool DCCWaveform::setRailcom(bool on, bool debug) {
|
||||||
if (on && railcomPossible) {
|
if (on && railcomPossible) {
|
||||||
|
|
|
@ -87,6 +87,9 @@ class DCCWaveform {
|
||||||
inline static bool isRailcom() {
|
inline static bool isRailcom() {
|
||||||
return railcomActive;
|
return railcomActive;
|
||||||
};
|
};
|
||||||
|
inline static byte getRailcomCutoutCounter() {
|
||||||
|
return railcomCutoutCounter;
|
||||||
|
};
|
||||||
inline static bool isRailcomSampleWindow() {
|
inline static bool isRailcomSampleWindow() {
|
||||||
return railcomSampleWindow;
|
return railcomSampleWindow;
|
||||||
};
|
};
|
||||||
|
@ -125,6 +128,7 @@ class DCCWaveform {
|
||||||
static volatile bool railcomActive; // switched on by user
|
static volatile bool railcomActive; // switched on by user
|
||||||
static volatile bool railcomDebug; // switched on by user
|
static volatile bool railcomDebug; // switched on by user
|
||||||
static volatile bool railcomSampleWindow; // when safe to sample
|
static volatile bool railcomSampleWindow; // when safe to sample
|
||||||
|
static volatile byte railcomCutoutCounter; // incremented for each cutout
|
||||||
static bool cutoutNextTime; // railcom
|
static bool cutoutNextTime; // railcom
|
||||||
#ifdef ARDUINO_ARCH_ESP32
|
#ifdef ARDUINO_ARCH_ESP32
|
||||||
static RMTChannel *rmtMainChannel;
|
static RMTChannel *rmtMainChannel;
|
||||||
|
|
|
@ -54,7 +54,7 @@
|
||||||
|
|
||||||
// Debug and diagnostic defines, enable too many will result in slowing the driver
|
// Debug and diagnostic defines, enable too many will result in slowing the driver
|
||||||
#define DIAG_I2CRailcom
|
#define DIAG_I2CRailcom
|
||||||
#define DIAG_I2CRailcom_data
|
//#define DIAG_I2CRailcom_data
|
||||||
|
|
||||||
class I2CRailcom : public IODevice {
|
class I2CRailcom : public IODevice {
|
||||||
private:
|
private:
|
||||||
|
@ -62,6 +62,7 @@ private:
|
||||||
uint8_t _UART_CH=0x00; // channel 0 or 1 flips each loop if npins>1
|
uint8_t _UART_CH=0x00; // channel 0 or 1 flips each loop if npins>1
|
||||||
byte _inbuf[65];
|
byte _inbuf[65];
|
||||||
byte _outbuf[2];
|
byte _outbuf[2];
|
||||||
|
byte cutoutCounter[2];
|
||||||
Railcom _channelMonitors[2];
|
Railcom _channelMonitors[2];
|
||||||
int16_t _locoInBlock[2];
|
int16_t _locoInBlock[2];
|
||||||
public:
|
public:
|
||||||
|
@ -87,6 +88,8 @@ public:
|
||||||
DIAG(F("I2CRailcom: %s UART%S detected"),
|
DIAG(F("I2CRailcom: %s UART%S detected"),
|
||||||
_I2CAddress.toString(), exists?F(""):F(" NOT"));
|
_I2CAddress.toString(), exists?F(""):F(" NOT"));
|
||||||
if (!exists) return;
|
if (!exists) return;
|
||||||
|
_locoInBlock[0]=0;
|
||||||
|
_locoInBlock[1]=0;
|
||||||
|
|
||||||
_UART_CH=0;
|
_UART_CH=0;
|
||||||
Init_SC16IS752(); // Initialize UART0
|
Init_SC16IS752(); // Initialize UART0
|
||||||
|
@ -110,39 +113,43 @@ public:
|
||||||
// IF we have 2 channels, flip channels each loop
|
// IF we have 2 channels, flip channels each loop
|
||||||
if (_nPins>1) _UART_CH=_UART_CH?0:1;
|
if (_nPins>1) _UART_CH=_UART_CH?0:1;
|
||||||
|
|
||||||
|
// have we read this cutout already?
|
||||||
|
auto cut=DCCWaveform::getRailcomCutoutCounter();
|
||||||
|
if (cutoutCounter[_UART_CH]==cut) return;
|
||||||
|
cutoutCounter[_UART_CH]=cut;
|
||||||
|
|
||||||
// Read incoming raw Railcom data, and process accordingly
|
// Read incoming raw Railcom data, and process accordingly
|
||||||
|
|
||||||
auto inlength = UART_ReadRegister(REG_RXLV);
|
auto inlength = UART_ReadRegister(REG_RXLV);
|
||||||
if (inlength==0) return;
|
if (inlength==0) return;
|
||||||
|
if (inlength> sizeof(_inbuf)) inlength=sizeof(_inbuf);
|
||||||
#ifdef DIAG_I2CRailcom
|
_inbuf[0]=0;
|
||||||
DIAG(F("Railcom: %s/%d RX Fifo length: %d"),_I2CAddress.toString(), _UART_CH, inlength);
|
if (inlength>0) {
|
||||||
#endif
|
|
||||||
|
|
||||||
// Read data buffer from UART
|
// Read data buffer from UART
|
||||||
_outbuf[0]=(byte)(REG_RHR << 3 | _UART_CH << 1);
|
_outbuf[0]=(byte)(REG_RHR << 3 | _UART_CH << 1);
|
||||||
I2CManager.read(_I2CAddress, _inbuf, inlength, _outbuf, 1);
|
I2CManager.read(_I2CAddress, _inbuf, inlength, _outbuf, 1);
|
||||||
|
}
|
||||||
// HK: Reset FIFO at end of read cycle
|
// HK: Reset FIFO at end of read cycle
|
||||||
UART_WriteRegister(REG_FCR, 0x07,false);
|
UART_WriteRegister(REG_FCR, 0x07,false);
|
||||||
|
//if (inlength<2) return;
|
||||||
|
|
||||||
#ifdef DIAG_I2CRailcom_data
|
#ifdef DIAG_I2CRailcom_data
|
||||||
DIAG(F("Railcom %s/%d RX FIFO Data"), _I2CAddress.toString(), _UART_CH);
|
DIAG(F("Railcom %s/%d RX FIFO Data, %d"), _I2CAddress.toString(), _UART_CH,inlength);
|
||||||
for (int i = 0; i < inlength; i++){
|
for (int i = 0; i < inlength; i++){
|
||||||
DIAG(F("[0x%x]: 0x%x"), i, _inbuf[i]);
|
if (_inbuf[i])DIAG(F("[0x%x]: 0x%x"), i, _inbuf[i]);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Ask Railcom to interpret the channel1 loco
|
// Ask Railcom to interpret the channel1 loco
|
||||||
auto locoid=_channelMonitors[_UART_CH].getChannel1Loco(_inbuf);
|
auto locoid=_channelMonitors[_UART_CH].getChannel1Loco(_inbuf);
|
||||||
#ifdef DIAG_I2CRailcom
|
|
||||||
DIAG(F("Railcom Channel1=%d"), locoid);
|
|
||||||
#endif
|
|
||||||
if (locoid<0) return; // -1 indicates Railcom needs another packet
|
if (locoid<0) return; // -1 indicates Railcom needs another packet
|
||||||
|
|
||||||
// determine if loco in this block has changed
|
// determine if loco in this block has changed
|
||||||
auto prevLoco=_locoInBlock[_UART_CH];
|
auto prevLoco=_locoInBlock[_UART_CH];
|
||||||
if (locoid==prevLoco) return;
|
if (locoid==prevLoco) return;
|
||||||
|
#ifdef DIAG_I2CRailcom
|
||||||
|
DIAG(F("Railcom vpin %d was %d is %d "), _firstVpin+_UART_CH, prevLoco, locoid);
|
||||||
|
#endif
|
||||||
|
|
||||||
// Previous loco (if any) is exiting block
|
// Previous loco (if any) is exiting block
|
||||||
if (prevLoco) RMFT3::blockEvent(_firstVpin+_UART_CH,prevLoco,false);
|
if (prevLoco) RMFT3::blockEvent(_firstVpin+_UART_CH,prevLoco,false);
|
||||||
|
|
|
@ -133,6 +133,7 @@ const uint8_t HIGHFLASH decode[256] =
|
||||||
Railcom::Railcom() {
|
Railcom::Railcom() {
|
||||||
haveHigh=false;
|
haveHigh=false;
|
||||||
haveLow=false;
|
haveLow=false;
|
||||||
|
packetsWithNoData=0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* returns -1: Call again next packet
|
/* returns -1: Call again next packet
|
||||||
|
@ -141,9 +142,7 @@ Railcom::Railcom() {
|
||||||
*/
|
*/
|
||||||
int16_t Railcom::getChannel1Loco(uint8_t * inbound) {
|
int16_t Railcom::getChannel1Loco(uint8_t * inbound) {
|
||||||
auto v1=GETHIGHFLASH(decode,inbound[0]);
|
auto v1=GETHIGHFLASH(decode,inbound[0]);
|
||||||
if (v1>MAX_VALID) return -1;
|
|
||||||
auto v2=GETHIGHFLASH(decode,inbound[1]);
|
auto v2=GETHIGHFLASH(decode,inbound[1]);
|
||||||
if (v2>MAX_VALID) return -1;
|
|
||||||
auto packet=(v1<<6) | v2;
|
auto packet=(v1<<6) | v2;
|
||||||
// packet is 12 bits TTTTDDDDDDDD
|
// packet is 12 bits TTTTDDDDDDDD
|
||||||
auto type=packet>>8;
|
auto type=packet>>8;
|
||||||
|
@ -151,19 +150,25 @@ int16_t Railcom::getChannel1Loco(uint8_t * inbound) {
|
||||||
if (type==RMOB_ADRHIGH) {
|
if (type==RMOB_ADRHIGH) {
|
||||||
holdoverHigh=data;
|
holdoverHigh=data;
|
||||||
haveHigh=true;
|
haveHigh=true;
|
||||||
|
packetsWithNoData=0;
|
||||||
}
|
}
|
||||||
else if (type==RMOB_ADRLOW) {
|
else if (type==RMOB_ADRLOW) {
|
||||||
holdoverLow=data;
|
holdoverLow=data;
|
||||||
haveLow=true;
|
haveLow=true;
|
||||||
|
packetsWithNoData=0;
|
||||||
}
|
}
|
||||||
else if (type==RMOB_EXT) {
|
else if (type==RMOB_EXT) {
|
||||||
return -1; /* ignore*/
|
return -1; /* ignore*/
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
if (packetsWithNoData>MAX_WAIT_FOR_GLITCH) {
|
||||||
haveHigh=false;
|
haveHigh=false;
|
||||||
haveLow=false;
|
haveLow=false;
|
||||||
return 0; // treat as no loco
|
return 0; // treat as no loco
|
||||||
}
|
}
|
||||||
|
packetsWithNoData++;
|
||||||
|
return -1; // need more data
|
||||||
|
}
|
||||||
if (haveHigh && haveLow) return ((holdoverHigh<<8)| holdoverLow);
|
if (haveHigh && haveLow) return ((holdoverHigh<<8)| holdoverLow);
|
||||||
return -1; // call again, need next packet
|
return -1; // call again, need next packet
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,6 +35,8 @@ class Railcom {
|
||||||
private:
|
private:
|
||||||
uint8_t holdoverHigh,holdoverLow;
|
uint8_t holdoverHigh,holdoverLow;
|
||||||
bool haveHigh,haveLow;
|
bool haveHigh,haveLow;
|
||||||
|
uint8_t packetsWithNoData;
|
||||||
|
static const byte MAX_WAIT_FOR_GLITCH=10; // number of dead or empty packets before assuming loco=0
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
Loading…
Reference in New Issue
Block a user