Skip to content

Commit c3b0115

Browse files
committed
ci(parlio): fixed incorrect condition in rx test case
1 parent 6a14861 commit c3b0115

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/esp_driver_parlio/test_apps/parlio/main/test_parlio_rx.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ static bool test_delimiter(parlio_rx_delimiter_handle_t deli, bool free_running_
293293
static uint32_t task_flags = 0;
294294
xTaskCreate(sender_task_thread, "sender task", 4096, &task_flags, 5, &sender_task);
295295
// Waiting for the data ready on line
296-
while ((task_flags & TEST_TASK_DATA_READY_BIT)) {
296+
while (!(task_flags & TEST_TASK_DATA_READY_BIT)) {
297297
vTaskDelay(1);
298298
}
299299

0 commit comments

Comments
 (0)