occasional tunerstudio CRC errors #1943

one step back
This commit is contained in:
rusefillc 2020-11-15 21:41:38 -05:00
parent 081aaec862
commit c561fae005
1 changed files with 5 additions and 1 deletions

View File

@ -311,13 +311,17 @@ void sr5WriteCrcPacket(ts_channel_s *tsChannel, uint8_t responseCode, const uint
return;
}
#endif /* TS_CAN_DEVICE */
/*
if (size <= BLOCKING_FACTOR + 7) {
// small packets use small packet optimization
sr5WriteCrcPacketSmall(tsChannel, responseCode, buf, size);
} else {
*/
sr5WriteCrcPacketLarge(tsChannel, responseCode, buf, size);
/*
}
*/
sr5FlushData(tsChannel);
}