Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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.

...

Every Wireless Manager layer net_wifi_mgr.c

Prototype

 

...


Code Block


          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’.

...