/
NetWiFiMgr_Start()
NetWiFiMgr_Start()
The next Wireless Manager function is the Start()
function. This function is called by the wireless network interface layer when an interface is started.
Files
Every Wireless Manager layer net_wifi_mgr.c
Prototype
static void NetWiFiMgr_Start (NET_IF *p_if, NET_ERR *p_err);
Note that since every Wireless Manager’s Start()
function is accessed only by function pointer via the Wireless Manager’s API structure, it doesn’t need to be globally available and should therefore be declared as ‘static
’.
Arguments
p_if
Pointer to the interface to start the Wireless Manager.
perr
Pointer to variable that will receive the return error code from this function.
Returned Value
None.
Required Configuration
None.
Notes/Warnings
None.
Related content
NetWiFiMgr_Init()
NetWiFiMgr_Init()
More like this
NetWiFiMgr_Stop()
NetWiFiMgr_Stop()
More like this
NetDev_MgmtDemux()
NetDev_MgmtDemux()
More like this
NetWiFiMgr_AP_Scan()
NetWiFiMgr_AP_Scan()
More like this
NetDev_WiFi_Start
NetDev_WiFi_Start
More like this
NetDev_MgmtExecuteCmd()
NetDev_MgmtExecuteCmd()
More like this