decoder: set default maximum motorola (MM2) address to 255

Should work with ECoS and Z21
see #72
Dieser Commit ist enthalten in:
Reinder Feenstra 2023-07-01 00:46:52 +02:00
Ursprung c7361ba98e
Commit 57dc589413

Datei anzeigen

@ -52,7 +52,7 @@ std::pair<uint16_t, uint16_t> DecoderController::decoderAddressMinMax(DecoderPro
return {DCC::addressMin, DCC::addressLongMax};
case DecoderProtocol::Motorola:
return {1, 80};
return {1, 255};
case DecoderProtocol::Selectrix:
return {1, 112};