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:
commit
891852ce39
1 changed files with 1 additions and 1 deletions
|
|
@ -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 */
|
/* if idle, search for new command, skip comments or empty lines */
|
||||||
while (CO_fifo_CommSearch(>wa->commFifo, false) && (gtwa->state == CO_GTWA_ST_IDLE)) {
|
while (CO_fifo_CommSearch(>wa->commFifo, false) && (gtwa->state == CO_GTWA_ST_IDLE)) {
|
||||||
char tok[20];
|
char tok[21];
|
||||||
size_t n;
|
size_t n;
|
||||||
uint32_t ui[3];
|
uint32_t ui[3];
|
||||||
int32_t i;
|
int32_t i;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue