Zephyr Project API 3.7.0
A Scalable Open Source RTOS
|
Wi-Fi management API. More...
#include <wifi_mgmt.h>
Data Fields | |
int(* | scan )(const struct device *dev, struct wifi_scan_params *params, scan_result_cb_t cb) |
Scan for Wi-Fi networks. | |
int(* | connect )(const struct device *dev, struct wifi_connect_req_params *params) |
Connect to a Wi-Fi network. | |
int(* | disconnect )(const struct device *dev) |
Disconnect from a Wi-Fi network. | |
int(* | ap_enable )(const struct device *dev, struct wifi_connect_req_params *params) |
Enable AP mode. | |
int(* | ap_disable )(const struct device *dev) |
Disable AP mode. | |
int(* | ap_sta_disconnect )(const struct device *dev, const uint8_t *mac) |
Disconnect a STA from AP. | |
int(* | iface_status )(const struct device *dev, struct wifi_iface_status *status) |
Get interface status. | |
int(* | get_stats )(const struct device *dev, struct net_stats_wifi *stats) |
Get Wi-Fi statistics. | |
int(* | set_power_save )(const struct device *dev, struct wifi_ps_params *params) |
Set power save status. | |
int(* | set_twt )(const struct device *dev, struct wifi_twt_params *params) |
Setup or teardown TWT flow. | |
int(* | get_power_save_config )(const struct device *dev, struct wifi_ps_config *config) |
Get power save config. | |
int(* | reg_domain )(const struct device *dev, struct wifi_reg_domain *reg_domain) |
Set or get regulatory domain. | |
int(* | filter )(const struct device *dev, struct wifi_filter_info *filter) |
Set or get packet filter settings for monitor and promiscuous modes. | |
int(* | mode )(const struct device *dev, struct wifi_mode_info *mode) |
Set or get mode of operation. | |
int(* | channel )(const struct device *dev, struct wifi_channel_info *channel) |
Set or get current channel of operation. | |
int(* | get_version )(const struct device *dev, struct wifi_version *params) |
Get Version of WiFi driver and Firmware. | |
int(* | set_rts_threshold )(const struct device *dev, unsigned int rts_threshold) |
Set RTS threshold value. | |
int(* | ap_config_params )(const struct device *dev, struct wifi_ap_config_params *params) |
Configure AP parameter. | |
Wi-Fi management API.
int(* wifi_mgmt_ops::ap_config_params) (const struct device *dev, struct wifi_ap_config_params *params) |
Configure AP parameter.
dev | Pointer to the device structure for the driver instance. |
params | AP mode parameter configuration parameter info |
Disable AP mode.
dev | Pointer to the device structure for the driver instance. |
Enable AP mode.
dev | Pointer to the device structure for the driver instance. |
params | AP mode parameters |
Disconnect a STA from AP.
dev | Pointer to the device structure for the driver instance. |
mac | MAC address of the STA to disconnect |
int(* wifi_mgmt_ops::channel) (const struct device *dev, struct wifi_channel_info *channel) |
Set or get current channel of operation.
dev | Pointer to the device structure for the driver instance. |
channel | settings |
Connect to a Wi-Fi network.
dev | Pointer to the device structure for the driver instance. |
params | Connect parameters |
Disconnect from a Wi-Fi network.
dev | Pointer to the device structure for the driver instance. |
Set or get packet filter settings for monitor and promiscuous modes.
dev | Pointer to the device structure for the driver instance. |
packet | filter settings |
int(* wifi_mgmt_ops::get_power_save_config) (const struct device *dev, struct wifi_ps_config *config) |
Get power save config.
dev | Pointer to the device structure for the driver instance. |
config | Power save config |
Get Wi-Fi statistics.
dev | Pointer to the device structure for the driver instance. |
stats | Wi-Fi statistics |
Get Version of WiFi driver and Firmware.
The driver that implements the get_version function must not use stack to allocate the version information pointers that are returned as params struct members. The version pointer parameters should point to a static memory either in ROM (preferred) or in RAM.
dev | Pointer to the device structure for the driver instance |
params | Version parameters |
Get interface status.
dev | Pointer to the device structure for the driver instance. |
status | Interface status |
Set or get mode of operation.
dev | Pointer to the device structure for the driver instance. |
mode | settings |
Set or get regulatory domain.
dev | Pointer to the device structure for the driver instance. |
reg_domain | Regulatory domain |
int(* wifi_mgmt_ops::scan) (const struct device *dev, struct wifi_scan_params *params, scan_result_cb_t cb) |
Scan for Wi-Fi networks.
dev | Pointer to the device structure for the driver instance. |
params | Scan parameters |
cb | Callback to be called for each result cb parameter is the cb that should be called for each result by the driver. The wifi mgmt part will take care of raising the necessary event etc. |
Set power save status.
dev | Pointer to the device structure for the driver instance. |
params | Power save parameters |
Set RTS threshold value.
dev | Pointer to the device structure for the driver instance. |
RTS | threshold value |
Setup or teardown TWT flow.
dev | Pointer to the device structure for the driver instance. |
params | TWT parameters |