1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2025-07-28 09:53:45 +02:00

let user disable <D > command in favour for HAL on the Uno platform

This commit is contained in:
Harald Barth
2023-08-29 14:27:38 +02:00
parent 2c64f10da8
commit 26ddd27ecf
2 changed files with 9 additions and 4 deletions

View File

@@ -638,12 +638,12 @@ void DCCEXParser::parseOne(Print *stream, byte *com, RingStream * ringStream)
case ' ': // < >
StringFormatter::send(stream, F("\n"));
return;
#ifndef DISABLE_DIAG
case 'D': // < >
if (parseD(stream, params, p))
return;
return;
#endif
case '=': // <= Track manager control >
if (TrackManager::parseJ(stream, params, p))
return;