fix(esp_wifi): Correctly set roc_in_progress flag

Fix roc_in_progress flag to be set in `dpp_listen_next_channel` right after calling
`esp_wifi_remain_on_channel` to correctly reflect the ROC status.
This commit is contained in:
Shreyas Sheth
2025-09-03 15:28:21 +05:30
committed by Kapil Gupta
parent aae5071dff
commit 0e00b0f45b

View File

@@ -651,6 +651,7 @@ static void dpp_listen_next_channel(void *data, void *user_ctx)
wpa_printf(MSG_ERROR, "Failed ROC. error : 0x%x", ret);
return;
}
atomic_store(&roc_in_progress, true);
os_event_group_clear_bits(s_dpp_event_group, DPP_ROC_EVENT_HANDLED);
}
@@ -823,7 +824,6 @@ static void tx_status_handler(void *arg, esp_event_base_t event_base,
eloop_register_timeout(ESP_GAS_TIMEOUT_SECS, 0, gas_query_timeout, NULL, auth);
}
}
atomic_store(&roc_in_progress, true);
}
static void roc_status_handler(void *arg, esp_event_base_t event_base,