Skip to content

Commit

Permalink
Merge pull request #1081 from bitcraze/evoggy/bad-esp-startup-fixes
Browse files Browse the repository at this point in the history
Fix baudrate mismatch on startup of ESP
  • Loading branch information
knmcguire committed Jul 15, 2022
2 parents ac88850 + 715859d commit 79aead2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/src/cpx/cpx_uart_transport.c
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ static void CPX_UART_TX(void *param)
uart2SendData(sizeof(ctr), (uint8_t *)&ctr);
vTaskDelay(100);
evBits = xEventGroupGetBits(evGroup);
} while ((evBits & ESP_CTS_EVENT) != ESP_CTS_EVENT);
} while ((evBits & ESP_CTS_EVENT) != ESP_CTS_EVENT && shutdownTransport == false);

while (shutdownTransport == false)
{
Expand Down

0 comments on commit 79aead2

Please sign in to comment.