ttwrplus: fix sporadic missing TX

The bug was due to an uninitialized memory being used to configure the
RTX thread, that disabled Tx in a random way by randomly set the
txDisable field.

TG-553
This commit is contained in:
Niccolò Izzo 2023-08-30 21:48:16 +02:00 committed by Silvano Seva
parent c276fc5a51
commit 024c7ffe3a
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ void *ui_threadFunc(void *arg)
(void) arg;
kbd_msg_t kbd_msg;
rtxStatus_t rtx_cfg;
rtxStatus_t rtx_cfg = { 0 };
bool sync_rtx = true;
long long time = 0;