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
pull/193/head
Niccolò Izzo 2023-08-30 21:48:16 +02:00 zatwierdzone przez Silvano Seva
rodzic c276fc5a51
commit 024c7ffe3a
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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;