Wi-Fi ===== .. contents:: :local: :depth: 2 Wi-Fi Data Structures --------------------- ============================= ========================================================================================================================================================================== **Data Structures** **Introduction** ============================= ========================================================================================================================================================================== <_cus_ie> The structure is used to set Wi-Fi custom IE list, and type match CUSTOM_IE_TYPE. The IE will be transmitted according to the type. The structure is used to describe the SSID. The structure is used to describe the unique 6-byte MAC address. The structure is used to describe the setting about SSID, security type, password and default channel, used to start AP mode. The structure is used to describe the station mode setting about SSID, security type and password, etc., used when connecting to an AP. The structure is used to describe the scan parameters used for scan, including SSID, channel, user callback, etc. The structure is used to describe the scan result of the AP. The structure is used to store the Wi-Fi setting gotten from Wi-Fi driver. The structure is used to describe the setting when configure the network. The structure is used to describe the maclist. The structure is used to describe the bss info of the network. It include the version, BSSID, beacon_period, capability, SSID, channel, atm_window, dtim_period, RSSI e.g. The structure is used to set WIFI packet filter pattern. The structure is used to describe the 802.11 frame info. The structure is used to describe the packet filter info. The structure is used to describe the mac filter list. The structure is used to describe the wowlan pattern. The structure is used to describe the psk info. The structure is used to describe the sw statistics. The structure is used to describe the phy statistics. The structure is used to describe the data description. The structure is used to describe the wifi user configuration. ============================= ========================================================================================================================================================================== | Wi-Fi APIs ---------- System APIs ~~~~~~~~~~~ ================= =========================================== **API** **Introduction** ================= =========================================== Enable Wi-Fi. Disable Wi-Fi. Check if the specified wlan_idx is running. Switch Wi-Fi Mode. ================= =========================================== wifi_on ^^^^^^^ Enable Wi-Fi: Bring the Wireless interface "Up". ============= ========== ===================================================================================================== **Parameter** **Type** **Introduction** ============= ========== ===================================================================================================== rtw_mode_t Decide to enable WiFi in which mode. The optional modes are RTW_MODE_STA, RTW_MODE_AP, RTW_MODE_STA_AP, RTW_MODE_PROMISC and RTW_MODE_P2P. ============= ========== ===================================================================================================== Return: - RTW_SUCCESS: If the WiFi chip initialized successfully. - RTW_ERROR: If the WiFi chip initialization failed. wifi_off ^^^^^^^^ Disable Wi-Fi. Parameter: None. Return: - RTW_SUCCESS: Deinit success, wifi mode is changed to RTW_MODE_NONE. - RTW_ERROR: Failed wifi_is_running ^^^^^^^^^^^^^^^ Check if the specified wlan_idx is running. ============= ============= ===================================== **Parameter** **Type** **Introduction** ============= ============= ===================================== unsigned char Can be set as WLAN0_IDX or WLAN1_IDX. ============= ============= ===================================== Return: - 1: Success - 0: Failed wifi_set_mode ^^^^^^^^^^^^^ Switch Wifi Mode ============= ========== ==================================================================================== **Parameter** **Type** **Introduction** ============= ========== ==================================================================================== rtw_mode_t Decide to switch WiFi to which mode. The optional modes are RTW_MODE_STA, RTW_MODE_AP, RTW_MODE_STA_AP, RTW_MODE_PROMISC. ============= ========== ==================================================================================== Return: - RTW_SUCCESS: WiFi switch mode success. - RTW_ERROR: WiFi switch mode failed. Scan APIs ~~~~~~~~~ ======================= ============================================== **API** **Introduction** ======================= ============================================== Initiate a scan to search for 802.11 networks. Get scan results. Abort ongoing wifi scan. ======================= ============================================== wifi_scan_networks ^^^^^^^^^^^^^^^^^^ Initiate a scan to search for 802.11 networks. ============= =================== ================================================================================================================================================================================================ **Parameter** **Type** **Introduction** ============= =================== ================================================================================================================================================================================================ rtw_scan_param_t * Specifies the scan parameters, including scan type, specific SSID, specific channel list, channel scan time, and scan callback. There are two types of scan callback: - scan_user_callback - scan_report_each_mode_user_callback If registered, scan_user_callback will be executed when the scan is finished and report the total number of scanned APs, and the detailed scanned AP info can be got by calling wifi_get_scan_records. This callback is suitable for a normal asynchronous scan. If registered, scan_report_each_mode_user_callback is used when configuring RTW_SCAN_REPORT_EACH in options of rtw_scan_param, and it will be executed every time a AP is scanned, and the AP info will be directly reported by this callback. unsigned char If set to 1, it's synchronized scan and this API will return after scan is done. If set to 0, it's asynchronized scan and this API will return immediately. ============= =================== ================================================================================================================================================================================================ Return: - RTW_SUCCESS: Success for asynchronized scan. - RTW_ERROR: Failed. - Otherwise: Scanned AP number for synchronized scan. .. note :: - If this API is called, the scanned APs are stored in Wi-Fi driver dynamic allocated memory, for a synchronous scan or asynchronous scan which does not use RTW_SCAN_REPORT_EACH, these memories will be freed when wifi_get_scan_records is called. - When configuring TW_SCAN_REPORT_EACH, scan_report_each_mode_user_callback will report NULL to indicate that the scan is done. - Only one callback function can be chosen to register. Both scan_user_callback and scan_report_each_mode_user_callback are not supported to be registered in one scan. - The scan callback function will be executed in the context of the RTW thread. - When scanning specific channels, devices with strong signal strength on nearby channels may be detected. wifi_get_scan_records ^^^^^^^^^^^^^^^^^^^^^ Get scan results. ============= =============== ======================================================================================================================================= **Parameter** **Type** **Introduction** ============= =============== ======================================================================================================================================= unsigned int \* Input the pointer to the number of scanned ap info which want to get, output the number of scanned ap info which can actually get. char \* Pointer to the buf where scan result will be stored, the scanned AP info will be stored one by one in form of struct rtw_scan_result_t. ============= =============== ======================================================================================================================================= Return: - RTW_SUCCESS: Success. - RTW_ERROR: Failed .. note :: For an asynchronous scan configuring RTW_SCAN_REPORT_EACH, every time an AP is scanned, the AP info will be directly reported through scan_report_each_mode_user_callback and freed after user callback is executed, thus there is no need to use this function to get the scan result. wifi_scan_abort ^^^^^^^^^^^^^^^ Abort ongoing scan. Parameter: None. Return: - RTW_SUCCESS: Success. - RTW_ERROR: Failed .. note :: This is an asynchronous function and will return immediately. Return value only indicates whether the scan abort command is successfully notified to the driver or not. When the scan is actually aborted, the user callback registered in wifi_scan_networks will be executed. If there is no Wi-Fi scan in progress, this function will just return RTW_SUCCESS and user callback won't be executed. Connection APIs ~~~~~~~~~~~~~~~ ============================== ============================================================== **API** **Introduction** ============================== ============================================================== Join a Wi-Fi network with a specified SSID or BSSID. Disassociates from current Wi-Fi network. Check if Wi-Fi has connected to AP before DHCP. Get latest Wi-Fi join status. Get reason code of latest disassociation or de-authentication. Set reconnection mode with configuration. Get the result of setting reconnection mode. ============================== ============================================================== wifi_connect ^^^^^^^^^^^^ Join a Wi-Fi network with a specified SSID or BSSID. Scan for, associate, and authenticate with a Wi-Fi network. On successful return, the system is ready to send data packets. =============== ===================== ========================================================================================================================================================================================== **Parameter** **Type** **Introduction** =============== ===================== ========================================================================================================================================================================================== rtw_network_info_t * The pointer of a struct which store the connection info, including ssid, bssid, password, etc, for details, please refer to struct rtw_network_info_t in wifi_structures.h. unsigned char If block is set to 1, it means synchronized wifi connect, and this API will return until connect is finished; if block is set to 0, it means asynchronized wifi connect, and this API will return immediately. =============== ===================== ========================================================================================================================================================================================== Return: - RTW_SUCCESS: When the system is joined for synchronized wifi connect, when connect cmd is set successfully for asynchronized wifi connect. - RTW_ERROR: If an error occurred. .. note :: - Make sure the Wi-Fi is enabled before invoking this function(wifi_on()). - The parameter channel and pscan_option in connect_param can be used to perform fast survey on the specified channel during Wi-Fi connection. **Default setting null and scan full channel.** - When the channel is set to a specified channel and pscan_option is set to PSCAN_FAST_SURVEY, during Wi-Fi connection, an active scan will be only performed on the specified channel, the active scan will retry at most 8 times with each round interval 25ms. **Default setting 0 and scan full channel.** - joinstatus_user_callback in connect_param can be registered to get the real-time join status changes since this callback will be executed every time join status is changed. - Wifi_connection api will scan the supported channels to search for all candidate ssids, and finally compares the AP RSSI and selects the AP with the strongest signal as the target ssid for connection. wifi_disconnect ^^^^^^^^^^^^^^^ Disassociates from current Wi-Fi network. Parameter: None. Return: - RTW_SUCCESS: On successful disassociation from the AP. - RTW_ERROR: If an error occurred. wifi_is_connected_to_ap ^^^^^^^^^^^^^^^^^^^^^^^ Check if Wi-Fi has connected to AP before DHCP. Parameter: None. Return: - RTW_SUCCESS: If connected. - RTW_ERROR: If not connected. wifi_get_join_status ^^^^^^^^^^^^^^^^^^^^ Get the latest Wi-Fi join status. Parameter: None. Return: - RTW_JOINSTATUS_UNKNOWN: Unknown join status. - RTW_JOINSTATUS_STARTING: Join is starting. - RTW_JOINSTATUS_SCANNING: Scan is in progress. - RTW_JOINSTATUS_AUTHENTICATING: Authentication is in progress. - RTW_JOINSTATUS_AUTHENTICATED: Already authenticated. - RTW_JOINSTATUS_ASSOCIATING: Association is in progress. - RTW_JOINSTATUS_ASSOCIATED: Already associated. - RTW_JOINSTATUS_4WAY_HANDSHAKING: 4-way handshake is in progress. - RTW_JOINSTATUS_4WAY_HANDSHAKE_DONE: 4-way handshake is done. - RTW_JOINSTATUS_SUCCESS: Join is success. - RTW_JOINSTATUS_FAIL: Join is failed. - RTW_JOINSTATUS_DISCONNECT: Disconnected. - RTW_JOINSTATUS_REJECT_CONNECTION_SECURITY: if PRO2 define wifi_user_config.rtw_ignore_security == 1 in wifi_set_user_config(), station will reject the security OPEN/WEP/WPA TKIP WIFI connection. - RTW_JOINSTATUS_SCANNING_EXTERNAL: if the station is ongoing WIFI scanning, and then the WIFI connection will return this definition to cancel the WIFI connect. - RTW_JOINSTATUS_REJECT_UNSUPPORT_SECURITY: WIFI connection failure due to this security type unsupported (Ex: GCMP) - RTW_JOINSTATUS_TIMEOUT: WIFI connection failure due to connection timeout. - RTW_JOINSTATUS_STATUS_CODE_FAIL: WIFI connection failure due to association failure. .. note :: Wi-Fi join status will be set during Wi-Fi connection and Wi-Fi disconnection. wifi_get_disconn_reason_code ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Present the reason code of the latest disassociation or de-authentication. ============= ================= ================================================================ **Parameter** **Type** **Introduction** ============= ================= ================================================================ unsigned short * A pointer to the variable where the reason code will be written. ============= ================= ================================================================ Return: - RTW_SUCCESS: Success. - RTW_ERROR: Failed. wifi_config_autoreconnect ^^^^^^^^^^^^^^^^^^^^^^^^^ Set reconnection mode with configuration. ============= ======== ================================================ **Parameter** **Type** **Introduction** ============= ======== ================================================ \__u8 Set 1/0 to enalbe/disable the reconnection mode. \__u8 The number of retry limit. \__u16 The timeout value (in seconds). ============= ======== ================================================ Return: - 0: Success. - -1: Failed. wifi_get_autoreconnect ^^^^^^^^^^^^^^^^^^^^^^ Get the result of setting reconnection mode. ============= ======== ================================================= **Parameter** **Type** **Introduction** ============= ======== ================================================= \__u8 * Point to the result of setting reconnection mode. ============= ======== ================================================= Return: - 0: Success. - -1: Failed. Channel APIs ~~~~~~~~~~~~ ================== ============================================================================================================== **API** **Introduction** ================== ============================================================================================================== Set the listening channel for promiscuous mode. Promiscuous mode will receive all the packets in this channel. Get the current channel on STA interface(WLAN0_NAME). ================== ============================================================================================================== wifi_set_channel ^^^^^^^^^^^^^^^^ Set the listening channel for promiscuous mode. Promiscuous mode will receive all the packets in this channel. ============= ======== ==================== **Parameter** **Type** **Introduction** ============= ======== ==================== int The desired channel. ============= ======== ==================== Return: - RTW_SUCCESS: If the channel is successfully set. - RTW_ERROR: If the channel is not successfully set. .. note :: Do not need to call this function for STA mode Wi-Fi driver, since it will be determined by the channel from the received beacon. wifi_get_channel ^^^^^^^^^^^^^^^^ Get the current channel on STA interface(WLAN0_NAME). ============= ======== ================================================================== **Parameter** **Type** **Introduction** ============= ======== ================================================================== int * A pointer to the variable where the channel value will be written. ============= ======== ================================================================== Return: - RTW_SUCCESS: If the channel is successfully read. - RTW_ERROR: If the channel is not successfully read. Power Save API ~~~~~~~~~~~~~~ ========================= ================= **API** **Introduction** ========================= ================= Set IPS/LPS mode. ========================= ================= wifi_set_powersave_mode ^^^^^^^^^^^^^^^^^^^^^^^ Set IPS/LPS mode. - IPS is the abbreviation of Inactive Power Save mode. Wi-Fi automatically turns RF off if it is not associated with AP. - LPS is the abbreviation of Leisure Power Save mode. Wi-Fi automatically turns RF off during the association with AP if traffic is not busy, while it also automatically turns RF on to listen to the beacon of the associated AP. ============= ======== ============================================================================== **Parameter** **Type** **Introduction** ============= ======== ============================================================================== u8 The desired ips mode, which can be: - IPS_MODE_NONE: leave IPS - IPS_MODE_NORMAL: enable to enter IPS - IPS_MODE_RESUME: resume to the last IPS mode which recorded in Wi-Fi driver u8 The desired LPS mode, which can be: - LPS_MODE_NONE: leave LPS - LPS_MODE_NORMAL: enable to enter LPS - LPS_MODE_RESUME: resume to the last LPS mode which recorded in Wi-Fi driver ============= ======== ============================================================================== Return: - RTW_SUCCESS: If setting the corresponding mode successful. - RTW_ERROR: Failed. AP Mode APIs ~~~~~~~~~~~~ ================================= ============================================================== **API** **Introduction** ================================= ============================================================== Trigger Wi-Fi driver to start an infrastructure Wi-Fi network. Get the associated clients with SoftAP. Delete a STA. ================================= ============================================================== wifi_start_ap ^^^^^^^^^^^^^ Trigger Wi-Fi driver to start an infrastructure Wi-Fi network. =============== ==================== ============================================================================================================================ **Parameter** **Type** **Introduction** =============== ==================== ============================================================================================================================ rtw_softap_info_t * The pointer of a struct which store the softAP configuration, please refer to struct rtw_softap_info_t in wifi_structures.h. =============== ==================== ============================================================================================================================ Return: - RTW_SUCCESS: If successfully creates an AP. - RTW_ERROR: If an error occurred. wifi_get_associated_client_list ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Get the associated clients with SoftAP. ==================== ============== =================================================================================================== **Parameter** **Type** **Introduction** ==================== ============== =================================================================================================== void \* The location where the client list will be stored. unsigned short The buffer length is reserved for future use. Currently, buffer length is set to a fixed value: 25. ==================== ============== =================================================================================================== Return: - RTW_SUCCESS: The result is successfully got. - RTW_ERROR: The result is not successfully got. wifi_del_station ^^^^^^^^^^^^^^^^ Delete a STA. ============= ================ ================================================================ **Parameter** **Type** **Introduction** ============= ================ ================================================================ unsigned char The wlan interface index, can be WLAN0_IDX or WLAN1_IDX. unsigned char * The pointer to the MAC address of the STA which will be deleted. ============= ================ ================================================================ Return: - RTW_SUCCESS: Success. - RTW_ERROR: Failed. Raw frame Tx API ~~~~~~~~~~~~~~~~ ===================== ================ **API** **Introduction** ===================== ================ Send raw frame. ===================== ================ wifi_send_raw_frame ^^^^^^^^^^^^^^^^^^^ Send raw frame. =============== ================== ============================================================================================================================================================================================== **Parameter** **Type** **Introduction** =============== ================== ============================================================================================================================================================================================== raw_data_desc_t \* The pointer of a descriptor about the raw frame, including the buffer address where the frame is stored, frame length, the initial Tx rate of this frame (the default initial Tx rate will be 1Mbps). =============== ================== ============================================================================================================================================================================================== Return: - RTW_SUCCESS: Success. - RTW_ERROR: Failed. Custom IE APIs ~~~~~~~~~~~~~~ ======================= ================================== **API** **Introduction** ======================= ================================== Setup custom IE list. Update the item in custom IE list. Delete custom IE list. ======================= ================================== .. note :: These three APIs are only effective on beacon, probe request, and probe response frames. wifi_add_custom_ie ^^^^^^^^^^^^^^^^^^ Setup custom IE list. ============= ======== ============================= **Parameter** **Type** **Introduction** ============= ======== ============================= void * Pointer to custom IE list. int The number of custom IE list. ============= ======== ============================= Return: - 0: Success. - -1: Failed. .. note :: This API cannot be executed twice before deleting the previous custom IE list. wifi_update_custom_ie ^^^^^^^^^^^^^^^^^^^^^ Update the item in custom IE list. ============= ======== ========================== **Parameter** **Type** **Introduction** ============= ======== ========================== void * Pointer to custom IE list. int Index of custom IE list. ============= ======== ========================== Return: - 0: Success. - -1: Failed. wifi_del_custom_ie ^^^^^^^^^^^^^^^^^^ Delete custom IE list. Parameter: None. Return: - 0: Success. - -1: Failed. Wi-Fi Setting APIs ~~~~~~~~~~~~~~~~~~ =========================== ============================================================================================================= **API** **Introduction** =========================== ============================================================================================================= Retrieves the current Media Access Control (MAC) address (or Ethernet hardware address) of the 802.11 device. Get current Wi-Fi setting from driver. Set the network mode according to the data rate it supported. Set Management Frame Protection Support. Set group id of SAE. Enable or disable pmk cache. Set psk related info, including ssid, passphrase, psk. Get psk related info, including ssid, passphrase, psk. Get enctryption ccmp key used by wifi (sta mode only). Show the TX and RX statistic information which counted by software (wifi driver, not phy layer). Fetch statistic info about wifi. Configure mode of HW indicating packets(mgnt and data) and SW reporting packets to wifi_indication(). Get antenna infomation. Get an auto channel. Get band type. Get wifi TSF register[31:0]. =========================== ============================================================================================================= wifi_get_mac_address ^^^^^^^^^^^^^^^^^^^^ Retrieves the current Media Access Control (MAC) address (or Ethernet hardware address) of the 802.11 device. ============= ============ =================================================================== **Parameter** **Type** **Introduction** ============= ============ =================================================================== rtw_mac_t * Pointer to the struct rtw_mac_t which contain obtained mac address. ============= ============ =================================================================== Return: - 0: Success. - -1: Failed. wifi_get_setting ^^^^^^^^^^^^^^^^ Get current Wi-Fi setting from driver. ============= ===================== ======================================================================= **Parameter** **Type** **Introduction** ============= ===================== ======================================================================= unsigned char WLAN0_IDX or WLAN1_IDX. rtw_wifi_setting_t * Points to the rtw_wifi_setting_t structure which information is gotten. ============= ===================== ======================================================================= Return: - RTW_SUCCESS: The result is successfully got. - RTW_ERROR: The result is not successfully got. wifi_set_network_mode ^^^^^^^^^^^^^^^^^^^^^ Set the network mode according to the data rate it supported. The driver works in BGN mode in default after driver initialization. This function is used to change wireless network mode for station mode before connecting to AP. ============= ================== ========================================================================================= **Parameter** **Type** **Introduction** ============= ================== ========================================================================================= rtw_network_mode_t Network mode to set. The value can be: RTW_NETWORK_B, RTW_NETWORK_BG and RTW_NETWORK_BGN. ============= ================== ========================================================================================= Return: - RTW_SUCCESS: Success. - RTW_ERROR: Failed. wifi_set_mfp_support ^^^^^^^^^^^^^^^^^^^^ Set Management Frame Protection Support. ============= ============= =========================================== **Parameter** **Type** **Introduction** ============= ============= =========================================== unsigned char The value can be: - NO_MGMT_FRAME_PROTECTION: not support - MGMT_FRAME_PROTECTION_OPTIONAL: capable - MGMT_FRAME_PROTECTION_REQUIRED: required ============= ============= =========================================== Return: - RTW_SUCCESS: If setting Management Frame Protection Support successful. - RTW_ERROR: Failed. wifi_set_group_id ^^^^^^^^^^^^^^^^^ Set group id of SAE. ============= ============= ============================= **Parameter** **Type** **Introduction** ============= ============= ============================= unsigned char Group id which want to be set ============= ============= ============================= Return: - RTW_SUCCESS: If setting is successful. - RTW_ERROR: Failed. wifi_set_pmk_cache_enable ^^^^^^^^^^^^^^^^^^^^^^^^^ Enable or disable pmk cache. ============= ============= ================= **Parameter** **Type** **Introduction** ============= ============= ================= unsigned char The value can be: - 1: enable - 0: disable ============= ============= ================= Return: - RTW_SUCCESS: If setting is successful. - RTW_ERROR: Failed. wifi_psk_info_set ^^^^^^^^^^^^^^^^^ Set psk related info, including ssid, passphrase, psk. ============= ================== ================================================================= **Parameter** **Type** **Introduction** ============= ================== ================================================================= struct psk_info * Pointer to the structure that can set psk related info in driver. ============= ================== ================================================================= Return: None. wifi_psk_info_get ^^^^^^^^^^^^^^^^^ Get psk related info, including ssid, passphrase, psk. ============= ================== ============================================================ **Parameter** **Type** **Introduction** ============= ================== ============================================================ struct psk_info * Pointer to the structure that will restore psk related info. ============= ================== ============================================================ Return: None. wifi_get_ccmp_key ^^^^^^^^^^^^^^^^^ Get enctryption ccmp key used by wifi (sta mode only). ============= ================ ============================================================== **Parameter** **Type** **Introduction** ============= ================ ============================================================== unsigned char * The location where the CCMP TK (temporary key) will be stored. unsigned char * The location where the CCMP GTK (group key) will be stored. ============= ================ ============================================================== Return: - RTW_SUCCESS: The result is successfully got. - RTW_ERROR: The result is not successfully got. wifi_get_sw_statistic ^^^^^^^^^^^^^^^^^^^^^ Show the TX and RX statistic information which counted by software (wifi driver, not phy layer). =============== ====================== ================================================================= **Parameter** **Type** **Introduction** =============== ====================== ================================================================= unsigned char The wlan interface index, can be WLAN0_IDX or WLAN1_IDX. rtw_sw_statistics_t * The pointer to the structure where store the software statistics. =============== ====================== ================================================================= Return: None. wifi_fetch_phy_statistic ^^^^^^^^^^^^^^^^^^^^^^^^ Fetch statistic info about wifi. =============== ======================= ============================================================ **Parameter** **Type** **Introduction** =============== ======================= ============================================================ rtw_phy_statistics_t * The pointer to the structure that stores the PHY statistics. =============== ======================= ============================================================ Return: - RTW_SUCCESS: If the statistic info is successfully got. - RTW_ERROR: If the statistic info is not successfully got. wifi_set_indicate_mgnt ^^^^^^^^^^^^^^^^^^^^^^ Configure mode of HW indicating packets(mgnt and data) and SW reporting packets to wifi_indication(). ============= ======== ================================================================================================================ **Parameter** **Type** **Introduction** ============= ======== ================================================================================================================ int Value of enable could be: - WIFI_INDICATE_DISABLE: disable mode (default), HW only indicates BSSID-matched packets and SW doesn't report. - WIFI_INDICATE_NORMAL: HW only indicates BSSID-matched packets and SW reports. - WIFI_INDICATE_WILD: HW indicates all packets and SW reports. ============= ======== ================================================================================================================ Return: None. wifi_get_antenna_info ^^^^^^^^^^^^^^^^^^^^^ Get antenna infomation. ============= ================ ============================================================================== **Parameter** **Type** **Introduction** ============= ================ ============================================================================== unsigned char * Point to the antenna value obtained from driver, 0 means main antenna, 1 means aux antenna. ============= ================ ============================================================================== Return: - 0: Success. - -1: Failed. wifi_get_auto_chl ^^^^^^^^^^^^^^^^^ Get an auto channel. ============= ================ ======================================================================== **Parameter** **Type** **Introduction** ============= ================ ======================================================================== unsigned char The wlan interface index, can be WLAN0_IDX or WLAN1_IDX. unsigned char * The pointer to the channel set which auto channel will be selected from. unsigned char The number of channel in channel set. ============= ================ ======================================================================== Return: - The selected auto channel. wifi_get_band_type ^^^^^^^^^^^^^^^^^^ Get Wi-Fi band type. Parameter: None. Return: - WL_BAND_2_4G: only 2.4G supported - WL_BAND_5G: only 5G supported - WL_BAND_2_4G_5G_BOTH: both 2.4G and 5G supported wifi_get_tsf_low ^^^^^^^^^^^^^^^^ Get wifi TSF register[31:0]. ============= ============= =========================================================== **Parameter** **Type** **Introduction** ============= ============= =========================================================== unsigned char Specify the Wi-Fi port which could be 0 or 1. - For STA mode and SoftAP mode, use port 0. - For concurrent mode, STA uses port 0 and AP uses port 1. ============= ============= =========================================================== Return: - TSF[31:0] or 0 Wi-Fi Indication APIs ~~~~~~~~~~~~~~~~~~~~~ ========================== =================================== **API** **Introduction** ========================== =================================== Initialize the event callback list. Register the event listener. Un-register the event listener. ========================== =================================== init_event_callback_list ^^^^^^^^^^^^^^^^^^^^^^^^ Initialize the event callback list. Parameter: None. Return: None. .. note :: Make sure this function has been invoked before using the event handler-related mechanism. wifi_reg_event_handler ^^^^^^^^^^^^^^^^^^^^^^ Register the event listener. =================== =================== ========================================================================= **Parameter** **Type** **Introduction** =================== =================== ========================================================================= unsigned int The event command number indicated. rtw_event_handler_t The callback function which will receive and process the event. void * User specific data that will be passed directly to the callback function. =================== =================== ========================================================================= Return: - RTW_SUCCESS: If successfully registers the event. - RTW_ERROR: If an error occurred. .. note :: Setting the same even_cmds with empty handler_func will unregister the event_cmds. wifi_unreg_event_handler ^^^^^^^^^^^^^^^^^^^^^^^^ Un-register the event listener. ============== =================== =============================================================== **Parameter** **Type** **Introduction** ============== =================== =============================================================== unsigned int The event command number indicated. rtw_event_handler_t The callback function which will receive and process the event. ============== =================== =============================================================== Return: - RTW_SUCCESS: If successfully un-registers the event. - RTW_ERROR: If an error occurred. Promisc APIs ~~~~~~~~~~~~ ============================ =================================================== **API** **Introduction** ============================ =================================================== Let Wi-Fi enter promiscuous mode. Set the chip to start or stop the promiscuous mode. Initialize packet filter related data. Add packet filter. Remove the packet filter. Enable the packet filter. Disable the packet filter. ============================ =================================================== wifi_enter_promisc_mode ^^^^^^^^^^^^^^^^^^^^^^^ Let Wi-Fi enter promiscuous mode. Parameter: None. Return: None. .. note :: If Wi-Fi is originally in concurrent mode or SoftAP mode, a mode switch will be performed; if Wi-Fi is originally in STA mode and already connected to AP, the connection to AP will disconnect. wifi_set_promisc ^^^^^^^^^^^^^^^^ Set the chip to start or stop the promiscuous mode. ============= ================================================= =================================================================================== **Parameter** **Type** **Introduction** ============= ================================================= =================================================================================== rtw_rcr_level_t The value can be: - 0: disable the promisc. - 1: enable the promisc special for all ethernet frames. - 2: enable the promisc special for Broadcast/Multicast ethernet frames. - 3: enable the promisc special for all 802.11 frames. - 4: enable the promisc special for Broadcast/Multicast 802.11 frames. void (*)(unsigned char \*, unsigned int, void \*) The callback function which will receive and process the network data. unsigned char Specify if the the promisc data length is used. If len_used set to 1, packet (frame data) length will be saved and transferred to callback function. ============= ================================================= =================================================================================== Return: - RTW_SUCCESS: Success. - RTW_ERROR: Failed. .. note :: Use wifi_enter_promisc_mode() to make sure Wi-Fi in correct mode, and use wifi_set_promisc() to enable promisc receiving and promisc callback. wifi_init_packet_filter ^^^^^^^^^^^^^^^^^^^^^^^ Initialize packet filter related data. Parameter: None. Return: None. wifi_add_packet_filter ^^^^^^^^^^^^^^^^^^^^^^ Add packet filter. ============= ============================= ====================================================================================================== **Parameter** **Type** **Introduction** ============= ============================= ====================================================================================================== unsigned char The filter id. rtw_packet_filter_pattern_t * Point to the filter pattern. rtw_packet_filter_rule_t Point to the filter rule, the value could be: - RTW_POSITIVE_MATCHING: accept the frame if matching with this pattern, otherwise discard the frame. - RTW_NEGATIVE_MATCHING: discard the frame if matching with this pattern, otherwise accept the frame. ============= ============================= ====================================================================================================== Return: - 0: Success. - -1: Failed. .. note :: This is software filter in promisc mode. wifi_remove_packet_filter ^^^^^^^^^^^^^^^^^^^^^^^^^ Remove the packet filter. ============= ============= ======================================= **Parameter** **Type** **Introduction** ============= ============= ======================================= unsigned char The filter id, the value can be 0 to 4. ============= ============= ======================================= Return: - 0: Success. - -1: Failed. wifi_enable_packet_filter ^^^^^^^^^^^^^^^^^^^^^^^^^ Enable the packet filter. ============= ============= ======================================= **Parameter** **Type** **Introduction** ============= ============= ======================================= unsigned char The filter id, the value can be 0 to 4. ============= ============= ======================================= Return: - 0: Success. - -1: Failed. wifi_disable_packet_filter ^^^^^^^^^^^^^^^^^^^^^^^^^^ Disable the packet filter. ============= ============= ======================================= **Parameter** **Type** **Introduction** ============= ============= ======================================= unsigned char The filter id, the value can be 0 to 4. ============= ============= ======================================= Return: - 0: Success. - -1: Failed. Mac filter APIs ~~~~~~~~~~~~~~~ ====================== ============================================================================================ **API** **Introduction** ====================== ============================================================================================ Initialize mac address filter list. Add mac address to mac filter list then this address will be rejected during authentication. Delete mac address from mac filter list. ====================== ============================================================================================ .. note :: These APIs should be used only when operating as softAP. wifi_init_mac_filter ^^^^^^^^^^^^^^^^^^^^ Initialize mac address filter list. Parameter: None. Return: - RTW_SUCCESS: Success. - RTW_ERROR: Failed. wifi_add_mac_filter ^^^^^^^^^^^^^^^^^^^ Add mac address to mac filter list then this address will be rejected during authentication. ============= ================ ======================================================= **Parameter** **Type** **Introduction** ============= ================ ======================================================= unsigned char * The mac address which will be added to mac filter list. ============= ================ ======================================================= Return: - RTW_SUCCESS: Success. - RTW_ERROR: Failed. wifi_del_mac_filter ^^^^^^^^^^^^^^^^^^^ Delete mac address from mac filter list. ============= ================ =========================================================== **Parameter** **Type** **Introduction** ============= ================ =========================================================== unsigned char * The mac address which will be deleted from mac filter list. ============= ================ =========================================================== Return: - RTW_SUCCESS: Success. - RTW_ERROR: Failed. | Fast Connection --------------- This section illustrates the principle of fast connection and how to implement user’s own fast connection code. Fast connection is used to reconnect with AP automatically after Wi-Fi is initialized, the principle is to store the AP information in Flash and reconnect to AP after Wi-Fi is initialized. The flow chart of fast connection is as follows: .. image:: ../_static/20_WIFI/image2.png :align: center | Implementation ~~~~~~~~~~~~~~ AP Information Storage ^^^^^^^^^^^^^^^^^^^^^^ User should implement a function to write AP information to Flash, just like demo function write_fast_connect_data_to_flash() in the source file wifi_fast_connect.c. In this function, you should reserve some space for AP information, and write the AP information to the reserved space in a pre-defined data format. The address of the function must be assigned to the global variable p_store_fast_connect_info. After Wi-Fi connection is successful, if p_store_fast_connect_info points to a valid address, write_fast_connect_data_to_flash() will be called. .. note :: The path of source codes is SDK/component/wifi/wifi_fast_connect/wifi_fast_connect.c. Reconnection ^^^^^^^^^^^^ User can implement his own function to read AP information from Flash and connect to AP, just like demo function wifi_do_fast_connect() in the example code. The address of this function must be assigned to the global variable p_wifi_do_fast_connect, which should be defined before Wi-Fi initialization. After Wi-Fi is initialized, if p_wifi_do_fast_connect points to a valid address, this function will be called. Fast Connection Data Erase ^^^^^^^^^^^^^^^^^^^^^^^^^^ User should implement his own function to erase fast connection data, just like demo function Erase_Fastconnect_data() in the source code. APIs ~~~~ ================================== ========================================================================================= **API** **Introduction** ================================== ========================================================================================= Wi-Fi connection indication trigger this function to save current Wi-Fi profile in flash. Read previous saved Wi-Fi profile in flash and execute connection. ================================== ========================================================================================= write_fast_connect_data_to_flash ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Wi-Fi connection indication trigger this function to save current Wi-Fi profile in flash. ============= ============ ================ **Parameter** **Type** **Introduction** ============= ============ ================ unsigned int DHCP offered IP. unsigned int DHCP server IP. ============= ============ ================ Return: - RTW_SUCCESS: Success. - RTW_ERROR: Failed. .. note :: offer_ip and server_ip will be used only when CONFIG_FAST_DHCP is set to 1, they will be stored to Flash for fast DHCP. If CONFIG_FAST_DHCP is not configured to 1, offer_ip and server_ip are unaffected. Other Wi-Fi profiles will be directly got by API wifi_get_setting() and wifi_psk_info_get(), not depending on the input parameter of this function. wifi_do_fast_connect ^^^^^^^^^^^^^^^^^^^^ Read previous saved Wi-Fi profile in flash and execute connection. Parameter: None. Return: - 0: Success. - -1: Failed. | WPS APIs -------- =========== =========================== **API** **Introduction** =========== =========================== Start WPS enrollee process. Stop WPS enrollee process. =========== =========================== wps_start ~~~~~~~~~ Start WPS enrollee process. ============= ======== ======================================================================= **Parameter** **Type** **Introduction** ============= ======== ======================================================================= u16 WPS configure method. Options are: - WPS_CONFIG_DISPLAY - WPS_CONFIG_KEYPAD - WPS_CONFIG_PUSHBUTTON char * PIN number. Can be set to NULL if using WPS_CONFIG_PUSHBUTTON. u8 Channel. Currently un-used, can be set to 0. char * Target network SSID. Can be set to NULL if no target network specified. ============= ======== ======================================================================= Return: - 0: Success. - Otherwise: Failed. .. note :: - Before invoking this function, the Wi-Fi should be enabled by calling wifi_on(). - Make sure CONFIG_ENABLE_WPS is enabled in platform_opts.h. After calling wps_start(), the longest time of WPS is 120s. You can call wps_stop() to quit WPS. wps_stop ~~~~~~~~ Stop WPS enrollee process. Parameter: None. Return: None. .. note :: Make sure CONFIG_ENABLE_WPS is enabled in platform_opts.h. | Wi-Fi event callback function ----------------------------- Register Wi-Fi event callback function ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The callback function is defined by user and need to be registered. ======================== ================================================= **API** **Introduction** ======================== ================================================= Register callback function to the event listener. ======================== ================================================= =================== =================== ========================================================================= **Parameter** **Type** **Introduction** =================== =================== ========================================================================= unsigned int The event number indicated. rtw_event_handler_t The callback function which will receive and process the event. void * User specific data that will be passed directly to the callback function. =================== =================== ========================================================================= Wi-Fi event introduction ~~~~~~~~~~~~~~~~~~~~~~~~ .. code-block:: c enum _WIFI_EVENT_INDICATE { /* common event */ WIFI_EVENT_STA_ASSOC = 0, //used in p2p, simple config, 11s, customer WIFI_EVENT_STA_DISASSOC, //used in p2p, customer WIFI_EVENT_RX_MGNT, //used in p2p, customer WIFI_EVENT_CONNECT, //used in ipv6 example, p2p, wifi_manager example WIFI_EVENT_DISCONNECT, //used in wifi_manager example, p2p, eap, atcmd…… WIFI_EVENT_GROUP_KEY_CHANGED, WIFI_EVENT_RECONNECTION_FAIL, WIFI_EVENT_ICV_ERROR, WIFI_EVENT_CHALLENGE_FAIL, WIFI_EVENT_JOIN_STATUS, //internally use for joinstatus indicate /* p2p event */ WIFI_EVENT_P2P_SEND_ACTION_DONE = 15, /* wpa event */ WIFI_EVENT_WPA_STA_WPS_START = 20, WIFI_EVENT_WPA_WPS_FINISH, WIFI_EVENT_WPA_EAPOL_START, WIFI_EVENT_WPA_EAPOL_RECVD, /* 11s event */ WIFI_EVENT_11S_PATHSEL_GEN_RREQ = 59, WIFI_EVENT_11S_PATHSEL_GEN_RERR, WIFI_EVENT_11S_PATHSEL_RECV_RREQ, WIFI_EVENT_11S_PATHSEL_RECV_RREP, WIFI_EVENT_11S_PATHSEL_RECV_RERR, WIFI_EVENT_11S_PATHSEL_RECV_PANN, WIFI_EVENT_11S_PATHSEL_RECV_RANN, WIFI_EVENT_11S_PATHSEL_GEN_PREQ = 150, WIFI_EVENT_11S_PATHSEL_GEN_PERR, WIFI_EVENT_11S_PATHSEL_RECV_PREQ, WIFI_EVENT_11S_PATHSEL_RECV_PREP, WIFI_EVENT_11S_PATHSEL_RECV_PERR, WIFI_EVENT_11S_PATHSEL_RECV_GANN, /* csi rx done event */ WIFI_EVENT_CSI_DONE = 160, WIFI_EVENT_DHCP_RENEW_FAILED, WIFI_EVENT_DHCP_RENEW_TIMEOUT, WIFI_EVENT_DHCP_IP_BIND, WIFI_EVENT_MISMATCH_CHANNEL, WIFI_EVENT_DEAUTH_RECVD, WIFI_EVENT_DISASSOC_RECVD, WIFI_EVENT_MAX, }; WIFI_EVENT_STA_ASSOC ^^^^^^^^^^^^^^^^^^^^ Indicate client associated in AP mode ============= ======== ================================== **Parameter** **Type** **Introduction** ============= ======== ================================== char * Assoc Request Frame sent by client int Size of Assoc Request Frame int Unused ============= ======== ================================== WIFI_EVENT_DISCONNECT ^^^^^^^^^^^^^^^^^^^^^ Indicate to receive disassociation packet and wifi disconnection ============= ======== =========================== **Parameter** **Type** **Introduction** ============= ======== =========================== char * Disconnection Reason: 6Bytes int 6 int Unused ============= ======== =========================== WIFI_EVENT_DHCP_RENEW_FAILED ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Indicate to dhcp renew failed in dhcp renew process ============= ======== =========================== **Parameter** **Type** **Introduction** ============= ======== =========================== char * NULL int 0 int Unused ============= ======== =========================== WIFI_EVENT_DHCP_RENEW_TIMEOUT ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Indicate to dhcp renew timeout in dhcp renew process ============= ======== =========================== **Parameter** **Type** **Introduction** ============= ======== =========================== char * NULL int 0 int Unused ============= ======== =========================== WIFI_EVENT_DHCP_IP_BIND ^^^^^^^^^^^^^^^^^^^^^^^ Indicate to dhcp bind ip in dhcp process ============= ======== =========================== **Parameter** **Type** **Introduction** ============= ======== =========================== char * NULL int 0 int IP address ============= ======== =========================== WIFI_EVENT_MISMATCH_CHANNEL ^^^^^^^^^^^^^^^^^^^^^^^^^^^ Indicate to mismatch channel in driver to check beacon information and update this reason for upper layer due to disconnection ============= ======== =========================== **Parameter** **Type** **Introduction** ============= ======== =========================== char * NULL int 0 int Unused ============= ======== =========================== WIFI_EVENT_DEAUTH_RECVD ^^^^^^^^^^^^^^^^^^^^^^^ Indicate to receive deauth packet and wifi disconnection ============= ======== =========================== **Parameter** **Type** **Introduction** ============= ======== =========================== char * NULL int 0 int deauth reason ============= ======== =========================== WIFI_EVENT_DISASSOC_RECVD ^^^^^^^^^^^^^^^^^^^^^^^^^ Indicate to receive disassociation packet and wifi disconnection ============= ======== =========================== **Parameter** **Type** **Introduction** ============= ======== =========================== char * NULL int 0 int disassociation reason ============= ======== =========================== WIFI_EVENT_RX_MGNT ^^^^^^^^^^^^^^^^^^ Indicate management frame received. Need to call API wifi_set_indicate_mgnt(1) to enable this event. ============= ======== ======================== **Parameter** **Type** **Introduction** ============= ======== ======================== char * Management Frame int Size of Management Frame int channel : 1 Byte ============= ======== ======================== WIFI_EVENT_CONNECT ^^^^^^^^^^^^^^^^^^ Indicate station connect to AP. ============= ======== ================== **Parameter** **Type** **Introduction** ============= ======== ================== char * AP BSSID : 6 Bytes int 6 int Unused ============= ======== ================== WIFI_EVENT_DISCONNECT ^^^^^^^^^^^^^^^^^^^^^ Indicate station disconnect with AP. ============= ======== ===================== **Parameter** **Type** **Introduction** ============= ======== ===================== char * Null Mac : 6 Bytes reason code : 2 Bytes Int 8 Int Unused ============= ======== ===================== WIFI_EVENT_RECONNECTION_FAIL ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Indicate wifi reconnection failed ============= ======== ================================ **Parameter** **Type** **Introduction** ============= ======== ================================ char * "RECONNECTION FAILURE" Int strlen of "RECONNECTION FAILURE" Int Unused ============= ======== ================================ WIFI_EVENT_ICV_ERROR ^^^^^^^^^^^^^^^^^^^^ Indicate that the receiving packets has ICV error ============= ======== ==================== **Parameter** **Type** **Introduction** ============= ======== ==================== char * "ICV Eror" Int strlen of "ICV Eror" Int Unused ============= ======== ==================== WIFI_EVENT_CHALLENGE_FAIL ^^^^^^^^^^^^^^^^^^^^^^^^^ Indicate authentication failed because of challenge failure ============= ======== =============================== **Parameter** **Type** **Introduction** ============= ======== =============================== char * "Auth Challenge Fail" Int strlen of "Auth Challenge Fail" Int Unused ============= ======== =============================== WIFI_EVENT_WPA_STA_WPS_START ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Indicate WPS process starting. ============= ======== ==================== **Parameter** **Type** **Introduction** ============= ======== ==================== char * Source Mac : 6 Bytes Int 6 Int Unused ============= ======== ==================== WIFI_EVENT_WPA_WPS_FINISH ^^^^^^^^^^^^^^^^^^^^^^^^^ Indicate WPS process finish ============= ======== ================ **Parameter** **Type** **Introduction** ============= ======== ================ char * NULL Int 0 Int Unused ============= ======== ================ WIFI_EVENT_WPA_EAPOL_START ^^^^^^^^^^^^^^^^^^^^^^^^^^ Indicate to send EAPOL_START packets in eap process ============= ======== ==================== **Parameter** **Type** **Introduction** ============= ======== ==================== char * Source Mac : 6 Bytes Int 6 Int Unused ============= ======== ==================== WIFI_EVENT_WPA_EAPOL_RECVD ^^^^^^^^^^^^^^^^^^^^^^^^^^ Indicate EAPOL frame received in wps/eap process ============= ======== =================== **Parameter** **Type** **Introduction** ============= ======== =================== char * Eapol frame Int Size of Eapol frame Int Unused ============= ======== =================== | Auto Reconnection ----------------- This section illustrates the principle of auto connection and how to enable use sdk. Auto connection is used to reconnect with AP automatically after pro2 receive deauth or connection failure, the principle is to store the AP information in wifi driver and reconnect to AP after connection failure. Auto reconnection is full scan connection. Users can decide whether to start auto reconnect/reconnect times/interval time, the standard SDK Default is to enable this function. APIs ~~~~ ============================ ========================================= **API** **Introduction** ============================ ========================================= < wifi_config_autoreconnect> Set reconnection mode with configuration. ============================ ========================================= wifi_config_autoreconnect ^^^^^^^^^^^^^^^^^^^^^^^^^ User can set the auto-reconnect for sdk. ============= ============= ====================================================== **Parameter** **Type** **Introduction** ============= ============= ====================================================== unsigned char mode: Set 1/0 to enable/disable the reconnection mode. unsigned char retry_times: The number of retry limit. u16 timeout: The timeout value (in seconds) ============= ============= ====================================================== Return: - RTW_SUCCESS: Success. - RTW_ERROR: Failed. | Multiple AP with specified ssid or mesh selection ------------------------------------------------- SSID select policy: ~~~~~~~~~~~~~~~~~~~ **Normal wifi connection** first scans the supported channels to search for all candidate router with specified ssid, and finally compares the AP RSSI and then selects the AP with the strongest signal as the target ssid for connection. CONNECTION SUGGESTION: ~~~~~~~~~~~~~~~~~~~~~~ According to fast connection and wi-fi resume, we can combine different usage scenario, each has its own advantages and disadvantages. We will explain the four cases in order. This combination classification table of fast connection and wifi resume is as follows: =========================== ======================== ===================== \ **Without wi-fi resume** **With wi-fi resume** =========================== ======================== ===================== **Disable Fast Connection** Situation A Situation B **Enable Fast Connection** Situation C Situation D =========================== ======================== ===================== - Situation A (Disable fast connection without wi-fi resume) Products in this situation are usually long-term power supply products and don’t require connection speed requirements. Instead, they need to connect to the strongest RSSI router of the specified ssid every time they are reconnected. - Situation B (Disable fast connection with wi-fi resume) For customers with wi-fi resume, there is no need to reconnect to the router. In order to connect to the strongest router of all channel every time, they will cancel the use of fast connection (refer to the chapter 20.3). Use **normal wifi connect function** to perform a full-frequency scan and then connect, so that you can connect to the router with the strongest RSSI in the current environment every time you reconnect. (PS: **normal wifi connection** can refer to fATWC implementation in atcmd_wifi.c) - Situation C (Enable fast connection without wi-fi resume) For customers without wi-fi resume, the fast connection function will be enable in order to speed up the reconnection to the AP. Its advantage is that it can speed up the connection speed, because it only scans the single channel that exist in Flash, but it has the disadvantage that it only connects to the AP of a specified channel. Therefore, if the environment has relatively new node router in other channel, pro2 will not scan this channel and do connection. - Situation D (Enable fast connection with wi-fi resume) If the positioning of battery products is to pursue fast connection, then this will be the case. The disadvantage is that this product will only connect to a fixed channel router (because of the influence of fast connection). The advantage is that the connection time is reduce. - Scan regularly to find new nodes: Sometimes, Battery products are moving to different locations or the node router is set up, which may cause the connected AP to change from the router with the strongest signal to the weakest router. Therefore, in order to avoid this situation, it is recommend that the ODM regularly wake up 24 hours a day on the upper layer and perform a full scan to determine whether to change to connect to another AP. | Wifi Channel plan setting ------------------------- Purpose: ~~~~~~~~ - This part is to introduce the setup of channel plan Channel plan setup: ~~~~~~~~~~~~~~~~~~~ - Two ways are referred to manage the Channel Plan. The first one is configured by the efuse map (0xC8h) and the other software method is configured by setting channel plan value in wifi_conf.c. It’s noted that the priority of changing the channel plan in ram is higher than reading the efuse map 0xC8h. .. image:: ../_static/20_WIFI/image3.png :align: center | Channel plan configured by the efuse map: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - The WLAN driver gets channel plan value from the address 0xC8 of the efuse map. If the user updates a new channel plan value in efuse map 0xC8 and customer need to reboot device to enable the new value. Channel plan table: ''''''''''''''''''' - Please refer to the document " WS-200923-Willis-Efuse_Channel_Plan_new_define-R54.xlsx" to configure customer’s channel plan. .. image:: ../_static/20_WIFI/image4.png :align: center | Write/Read efuse map: ''''''''''''''''''''' - Modify the efuse map 0xC8h in MP mode - Write/Read the efuse map MP commands - Example: i. #iwpriv config_set wmap,0xC8,79 // Write Channel plan 0x79 in efuse, regulation is 2G_MKK2 and 5G_MKK1 ii. #iwpriv config_get rmap,0xC8,1 // Read Channel Plan Value from efuse Setup example: '''''''''''''' - According to WS-200923-Willis-Efuse_Channel_Plan_new_define-R54.xlsx, customer can write 0xC8=0x79h into efuse map. - 2G_MKK2 and 5G_MKK1 i. 2GHz Mkk, channel 1 ~ 13 ii. 5GHz a. W52: 36/40/48/48ch b. W53: 52/56/60/64ch c. W56: 100/104/108/112/116/120/124/128/132/136/140ch .. image:: ../_static/20_WIFI/image5.png :align: center | Channel plan configured by setting channel plan value for wifi_user_config.channel_plan in wifi_conf.c: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - Customer can change the wifi_user_config.channel_plan to set channel plan but would not change the efuse map (0xC8h). Channel plan table: ''''''''''''''''''' - Please refer to the document " WS-200923-Willis-Efuse_Channel_Plan_new_define-R54.xlsx" to configure customer’s channel plan. .. image:: ../_static/20_WIFI/image4.png :align: center | Set channel plan by software method: '''''''''''''''''''''''''''''''''''' - Change value: the parameter (wifi_user_config.channel_plan) is channel plan, so we can modify it to setup new channel plan. - It’s reminded to change the wifi_user_config.channel_plan when the device reboot every time, otherwise channel plan value will be efuse map value. - Modify the wifi_user_config.channel_plan value in wifi_set_user_config() [path: SDK\component\common\api\wifi\wifi_conf.c] Set channel plan by software method example about channel plan 0x22h: ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' - The wifi_user_config.channel_plan(\api\wifi\wifi_conf.c) default value is 0, and it will read from efuse map to set : .. code-block:: c wifi_set_user_config(void) { wifi_user_config.channel_plan = 0; //0: default setting from efuse map } - Example: Channel plan: 0x22 about FCC 2.4GHz channel 1~11, no passive channels, no 5GHz. .. image:: ../_static/20_WIFI/image6.png :align: center - 2.4GHz FCC setup example: Modify wifi_conf.c as below and channel_plan will work after wifi_on(). .. code-block:: c wifi_set_user_config(void) { wifi_user_config.channel_plan = 0x22; } Read channel plan value: ^^^^^^^^^^^^^^^^^^^^^^^^ - Method 1) Calling WIFI API in normal mode about wifi_get_channel_plan(uint8_t \* channel_plan) - Method 2) AT command in normal mode i. ATWZ=get_drv_ability .. image:: ../_static/20_WIFI/image7.png :align: center - The setup priority of Channel plan: SW Modification (wifi_user_config.channel_plan) is higher than the efuse map (0xC8h) | Power by Rate and Power Limit Introduction ------------------------------------------ Introduction: ~~~~~~~~~~~~~ - This part is to introduce the power by rate table and power limit table. i. In order to calculate the TX power, RF calibration is the essential procedure. ii. The Wi-Fi driver can get the expected TX power with various modulations and data rates according to power by rate table. iii. To meet FCC/CE/MKK certification requirements, the power limit table can help to decide the final power index. Power by rate and limit Introduction: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Customer can include rtw_opt_rf_para_rtl8735b.c file and compile the code. - In project/realtek_amebapro2_v0_example/GCC-RELEASE/application/application.cmake and do the following codes to include the file to compile - #wifi - list( ${sdk_root}/component/wifi/driver/src/core/option/rtw_opt_rf_para_rtl8735b.c ) Power By rate Table: ~~~~~~~~~~~~~~~~~~~~ - Power by rate table.txt defines the Tx power by various data rate. The TX output power for "Base Rate" in Power by Rate table is the reference value. - The power by rate table(array_mp_8735b_phy_reg_pg) in The rtw_opt_rf_para_rtl8735b.c is the same as WIFI driver default value. .. image:: ../_static/20_WIFI/image8.png :align: center Power Limit Table: ~~~~~~~~~~~~~~~~~~ - Power limit table.txt defines the maximum Tx power of different regions. Realtek default Regulation of power limit table (FCC/ETSI/MKK/…) corresponding calibration content(0xC8h) channel plan divide into 10 group : ======================================================= ====================================================== WS-200923-Willis-Efuse_Channel_Plan_new_define-R54.xlsx rtw_opt_rf_para_rtl8735b.c(odm_pw_lmt_regulation_type) ======================================================= ====================================================== FCC PW_LMT_REGU_FCC ETSI PW_LMT_REGU_ETSI MKK PW_LMT_REGU_MKK IC PW_LMT_REGU_IC KCC PW_LMT_REGU_KCC ACMA PW_LMT_REGU_ACMA CHILE PW_LMT_REGU_CHILE MEX PW_LMT_REGU_MEXICO NCC PW_LMT_REGU_NCC WW(The min of ETSI and MKK) PW_LMT_REGU_ETSI / PW_LMT_REGU_MKK ======================================================= ====================================================== - For the Enum definition of odm_pw_lmt_regulation_type in rtw_opt_rf_para_rtl8735b.c, please according to the Regulation supported by the channel plan in WS-200923-Willis-Efuse_Channel_Plan_new_define-R54.xlsx to add new regulation. - The power limit table(array_mp_8735b_txpwr_lmt) in the rtw_opt_rf_para_rtl8735b.c is the same as wifi driver default value - We have three registered default power limit tables (FCC/ETSI/MKK) as below. .. image:: ../_static/20_WIFI/image9.png :align: center Add new Power Limit Table excluding the FCC/ETSI/MKK table: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - For example channel_plan is 0x39h and this channel plan power limit table is NCC(PW_LMT_REGU_NCC) as below .. image:: ../_static/20_WIFI/image10.png :align: center - It is necessary to add new NCC and fill in the appropriate TX limit value for every channel and bandwidth and rate. The NCC and Tx limit value are circled in orange in the red box below. Regarding the TX limit value, customers will set this value when they go through the certification process and fill in the following array. .. image:: ../_static/20_WIFI/image11.png :align: center | SRRC Regulation Introduction and setting: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - The Ministry of Information Industry (MII) of China has mandated that all radio component products sold and used in China must obtain Radio Type Approval Certification. Hence the abbreviation is SRRC - Since the power limit used by SRRC is PW_LMT_REGU_CN but it isn’t defined in WS-200923-Willis-Efuse_Channel_Plan_new_define-R54.xlsx, the customer must set the country code in the wifi_on function(\component\wifi\api\wifi_conf.c) as shown below: .. image:: ../_static/20_WIFI/image12.png :align: center - The wifi_set_country_code API will set the channel plan 0x48 and regulation is PW_LMT_REGU_CN. Customers can also modify or add the power limit size of PW_LMT_REGU_CN in rtw_opt_rf_para_rtl8735b.c. Therefore, the requirements of SRRC regulations can be met. | Wifi Adaptivity --------------- Adaptivity Introduction: ~~~~~~~~~~~~~~~~~~~~~~~~ - The adaptivity experiment is designed to determine the working performance of the device under test in the presence of interference between wireless channels. Adaptivity Setup Guide: ~~~~~~~~~~~~~~~~~~~~~~~ - Disable Fast connect and auto reconnect as below, because they sometimes make the test failed when testing in the certification LAB i. platform_opts.h in \\SDK\\project\\realtek_amebapro2_v0_example\\inc #define ENABLE_FAST_CONNECT 0 ii. autoconf.h in \\SDK\\component\\common\\drivers\\wlan\\realtek\\include #define CONFIG_AUTO_RECONNECT 0 - Enable Adaptivity: Modify API in wifi_conf.c wifi_set_user_config() to enable the adaptivity function. .. code-block:: c wifi_set_user_config(void) { // adaptivity wifi_user_config.rtw_adaptivity_en = DISABLE; /* * 0 : RTW_ADAPTIVITY_MODE_NORMAL * 1: RTW_ADAPTIVITY_MODE_CARRIER_SENSE */ wifi_user_config.rtw_adaptivity_mode = 0; wifi_user_config.rtw_adaptivity_th_l2h_ini = 0; } Default: rtw_adaptivity_en = DISABLE CE: rtw_adaptivity_en = ENABLE rtw_adaptivity_mode = RTW_ADAPTIVITY_MODE_NORMAL MKK: rtw_adaptivity_en = ENABLE rtw_adaptivity_mode = RTW_ADAPTIVITY_MODE_CARRIER_SENSE Adaptivity Threshold Setting: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Customer can set wifi_user_config.rtw_adaptivity_th_l2h_ini in API in wifi_conf.c wifi_set_user_config() to set adaptivity threshold. i. RTW_ADAPTIVITY_NORMAL a. How to calculate EDCCA equation from rtw_adaptivity_th_l2h_ini as below and show the example 1. EDCCA vaule = (rtw_adaptivity_th_l2h_ini – 110) dBM (except rtw_adaptivity_th_l2h_ini=0(In driver rtw_adaptivity_th_l2h_ini default is 45, so the EDCCA value is -65dbm) 2. For example: rtw_adaptivity_th_l2h_ini = 55 (-55dBm[EDCCA value]) rtw_adaptivity_th_l2h_ini = 50 (-60dBm[EDCCA value]) rtw_adaptivity_th_l2h_ini = 45 (-65dBm[EDCCA value]) rtw_adaptivity_th_l2h_ini = 42 (-68dBm[EDCCA value]) rtw_adaptivity_th_l2h_ini = 40 (-70dBm[EDCCA value]) rtw_adaptivity_th_l2h_ini = 35 (-75dBm[EDCCA value]) ii. RTW_ADAPTIVITY_CARRIER_SENSE a. rtw_adaptivity_th_l2h_ini default value is 60 (-50dBm[EDCCA value]), and EDCCA equation as above. Adaptivity Threshold Getting: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Customer can get adaptivity edcca by checking three parameters about wifi_user_config.rtw_adaptivity_th_l2h_ini and wifi_user_config.rtw_adaptivity_mode and wifi_user_config.rtw_adaptivity_th_l2h_ini. .. code-block:: c int wifi_get_adaptivity_edcca_dbm(int* value){ int ret = 0; if(wifi_user_config.rtw_adaptivity_en){ if( wifi_user_config.rtw_adaptivity_mode == 0){ //RTW_ADAPTIVITY_MODE_NORMAL if(wifi_user_config.rtw_adaptivity_th_l2h_ini==0){ *value = 45 - 110; } else{ *value = wifi_user_config.rtw_adaptivity_th_l2h_ini - 110; } } //RTW_ADAPTIVITY_MODE_CARRIER_SENSE if( wifi_user_config.rtw_adaptivity_mode == 1){ if(wifi_user_config.rtw_adaptivity_th_l2h_ini==0){ *value = 60 - 110; } else { *value = wifi_user_config.rtw_adaptivity_th_l2h_ini - 110; } } ret = 1; } return ret; } Wifi disconnect events: ----------------------- Register wifi disconnect callback: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Customers can refer to the following to register disconect callback after wifi_on() function. This callback will return the reason of deauth/disassociation to the upper layer. In addition, the wifi driver can customize the disconnection 65535/65534/65533. .. code-block:: c //wifi disconnect callback function static void wifi_disconnect_hdl(char *buf, int buf_len, int flags, void *userdata) { u16 disconn_reason; disconn_reason = *(u16 *)(buf + 6); if (disconn_reason == 65535) { printf("[wifi_disconnect_hdl] no beacon\n\r"); } else if (disconn_reason == 65534) { printf("[wifi_disconnect_hdl] ap chanage\n\r"); } else if (disconn_reason == 65533) { printf("[wifi_disconnect_hdl] driver disconnect\n\r"); } else { printf("[wifi_disconnect_hdl] deauth/disassoc reason(%d)\n\r",disconn_reason); } } //Register callback function after wifi_on() wifi_reg_event_handler(WIFI_EVENT_DISCONNECT, wifi_disconnect_hdl, NULL); Register wifi disconnect callback reason: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - the wifi driver can customize the disconnection 65535/65534/65533. i. The disconnection reason 65535 and meaning is that station listen to the router's beacon within 18 seconds, so the station send disconnection to router. ii. The disconnection reason 65534 and meaning is that station detects that the beacon content information of the router has changed, such as channel, security, etc., so the station actively send disconnection to router. iii. The disconnection reason 65533 and meaning is that station calls wifi_disconnect() function, or when the station is originally connected to the router and needs to be reconnected, the WIFI driver will assist to disconnect to router first. At this time, wifi disconnect callback with 65533 will be sent back to the upper layer, and then the station will reconnect. iv. Other disconnection reasons come from the Deauth/Disassociation sent by the router. For reason code, 802.11spec define the relevant WIFI disconnect reason. Modify the WIFI TX power method: -------------------------------- - Customers can modify the power by modifying the power by rate table/power limit table. Refer to the 1.9 Power by Rate and Power Limit Introduction chapter. - In addition, customers only need to adjust the last two variables to modify the TX power through ATCMD as follows: - ATWZ=phydm set_txagc,2 ,0, 0/1 [Add or Decrease Tx power], 6 [TX power dbm and the unit is 0.5dbm] and example is shown as below: i. ATWZ=phydm set_txagc,2,0,1,6 // Add TX power 3dbm(6/2 = 3) ii. ATWZ=phydm set_txagc,2,0,0,6 // Decrease TX power 3dbm(6/2 = 3) - This AT command can only be used for testing. If the Pro2 device reboots, this AT command won't work. Wifi build MP user guide: ------------------------- Generate MP mode image: ~~~~~~~~~~~~~~~~~~~~~~~ - 9.6SDK support single image for normal and MP mode. - Please set up the configure for MP Bluetooth test as below. i. project\realtek_amebapro2_v0_example\inc\platform_opts_bt.h a. #define CONFIG_BT 1 ii. project\realtek_amebapro2_v0_example\inc\platform_opts_bt.h a. #define CONFIG_ATCMD_MP 1 .. note :: - WiFi defaults to normal mode. - WiFi needs to be disconnected before switching to MP mode. (Ex: ATWD(wifi disconnect)) - Use the "iwpriv mp_start" AT command to switch to MP mode. - If the WiFi wants to go back to normal mode, it is recommend to reset the power to normal mode. How to switch to WIFI/Bluetooth MP mode: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Wifi setup mp mode cmd: i. Step 1: ATWD(If there is a wifi connection, DUT will automatically connect with AP, At this time, please issue the above command #ATWD[this is the function of disconnected AP]) ii. Step 2: ATWf=2(use #ATWf=2 [this is clear flash SSID+PW for fast connection]) iii. iwpriv mp_start - BT setup mp mode cmd: i. Step 1: ATWD(If there is a wifi connection, DUT will automatically connect with AP, At this time, please issue the above command #ATWD[this is the function of disconnected AP]) ii. Step 2: ATWf=2(use #ATWf=2 [this is clear flash SSID+PW for fast connection]) iii. Step 3: iwpriv mp_start iv. Step 4: ATM2=bt_power,on v. Step 5: ATM2=gnt_bt,bt vi. Step 6: ATM2= bridge - After completing the above instructions , you can close the log to open the BT APP. MP detailed instruction: ~~~~~~~~~~~~~~~~~~~~~~~~ - For more detailed MP instructions, refer to AN0004 Realtek low power wi-fi mp user guide_v2.0.pdf - Besides, about the mp tssi on detailed. Refer to AmebaPro2_RTL8735B_WiFi RF MP FLOW R03_TSSI_20220614