ci(parlio): fixed incorrect condition in rx test case

This commit is contained in:
laokaiyao
2025-10-28 18:01:46 +08:00
parent 87d18b0d3d
commit d229fbcf0f
@@ -291,7 +291,7 @@ static bool test_delimiter(parlio_rx_delimiter_handle_t deli, bool free_running_
static uint32_t task_flags = 0;
xTaskCreate(sender_task_thread, "sender task", 4096, &task_flags, 5, &sender_task);
// Waiting for the data ready on line
while ((task_flags & TEST_TASK_DATA_READY_BIT)) {
while (!(task_flags & TEST_TASK_DATA_READY_BIT)) {
vTaskDelay(1);
}