mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-24 00:26:13 +01:00
Compare commits
No commits in common. "6f797b2e15db190597228115344f5669ab534247" and "b3667b4d8585d05f107e93e988fe8d40da3ff469" have entirely different histories.
6f797b2e15
...
b3667b4d85
|
@ -334,14 +334,12 @@ if (compileFeatures & FEATURE_SIGNAL) {
|
||||||
|
|
||||||
void RMFT2::setTurnoutHiddenState(Turnout * t) {
|
void RMFT2::setTurnoutHiddenState(Turnout * t) {
|
||||||
// turnout descriptions are in low flash F strings
|
// turnout descriptions are in low flash F strings
|
||||||
const FSH *desc = getTurnoutDescription(t->getId());
|
t->setHidden(GETFLASH(getTurnoutDescription(t->getId()))==0x01);
|
||||||
if (desc) t->setHidden(GETFLASH(desc)==0x01);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef IO_NO_HAL
|
#ifndef IO_NO_HAL
|
||||||
void RMFT2::setTurntableHiddenState(Turntable * tto) {
|
void RMFT2::setTurntableHiddenState(Turntable * tto) {
|
||||||
const FSH *desc = getTurntableDescription(tto->getId());
|
tto->setHidden(GETFLASH(getTurntableDescription(tto->getId()))==0x01);
|
||||||
if (desc) tto->setHidden(GETFLASH(desc)==0x01);
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -134,7 +134,7 @@ void RMFT2::ComandFilter(Print * stream, byte & opcode, byte & paramCount, int16
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (paramCount==2) { // <JA id>
|
if (paramCount==2) { // <JA id>
|
||||||
int16_t id=p[1];
|
uint16_t id=p[1];
|
||||||
StringFormatter::send(stream,F("<jA %d %c \"%S\">\n"),
|
StringFormatter::send(stream,F("<jA %d %c \"%S\">\n"),
|
||||||
id, getRouteType(id), getRouteDescription(id));
|
id, getRouteType(id), getRouteDescription(id));
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
#define GITHUB_SHA "devel-202401100719Z"
|
#define GITHUB_SHA "devel-202401081219Z"
|
||||||
|
|
|
@ -66,9 +66,9 @@ static const FSH * guessI2CDeviceType(uint8_t address) {
|
||||||
return F("Real-time clock");
|
return F("Real-time clock");
|
||||||
else if (address >= 0x70 && address <= 0x77)
|
else if (address >= 0x70 && address <= 0x77)
|
||||||
return F("I2C Mux");
|
return F("I2C Mux");
|
||||||
else if (address >= 0x90 && address <= 0xAE)
|
else if (address >= 0x90 && address <= 0xAE);
|
||||||
return F("UART");
|
else
|
||||||
return F("?");
|
return F("?");
|
||||||
}
|
}
|
||||||
|
|
||||||
// If not already initialised, initialise I2C
|
// If not already initialised, initialise I2C
|
||||||
|
|
|
@ -3,8 +3,7 @@
|
||||||
|
|
||||||
#include "StringFormatter.h"
|
#include "StringFormatter.h"
|
||||||
|
|
||||||
#define VERSION "5.2.22ethCdf"
|
#define VERSION "5.2.21ethCdf"
|
||||||
// 5.2.22 - Bugfixes: Empty turnout descriptions ok; negative route numbers valid.
|
|
||||||
// 5.2.21 - Add STARTUP_DELAY config option to delay CS bootup
|
// 5.2.21 - Add STARTUP_DELAY config option to delay CS bootup
|
||||||
// 5.2.20 - Check return of Ethernet.begin()
|
// 5.2.20 - Check return of Ethernet.begin()
|
||||||
// 5.2.19 - ESP32: Determine if the RMT hardware can handle DCC
|
// 5.2.19 - ESP32: Determine if the RMT hardware can handle DCC
|
||||||
|
|
Loading…
Reference in New Issue
Block a user