1
0
Fork 0

Merge pull request #627 from BitConcepts/fix/gateway-lss-activate-bitrate-buffer

fix: gateway tok[20] too small — lss_activate_bitrate always fails
This commit is contained in:
Janez 2026-06-24 16:33:56 +02:00 committed by GitHub
commit 891852ce39
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -599,7 +599,7 @@ CO_GTWA_process(CO_GTWA_t* gtwa, bool_t enable, uint32_t timeDifference_us, uint
***************************************************************************/
/* if idle, search for new command, skip comments or empty lines */
while (CO_fifo_CommSearch(&gtwa->commFifo, false) && (gtwa->state == CO_GTWA_ST_IDLE)) {
char tok[20];
char tok[21];
size_t n;
uint32_t ui[3];
int32_t i;