slow mode is broken fix #6161

This commit is contained in:
rusefillc 2024-03-07 15:09:30 -05:00
parent 01c9204c69
commit c572d98072
2 changed files with 8 additions and 2 deletions

View File

@ -127,6 +127,10 @@
#define EFI_TUNER_STUDIO TRUE
#endif
#ifndef EFI_TS_SCATTER
#define EFI_TS_SCATTER TRUE
#endif
/**
* Bluetooth UART setup support.
*/

View File

@ -722,11 +722,13 @@ int TunerStudio::handleCrcCommand(TsChannelBase* tsChannel, char *data, int inco
handleWriteValueCommand(tsChannel, TS_CRC, offset, value);
}
break;
#if EFI_TS_SCATTER
case TS_GET_SCATTERED_GET_COMMAND:
#if EFI_TS_SCATTER
handleScatteredReadCommand(tsChannel);
break;
#else
criticalError("Slow/wireless mode not supported");
#endif // EFI_TS_SCATTER
break;
case TS_CRC_CHECK_COMMAND:
handleCrc32Check(tsChannel, TS_CRC, offset, count);
break;