8#ifndef __LIB_WIFI_READY_H__
9#define __LIB_WIFI_READY_H__
11#include <zephyr/net/net_if.h>
29 void (*wifi_ready_cb)(
bool wifi_ready);
int unregister_wifi_ready_callback(wifi_ready_callback_t cb, struct net_if *iface)
Unregister a callback that was registered to be called when the Wi-Fi is ready.
int register_wifi_ready_callback(wifi_ready_callback_t cb, struct net_if *iface)
Register a callback to be called when the Wi-Fi is ready.
struct net_if * iface
Definition wifi_ready.h:31
Structure for storing a callback function to be called when the Wi-Fi is ready.
Definition wifi_ready.h:27