Versions Compared

Key

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

...

Every Wireless Manager layer net_wifi_mgr.c

Prototype

Code Block
          static void NetWiFiMgr_AP_Scan       (NET_IF           *p_if,
                                                NET_IF_WIFI_AP   *p_buf_scan,
                                                CPU_INT16U        scna_len_max,
                                          const NET_IF_WIFI_SSID *p_ssid,
                                                NET_IF_WIFI_CH    ch,
                                                NET_ERR          *perr);

Note that since every Wireless Manager’s AP_Scan() 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’.

...