mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-22 23:56:13 +01:00
INT16_MAX missing again
This commit is contained in:
parent
342d9263d1
commit
72bfc6abc7
|
@ -551,14 +551,14 @@ void WiThrottle::sendRoutes(Print* stream) {
|
||||||
// first pass automations
|
// first pass automations
|
||||||
for (int ix=0;;ix+=2) {
|
for (int ix=0;;ix+=2) {
|
||||||
int16_t id =GETHIGHFLASHW(RMFT2::automationIdList,ix);
|
int16_t id =GETHIGHFLASHW(RMFT2::automationIdList,ix);
|
||||||
if (id==0) break;
|
if (id==INT16_MAX) break;
|
||||||
const FSH * desc=RMFT2::getRouteDescription(id);
|
const FSH * desc=RMFT2::getRouteDescription(id);
|
||||||
StringFormatter::send(stream,F("]\\[A%d}|{%S}|{4"),id,desc);
|
StringFormatter::send(stream,F("]\\[A%d}|{%S}|{4"),id,desc);
|
||||||
}
|
}
|
||||||
// second pass routes.
|
// second pass routes.
|
||||||
for (int ix=0;;ix+=2) {
|
for (int ix=0;;ix+=2) {
|
||||||
int16_t id=GETHIGHFLASHW(RMFT2::routeIdList,ix);
|
int16_t id=GETHIGHFLASHW(RMFT2::routeIdList,ix);
|
||||||
if (id==0) break;
|
if (id==INT16_MAX) break;
|
||||||
const FSH * desc=RMFT2::getRouteDescription(id);
|
const FSH * desc=RMFT2::getRouteDescription(id);
|
||||||
StringFormatter::send(stream,F("]\\[R%d}|{%S}|{2"),id,desc);
|
StringFormatter::send(stream,F("]\\[R%d}|{%S}|{2"),id,desc);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user