Skip to content

Commit 6949294

Browse files
committed
Merge branch 'ci/fixed_parlio_rx_test_case_incorrect_condition_v5.3' into 'release/v5.3'
ci(parlio): fixed incorrect condition in rx test case (v5.3) See merge request espressif/esp-idf!43797
2 parents 0b8ca3d + c3b0115 commit 6949294

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)