From 8b77d4fb9f7a671bbaaf32b341ae83035aba1187 Mon Sep 17 00:00:00 2001 From: senthil kumar E K Date: Wed, 27 Nov 2024 17:13:46 +0530 Subject: [PATCH] updated function block --- src/platform/silabs/wifi/SiWx/WifiInterface.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/platform/silabs/wifi/SiWx/WifiInterface.cpp b/src/platform/silabs/wifi/SiWx/WifiInterface.cpp index 3e3b7480f6..402cf6ad6b 100644 --- a/src/platform/silabs/wifi/SiWx/WifiInterface.cpp +++ b/src/platform/silabs/wifi/SiWx/WifiInterface.cpp @@ -413,6 +413,18 @@ sl_status_t SetWifiConfigurations() return status; } +/** + * @brief Callback function for the SL_WIFI_JOIN_EVENTS group + * + * This callback handler will be invoked when any event within join event group occurs, providing the event details and any associated data + * + * @param[out] event sl_wifi_event_t that triggered the callback + * @param[out] result Pointer to the response data received + * @param[out] result_length Length of the data received in bytes + * @param[out] arg Optional user provided argument + * + * @return sl_status_t Returns the status of the operation. + */ sl_status_t join_callback_handler(sl_wifi_event_t event, char * result, uint32_t result_length, void * arg) { sl_status_t callback_status = SL_STATUS_OK;