Merge branch 'ci/fixed_parlio_rx_test_case_incorrect_condition' into 'master'

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

See merge request espressif/esp-idf!42965
This commit is contained in:
Kevin (Lao Kaiyao)
2025-10-29 15:26:41 +08:00
@@ -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);
}