esp_wifi.h 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876
  1. // Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. // http://www.apache.org/licenses/LICENSE-2.0
  7. //
  8. // Unless required by applicable law or agreed to in writing, software
  9. // distributed under the License is distributed on an "AS IS" BASIS,
  10. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. // See the License for the specific language governing permissions and
  12. // limitations under the License.
  13. /* Notes about WiFi Programming
  14. *
  15. * The esp32 WiFi programming model can be depicted as following picture:
  16. *
  17. *
  18. * default handler user handler
  19. * ------------- --------------- ---------------
  20. * | | event | | callback or | |
  21. * | tcpip | ---------> | event | ----------> | application |
  22. * | stack | | task | event | task |
  23. * |-----------| |-------------| |-------------|
  24. * /|\ |
  25. * | |
  26. * event | |
  27. * | |
  28. * | |
  29. * --------------- |
  30. * | | |
  31. * | WiFi Driver |/__________________|
  32. * | |\ API call
  33. * | |
  34. * |-------------|
  35. *
  36. * The WiFi driver can be consider as black box, it knows nothing about the high layer code, such as
  37. * TCPIP stack, application task, event task etc, all it can do is to receive API call from high layer
  38. * or post event queue to a specified Queue, which is initialized by API esp_wifi_init().
  39. *
  40. * The event task is a daemon task, which receives events from WiFi driver or from other subsystem, such
  41. * as TCPIP stack, event task will call the default callback function on receiving the event. For example,
  42. * on receiving event SYSTEM_EVENT_STA_CONNECTED, it will call tcpip_adapter_start() to start the DHCP
  43. * client in it's default handler.
  44. *
  45. * Application can register it's own event callback function by API esp_event_init, then the application callback
  46. * function will be called after the default callback. Also, if application doesn't want to execute the callback
  47. * in the event task, what it needs to do is to post the related event to application task in the application callback function.
  48. *
  49. * The application task (code) generally mixes all these thing together, it calls APIs to init the system/WiFi and
  50. * handle the events when necessary.
  51. *
  52. */
  53. #ifndef __ESP_WIFI_H__
  54. #define __ESP_WIFI_H__
  55. #include <stdint.h>
  56. #include <stdbool.h>
  57. #include "freertos/FreeRTOS.h"
  58. #include "freertos/queue.h"
  59. #include "rom/queue.h"
  60. #include "sdkconfig.h"
  61. #include "esp_err.h"
  62. #include "esp_wifi_types.h"
  63. #include "esp_wifi_crypto_types.h"
  64. #include "esp_event.h"
  65. #ifdef __cplusplus
  66. extern "C" {
  67. #endif
  68. #define ESP_ERR_WIFI_NOT_INIT (ESP_ERR_WIFI_BASE + 1) /*!< WiFi driver was not installed by esp_wifi_init */
  69. #define ESP_ERR_WIFI_NOT_STARTED (ESP_ERR_WIFI_BASE + 2) /*!< WiFi driver was not started by esp_wifi_start */
  70. #define ESP_ERR_WIFI_NOT_STOPPED (ESP_ERR_WIFI_BASE + 3) /*!< WiFi driver was not stopped by esp_wifi_stop */
  71. #define ESP_ERR_WIFI_IF (ESP_ERR_WIFI_BASE + 4) /*!< WiFi interface error */
  72. #define ESP_ERR_WIFI_MODE (ESP_ERR_WIFI_BASE + 5) /*!< WiFi mode error */
  73. #define ESP_ERR_WIFI_STATE (ESP_ERR_WIFI_BASE + 6) /*!< WiFi internal state error */
  74. #define ESP_ERR_WIFI_CONN (ESP_ERR_WIFI_BASE + 7) /*!< WiFi internal control block of station or soft-AP error */
  75. #define ESP_ERR_WIFI_NVS (ESP_ERR_WIFI_BASE + 8) /*!< WiFi internal NVS module error */
  76. #define ESP_ERR_WIFI_MAC (ESP_ERR_WIFI_BASE + 9) /*!< MAC address is invalid */
  77. #define ESP_ERR_WIFI_SSID (ESP_ERR_WIFI_BASE + 10) /*!< SSID is invalid */
  78. #define ESP_ERR_WIFI_PASSWORD (ESP_ERR_WIFI_BASE + 11) /*!< Password is invalid */
  79. #define ESP_ERR_WIFI_TIMEOUT (ESP_ERR_WIFI_BASE + 12) /*!< Timeout error */
  80. #define ESP_ERR_WIFI_WAKE_FAIL (ESP_ERR_WIFI_BASE + 13) /*!< WiFi is in sleep state(RF closed) and wakeup fail */
  81. #define ESP_ERR_WIFI_WOULD_BLOCK (ESP_ERR_WIFI_BASE + 14) /*!< The caller would block */
  82. #define ESP_ERR_WIFI_NOT_CONNECT (ESP_ERR_WIFI_BASE + 15) /*!< Station still in disconnect status */
  83. /**
  84. * @brief WiFi stack configuration parameters passed to esp_wifi_init call.
  85. */
  86. typedef struct {
  87. system_event_handler_t event_handler; /**< WiFi event handler */
  88. wpa_crypto_funcs_t wpa_crypto_funcs; /**< WiFi station crypto functions when connect */
  89. int static_rx_buf_num; /**< WiFi static RX buffer number */
  90. int dynamic_rx_buf_num; /**< WiFi dynamic RX buffer number */
  91. int tx_buf_type; /**< WiFi TX buffer type */
  92. int static_tx_buf_num; /**< WiFi static TX buffer number */
  93. int dynamic_tx_buf_num; /**< WiFi dynamic TX buffer number */
  94. int ampdu_rx_enable; /**< WiFi AMPDU RX feature enable flag */
  95. int ampdu_tx_enable; /**< WiFi AMPDU TX feature enable flag */
  96. int nvs_enable; /**< WiFi NVS flash enable flag */
  97. int nano_enable; /**< Nano option for printf/scan family enable flag */
  98. int tx_ba_win; /**< WiFi Block Ack TX window size */
  99. int rx_ba_win; /**< WiFi Block Ack RX window size */
  100. int magic; /**< WiFi init magic number, it should be the last field */
  101. } wifi_init_config_t;
  102. #ifdef CONFIG_ESP32_WIFI_STATIC_TX_BUFFER_NUM
  103. #define WIFI_STATIC_TX_BUFFER_NUM CONFIG_ESP32_WIFI_STATIC_TX_BUFFER_NUM
  104. #else
  105. #define WIFI_STATIC_TX_BUFFER_NUM 0
  106. #endif
  107. #ifdef CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM
  108. #define WIFI_DYNAMIC_TX_BUFFER_NUM CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM
  109. #else
  110. #define WIFI_DYNAMIC_TX_BUFFER_NUM 0
  111. #endif
  112. #if CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED
  113. #define WIFI_AMPDU_RX_ENABLED 1
  114. #else
  115. #define WIFI_AMPDU_RX_ENABLED 0
  116. #endif
  117. #if CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED
  118. #define WIFI_AMPDU_TX_ENABLED 1
  119. #else
  120. #define WIFI_AMPDU_TX_ENABLED 0
  121. #endif
  122. #if CONFIG_ESP32_WIFI_NVS_ENABLED
  123. #define WIFI_NVS_ENABLED 1
  124. #else
  125. #define WIFI_NVS_ENABLED 0
  126. #endif
  127. #if CONFIG_NEWLIB_NANO_FORMAT
  128. #define WIFI_NANO_FORMAT_ENABLED 1
  129. #else
  130. #define WIFI_NANO_FORMAT_ENABLED 0
  131. #endif
  132. extern const wpa_crypto_funcs_t g_wifi_default_wpa_crypto_funcs;
  133. #define WIFI_INIT_CONFIG_MAGIC 0x1F2F3F4F
  134. #ifdef CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED
  135. #define WIFI_DEFAULT_TX_BA_WIN CONFIG_ESP32_WIFI_TX_BA_WIN
  136. #else
  137. #define WIFI_DEFAULT_TX_BA_WIN 0 /* unused if ampdu_tx_enable == false */
  138. #endif
  139. #ifdef CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED
  140. #define WIFI_DEFAULT_RX_BA_WIN CONFIG_ESP32_WIFI_RX_BA_WIN
  141. #else
  142. #define WIFI_DEFAULT_RX_BA_WIN 0 /* unused if ampdu_rx_enable == false */
  143. #endif
  144. #define WIFI_INIT_CONFIG_DEFAULT() { \
  145. .event_handler = &esp_event_send, \
  146. .wpa_crypto_funcs = g_wifi_default_wpa_crypto_funcs, \
  147. .static_rx_buf_num = CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM,\
  148. .dynamic_rx_buf_num = CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM,\
  149. .tx_buf_type = CONFIG_ESP32_WIFI_TX_BUFFER_TYPE,\
  150. .static_tx_buf_num = WIFI_STATIC_TX_BUFFER_NUM,\
  151. .dynamic_tx_buf_num = WIFI_DYNAMIC_TX_BUFFER_NUM,\
  152. .ampdu_rx_enable = WIFI_AMPDU_RX_ENABLED,\
  153. .ampdu_tx_enable = WIFI_AMPDU_TX_ENABLED,\
  154. .nvs_enable = WIFI_NVS_ENABLED,\
  155. .nano_enable = WIFI_NANO_FORMAT_ENABLED,\
  156. .tx_ba_win = WIFI_DEFAULT_TX_BA_WIN,\
  157. .rx_ba_win = WIFI_DEFAULT_RX_BA_WIN,\
  158. .magic = WIFI_INIT_CONFIG_MAGIC\
  159. };
  160. /**
  161. * @brief Init WiFi
  162. * Alloc resource for WiFi driver, such as WiFi control structure, RX/TX buffer,
  163. * WiFi NVS structure etc, this WiFi also start WiFi task
  164. *
  165. * @attention 1. This API must be called before all other WiFi API can be called
  166. * @attention 2. Always use WIFI_INIT_CONFIG_DEFAULT macro to init the config to default values, this can
  167. * guarantee all the fields got correct value when more fields are added into wifi_init_config_t
  168. * in future release. If you want to set your owner initial values, overwrite the default values
  169. * which are set by WIFI_INIT_CONFIG_DEFAULT, please be notified that the field 'magic' of
  170. * wifi_init_config_t should always be WIFI_INIT_CONFIG_MAGIC!
  171. *
  172. * @param config pointer to WiFi init configuration structure; can point to a temporary variable.
  173. *
  174. * @return
  175. * - ESP_OK: succeed
  176. * - ESP_ERR_NO_MEM: out of memory
  177. * - others: refer to error code esp_err.h
  178. */
  179. esp_err_t esp_wifi_init(const wifi_init_config_t *config);
  180. /**
  181. * @brief Deinit WiFi
  182. * Free all resource allocated in esp_wifi_init and stop WiFi task
  183. *
  184. * @attention 1. This API should be called if you want to remove WiFi driver from the system
  185. *
  186. * @return ESP_OK: succeed
  187. */
  188. esp_err_t esp_wifi_deinit(void);
  189. /**
  190. * @brief Set the WiFi operating mode
  191. *
  192. * Set the WiFi operating mode as station, soft-AP or station+soft-AP,
  193. * The default mode is soft-AP mode.
  194. *
  195. * @param mode WiFi operating mode
  196. *
  197. * @return
  198. * - ESP_OK: succeed
  199. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  200. * - ESP_ERR_INVALID_ARG: invalid argument
  201. * - others: refer to error code in esp_err.h
  202. */
  203. esp_err_t esp_wifi_set_mode(wifi_mode_t mode);
  204. /**
  205. * @brief Get current operating mode of WiFi
  206. *
  207. * @param[out] mode store current WiFi mode
  208. *
  209. * @return
  210. * - ESP_OK: succeed
  211. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  212. * - ESP_ERR_INVALID_ARG: invalid argument
  213. */
  214. esp_err_t esp_wifi_get_mode(wifi_mode_t *mode);
  215. /**
  216. * @brief Start WiFi according to current configuration
  217. * If mode is WIFI_MODE_STA, it create station control block and start station
  218. * If mode is WIFI_MODE_AP, it create soft-AP control block and start soft-AP
  219. * If mode is WIFI_MODE_APSTA, it create soft-AP and station control block and start soft-AP and station
  220. *
  221. * @return
  222. * - ESP_OK: succeed
  223. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  224. * - ESP_ERR_INVALID_ARG: invalid argument
  225. * - ESP_ERR_NO_MEM: out of memory
  226. * - ESP_ERR_WIFI_CONN: WiFi internal error, station or soft-AP control block wrong
  227. * - ESP_FAIL: other WiFi internal errors
  228. */
  229. esp_err_t esp_wifi_start(void);
  230. /**
  231. * @brief Stop WiFi
  232. * If mode is WIFI_MODE_STA, it stop station and free station control block
  233. * If mode is WIFI_MODE_AP, it stop soft-AP and free soft-AP control block
  234. * If mode is WIFI_MODE_APSTA, it stop station/soft-AP and free station/soft-AP control block
  235. *
  236. * @return
  237. * - ESP_OK: succeed
  238. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  239. */
  240. esp_err_t esp_wifi_stop(void);
  241. /**
  242. * @brief Restore WiFi stack persistent settings to default values
  243. *
  244. * This function will reset settings made using the following APIs:
  245. * - esp_wifi_get_auto_connect,
  246. * - esp_wifi_set_protocol,
  247. * - esp_wifi_set_config related
  248. * - esp_wifi_set_mode
  249. *
  250. * @return
  251. * - ESP_OK: succeed
  252. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  253. */
  254. esp_err_t esp_wifi_restore(void);
  255. /**
  256. * @brief Connect the ESP32 WiFi station to the AP.
  257. *
  258. * @attention 1. This API only impact WIFI_MODE_STA or WIFI_MODE_APSTA mode
  259. * @attention 2. If the ESP32 is connected to an AP, call esp_wifi_disconnect to disconnect.
  260. *
  261. * @return
  262. * - ESP_OK: succeed
  263. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  264. * - ESP_ERR_WIFI_NOT_START: WiFi is not started by esp_wifi_start
  265. * - ESP_ERR_WIFI_CONN: WiFi internal error, station or soft-AP control block wrong
  266. * - ESP_ERR_WIFI_SSID: SSID of AP which station connects is invalid
  267. */
  268. esp_err_t esp_wifi_connect(void);
  269. /**
  270. * @brief Disconnect the ESP32 WiFi station from the AP.
  271. *
  272. * @return
  273. * - ESP_OK: succeed
  274. * - ESP_ERR_WIFI_NOT_INIT: WiFi was not initialized by esp_wifi_init
  275. * - ESP_ERR_WIFI_NOT_STARTED: WiFi was not started by esp_wifi_start
  276. * - ESP_FAIL: other WiFi internal errors
  277. */
  278. esp_err_t esp_wifi_disconnect(void);
  279. /**
  280. * @brief Currently this API is just an stub API
  281. *
  282. * @return
  283. * - ESP_OK: succeed
  284. * - others: fail
  285. */
  286. esp_err_t esp_wifi_clear_fast_connect(void);
  287. /**
  288. * @brief deauthenticate all stations or associated id equals to aid
  289. *
  290. * @param aid when aid is 0, deauthenticate all stations, otherwise deauthenticate station whose associated id is aid
  291. *
  292. * @return
  293. * - ESP_OK: succeed
  294. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  295. * - ESP_ERR_WIFI_NOT_STARTED: WiFi was not started by esp_wifi_start
  296. * - ESP_ERR_INVALID_ARG: invalid argument
  297. * - ESP_ERR_WIFI_MODE: WiFi mode is wrong
  298. */
  299. esp_err_t esp_wifi_deauth_sta(uint16_t aid);
  300. /**
  301. * @brief Scan all available APs.
  302. *
  303. * @attention If this API is called, the found APs are stored in WiFi driver dynamic allocated memory and the
  304. * will be freed in esp_wifi_scan_get_ap_records, so generally, call esp_wifi_scan_get_ap_records to cause
  305. * the memory to be freed once the scan is done
  306. * @attention The values of maximum active scan time and passive scan time per channel are limited to 1500 milliseconds.
  307. * Values above 1500ms may cause station to disconnect from AP and are not recommended.
  308. *
  309. * @param config configuration of scanning
  310. * @param block if block is true, this API will block the caller until the scan is done, otherwise
  311. * it will return immediately
  312. *
  313. * @return
  314. * - ESP_OK: succeed
  315. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  316. * - ESP_ERR_WIFI_NOT_STARTED: WiFi was not started by esp_wifi_start
  317. * - ESP_ERR_WIFI_TIMEOUT: blocking scan is timeout
  318. * - others: refer to error code in esp_err.h
  319. */
  320. esp_err_t esp_wifi_scan_start(const wifi_scan_config_t *config, bool block);
  321. /**
  322. * @brief Stop the scan in process
  323. *
  324. * @return
  325. * - ESP_OK: succeed
  326. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  327. * - ESP_ERR_WIFI_NOT_STARTED: WiFi is not started by esp_wifi_start
  328. */
  329. esp_err_t esp_wifi_scan_stop(void);
  330. /**
  331. * @brief Get number of APs found in last scan
  332. *
  333. * @param[out] number store number of APIs found in last scan
  334. *
  335. * @attention This API can only be called when the scan is completed, otherwise it may get wrong value.
  336. *
  337. * @return
  338. * - ESP_OK: succeed
  339. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  340. * - ESP_ERR_WIFI_NOT_STARTED: WiFi is not started by esp_wifi_start
  341. * - ESP_ERR_INVALID_ARG: invalid argument
  342. */
  343. esp_err_t esp_wifi_scan_get_ap_num(uint16_t *number);
  344. /**
  345. * @brief Get AP list found in last scan
  346. *
  347. * @param[inout] number As input param, it stores max AP number ap_records can hold.
  348. * As output param, it receives the actual AP number this API returns.
  349. * @param ap_records wifi_ap_record_t array to hold the found APs
  350. *
  351. * @return
  352. * - ESP_OK: succeed
  353. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  354. * - ESP_ERR_WIFI_NOT_STARTED: WiFi is not started by esp_wifi_start
  355. * - ESP_ERR_INVALID_ARG: invalid argument
  356. * - ESP_ERR_NO_MEM: out of memory
  357. */
  358. esp_err_t esp_wifi_scan_get_ap_records(uint16_t *number, wifi_ap_record_t *ap_records);
  359. /**
  360. * @brief Get information of AP which the ESP32 station is associated with
  361. *
  362. * @param ap_info the wifi_ap_record_t to hold AP information
  363. *
  364. * @return
  365. * - ESP_OK: succeed
  366. * - ESP_ERR_WIFI_CONN: The station interface don't initialized
  367. * - ESP_ERR_WIFI_NOT_CONNECT: The station is in disconnect status
  368. */
  369. esp_err_t esp_wifi_sta_get_ap_info(wifi_ap_record_t *ap_info);
  370. /**
  371. * @brief Set current power save type
  372. *
  373. * @attention Default power save type is WIFI_PS_NONE.
  374. *
  375. * @param type power save type
  376. *
  377. * @return ESP_ERR_NOT_SUPPORTED: not supported yet
  378. */
  379. esp_err_t esp_wifi_set_ps(wifi_ps_type_t type);
  380. /**
  381. * @brief Get current power save type
  382. *
  383. * @attention Default power save type is WIFI_PS_NONE.
  384. *
  385. * @param[out] type: store current power save type
  386. *
  387. * @return ESP_ERR_NOT_SUPPORTED: not supported yet
  388. */
  389. esp_err_t esp_wifi_get_ps(wifi_ps_type_t *type);
  390. /**
  391. * @brief Set protocol type of specified interface
  392. * The default protocol is (WIFI_PROTOCOL_11B|WIFI_PROTOCOL_11G|WIFI_PROTOCOL_11N)
  393. *
  394. * @attention Currently we only support 802.11b or 802.11bg or 802.11bgn mode
  395. *
  396. * @param ifx interfaces
  397. * @param protocol_bitmap WiFi protocol bitmap
  398. *
  399. * @return
  400. * - ESP_OK: succeed
  401. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  402. * - ESP_ERR_WIFI_IF: invalid interface
  403. * - others: refer to error codes in esp_err.h
  404. */
  405. esp_err_t esp_wifi_set_protocol(wifi_interface_t ifx, uint8_t protocol_bitmap);
  406. /**
  407. * @brief Get the current protocol bitmap of the specified interface
  408. *
  409. * @param ifx interface
  410. * @param[out] protocol_bitmap store current WiFi protocol bitmap of interface ifx
  411. *
  412. * @return
  413. * - ESP_OK: succeed
  414. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  415. * - ESP_ERR_WIFI_IF: invalid interface
  416. * - ESP_ERR_INVALID_ARG: invalid argument
  417. * - others: refer to error codes in esp_err.h
  418. */
  419. esp_err_t esp_wifi_get_protocol(wifi_interface_t ifx, uint8_t *protocol_bitmap);
  420. /**
  421. * @brief Set the bandwidth of ESP32 specified interface
  422. *
  423. * @attention 1. API return false if try to configure an interface that is not enabled
  424. * @attention 2. WIFI_BW_HT40 is supported only when the interface support 11N
  425. *
  426. * @param ifx interface to be configured
  427. * @param bw bandwidth
  428. *
  429. * @return
  430. * - ESP_OK: succeed
  431. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  432. * - ESP_ERR_WIFI_IF: invalid interface
  433. * - ESP_ERR_INVALID_ARG: invalid argument
  434. * - others: refer to error codes in esp_err.h
  435. */
  436. esp_err_t esp_wifi_set_bandwidth(wifi_interface_t ifx, wifi_bandwidth_t bw);
  437. /**
  438. * @brief Get the bandwidth of ESP32 specified interface
  439. *
  440. * @attention 1. API return false if try to get a interface that is not enable
  441. *
  442. * @param ifx interface to be configured
  443. * @param[out] bw store bandwidth of interface ifx
  444. *
  445. * @return
  446. * - ESP_OK: succeed
  447. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  448. * - ESP_ERR_WIFI_IF: invalid interface
  449. * - ESP_ERR_INVALID_ARG: invalid argument
  450. */
  451. esp_err_t esp_wifi_get_bandwidth(wifi_interface_t ifx, wifi_bandwidth_t *bw);
  452. /**
  453. * @brief Set primary/secondary channel of ESP32
  454. *
  455. * @attention 1. This is a special API for sniffer
  456. * @attention 2. This API should be called after esp_wifi_start() or esp_wifi_set_promiscuous()
  457. *
  458. * @param primary for HT20, primary is the channel number, for HT40, primary is the primary channel
  459. * @param second for HT20, second is ignored, for HT40, second is the second channel
  460. *
  461. * @return
  462. * - ESP_OK: succeed
  463. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  464. * - ESP_ERR_WIFI_IF: invalid interface
  465. * - ESP_ERR_INVALID_ARG: invalid argument
  466. */
  467. esp_err_t esp_wifi_set_channel(uint8_t primary, wifi_second_chan_t second);
  468. /**
  469. * @brief Get the primary/secondary channel of ESP32
  470. *
  471. * @attention 1. API return false if try to get a interface that is not enable
  472. *
  473. * @param primary store current primary channel
  474. * @param[out] second store current second channel
  475. *
  476. * @return
  477. * - ESP_OK: succeed
  478. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  479. * - ESP_ERR_INVALID_ARG: invalid argument
  480. */
  481. esp_err_t esp_wifi_get_channel(uint8_t *primary, wifi_second_chan_t *second);
  482. /**
  483. * @brief configure country info
  484. *
  485. * @attention 1. The default country is {.cc="CN", .schan=1, .nchan=13, policy=WIFI_COUNTRY_POLICY_AUTO}
  486. * @attention 2. When the country policy is WIFI_COUNTRY_POLICY_AUTO, the country info of the AP to which
  487. * the station is connected is used. E.g. if the configured country info is {.cc="USA", .schan=1, .nchan=11}
  488. * and the country info of the AP to which the station is connected is {.cc="JP", .schan=1, .nchan=14}
  489. * then the country info that will be used is {.cc="JP", .schan=1, .nchan=14}. If the station disconnected
  490. * from the AP the country info is set back back to the country info of the station automatically,
  491. * {.cc="USA", .schan=1, .nchan=11} in the example.
  492. * @attention 3. When the country policy is WIFI_COUNTRY_POLICY_MANUAL, always use the configured country info.
  493. * @attention 4. When the country info is changed because of configuration or because the station connects to a different
  494. * external AP, the country IE in probe response/beacon of the soft-AP is changed also.
  495. * @attention 5. The country configuration is not stored into flash
  496. * @attention 6. This API doesn't validate the per-country rules, it's up to the user to fill in all fields according to
  497. * local regulations.
  498. *
  499. * @param country the configured country info
  500. *
  501. * @return
  502. * - ESP_OK: succeed
  503. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  504. * - ESP_ERR_INVALID_ARG: invalid argument
  505. */
  506. esp_err_t esp_wifi_set_country(const wifi_country_t *country);
  507. /**
  508. * @brief get the current country info
  509. *
  510. * @param country country info
  511. *
  512. * @return
  513. * - ESP_OK: succeed
  514. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  515. * - ESP_ERR_INVALID_ARG: invalid argument
  516. */
  517. esp_err_t esp_wifi_get_country(wifi_country_t *country);
  518. /**
  519. * @brief Set MAC address of the ESP32 WiFi station or the soft-AP interface.
  520. *
  521. * @attention 1. This API can only be called when the interface is disabled
  522. * @attention 2. ESP32 soft-AP and station have different MAC addresses, do not set them to be the same.
  523. * @attention 3. The bit 0 of the first byte of ESP32 MAC address can not be 1. For example, the MAC address
  524. * can set to be "1a:XX:XX:XX:XX:XX", but can not be "15:XX:XX:XX:XX:XX".
  525. *
  526. * @param ifx interface
  527. * @param mac the MAC address
  528. *
  529. * @return
  530. * - ESP_OK: succeed
  531. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  532. * - ESP_ERR_INVALID_ARG: invalid argument
  533. * - ESP_ERR_WIFI_IF: invalid interface
  534. * - ESP_ERR_WIFI_MAC: invalid mac address
  535. * - ESP_ERR_WIFI_MODE: WiFi mode is wrong
  536. * - others: refer to error codes in esp_err.h
  537. */
  538. esp_err_t esp_wifi_set_mac(wifi_interface_t ifx, const uint8_t mac[6]);
  539. /**
  540. * @brief Get mac of specified interface
  541. *
  542. * @param ifx interface
  543. * @param[out] mac store mac of the interface ifx
  544. *
  545. * @return
  546. * - ESP_OK: succeed
  547. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  548. * - ESP_ERR_INVALID_ARG: invalid argument
  549. * - ESP_ERR_WIFI_IF: invalid interface
  550. */
  551. esp_err_t esp_wifi_get_mac(wifi_interface_t ifx, uint8_t mac[6]);
  552. /**
  553. * @brief The RX callback function in the promiscuous mode.
  554. * Each time a packet is received, the callback function will be called.
  555. *
  556. * @param buf Data received. Type of data in buffer (wifi_promiscuous_pkt_t or wifi_pkt_rx_ctrl_t) indicated by 'type' parameter.
  557. * @param type promiscuous packet type.
  558. *
  559. */
  560. typedef void (* wifi_promiscuous_cb_t)(void *buf, wifi_promiscuous_pkt_type_t type);
  561. /**
  562. * @brief Register the RX callback function in the promiscuous mode.
  563. *
  564. * Each time a packet is received, the registered callback function will be called.
  565. *
  566. * @param cb callback
  567. *
  568. * @return
  569. * - ESP_OK: succeed
  570. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  571. */
  572. esp_err_t esp_wifi_set_promiscuous_rx_cb(wifi_promiscuous_cb_t cb);
  573. /**
  574. * @brief Enable the promiscuous mode.
  575. *
  576. * @param en false - disable, true - enable
  577. *
  578. * @return
  579. * - ESP_OK: succeed
  580. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  581. */
  582. esp_err_t esp_wifi_set_promiscuous(bool en);
  583. /**
  584. * @brief Get the promiscuous mode.
  585. *
  586. * @param[out] en store the current status of promiscuous mode
  587. *
  588. * @return
  589. * - ESP_OK: succeed
  590. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  591. * - ESP_ERR_INVALID_ARG: invalid argument
  592. */
  593. esp_err_t esp_wifi_get_promiscuous(bool *en);
  594. /**
  595. * @brief Enable the promiscuous mode packet type filter.
  596. *
  597. * @note The default filter is to filter all packets except WIFI_PKT_MISC
  598. *
  599. * @param filter the packet type filtered in promiscuous mode.
  600. *
  601. * @return
  602. * - ESP_OK: succeed
  603. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  604. */
  605. esp_err_t esp_wifi_set_promiscuous_filter(const wifi_promiscuous_filter_t *filter);
  606. /**
  607. * @brief Get the promiscuous filter.
  608. *
  609. * @param[out] filter store the current status of promiscuous filter
  610. *
  611. * @return
  612. * - ESP_OK: succeed
  613. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  614. * - ESP_ERR_INVALID_ARG: invalid argument
  615. */
  616. esp_err_t esp_wifi_get_promiscuous_filter(wifi_promiscuous_filter_t *filter);
  617. /**
  618. * @brief Set the configuration of the ESP32 STA or AP
  619. *
  620. * @attention 1. This API can be called only when specified interface is enabled, otherwise, API fail
  621. * @attention 2. For station configuration, bssid_set needs to be 0; and it needs to be 1 only when users need to check the MAC address of the AP.
  622. * @attention 3. ESP32 is limited to only one channel, so when in the soft-AP+station mode, the soft-AP will adjust its channel automatically to be the same as
  623. * the channel of the ESP32 station.
  624. *
  625. * @param interface interface
  626. * @param conf station or soft-AP configuration
  627. *
  628. * @return
  629. * - ESP_OK: succeed
  630. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  631. * - ESP_ERR_INVALID_ARG: invalid argument
  632. * - ESP_ERR_WIFI_IF: invalid interface
  633. * - ESP_ERR_WIFI_MODE: invalid mode
  634. * - ESP_ERR_WIFI_PASSWORD: invalid password
  635. * - ESP_ERR_WIFI_NVS: WiFi internal NVS error
  636. * - others: refer to the erro code in esp_err.h
  637. */
  638. esp_err_t esp_wifi_set_config(wifi_interface_t interface, wifi_config_t *conf);
  639. /**
  640. * @brief Get configuration of specified interface
  641. *
  642. * @param interface interface
  643. * @param[out] conf station or soft-AP configuration
  644. *
  645. * @return
  646. * - ESP_OK: succeed
  647. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  648. * - ESP_ERR_INVALID_ARG: invalid argument
  649. * - ESP_ERR_WIFI_IF: invalid interface
  650. */
  651. esp_err_t esp_wifi_get_config(wifi_interface_t interface, wifi_config_t *conf);
  652. /**
  653. * @brief Get STAs associated with soft-AP
  654. *
  655. * @attention SSC only API
  656. *
  657. * @param[out] sta station list
  658. *
  659. * @return
  660. * - ESP_OK: succeed
  661. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  662. * - ESP_ERR_INVALID_ARG: invalid argument
  663. * - ESP_ERR_WIFI_MODE: WiFi mode is wrong
  664. * - ESP_ERR_WIFI_CONN: WiFi internal error, the station/soft-AP control block is invalid
  665. */
  666. esp_err_t esp_wifi_ap_get_sta_list(wifi_sta_list_t *sta);
  667. /**
  668. * @brief Set the WiFi API configuration storage type
  669. *
  670. * @attention 1. The default value is WIFI_STORAGE_FLASH
  671. *
  672. * @param storage : storage type
  673. *
  674. * @return
  675. * - ESP_OK: succeed
  676. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  677. * - ESP_ERR_INVALID_ARG: invalid argument
  678. */
  679. esp_err_t esp_wifi_set_storage(wifi_storage_t storage);
  680. /**
  681. * @brief Set auto connect
  682. * The default value is true
  683. *
  684. * @param en : true - enable auto connect / false - disable auto connect
  685. *
  686. * @return
  687. * - ESP_OK: succeed
  688. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  689. * - ESP_ERR_WIFI_MODE: WiFi internal error, the station/soft-AP control block is invalid
  690. * - others: refer to error code in esp_err.h
  691. */
  692. esp_err_t esp_wifi_set_auto_connect(bool en);
  693. /**
  694. * @brief Get the auto connect flag
  695. *
  696. * @param[out] en store current auto connect configuration
  697. *
  698. * @return
  699. * - ESP_OK: succeed
  700. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  701. * - ESP_ERR_INVALID_ARG: invalid argument
  702. */
  703. esp_err_t esp_wifi_get_auto_connect(bool *en);
  704. /**
  705. * @brief Set 802.11 Vendor-Specific Information Element
  706. *
  707. * @param enable If true, specified IE is enabled. If false, specified IE is removed.
  708. * @param type Information Element type. Determines the frame type to associate with the IE.
  709. * @param idx Index to set or clear. Each IE type can be associated with up to two elements (indices 0 & 1).
  710. * @param vnd_ie Pointer to vendor specific element data. First 6 bytes should be a header with fields matching vendor_ie_data_t.
  711. * If enable is false, this argument is ignored and can be NULL. Data does not need to remain valid after the function returns.
  712. *
  713. * @return
  714. * - ESP_OK: succeed
  715. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init()
  716. * - ESP_ERR_INVALID_ARG: Invalid argument, including if first byte of vnd_ie is not WIFI_VENDOR_IE_ELEMENT_ID (0xDD)
  717. * or second byte is an invalid length.
  718. * - ESP_ERR_NO_MEM: Out of memory
  719. */
  720. esp_err_t esp_wifi_set_vendor_ie(bool enable, wifi_vendor_ie_type_t type, wifi_vendor_ie_id_t idx, const void *vnd_ie);
  721. /**
  722. * @brief Function signature for received Vendor-Specific Information Element callback.
  723. * @param ctx Context argument, as passed to esp_wifi_set_vendor_ie_cb() when registering callback.
  724. * @param type Information element type, based on frame type received.
  725. * @param sa Source 802.11 address.
  726. * @param vnd_ie Pointer to the vendor specific element data received.
  727. * @param rssi Received signal strength indication.
  728. */
  729. typedef void (*esp_vendor_ie_cb_t) (void *ctx, wifi_vendor_ie_type_t type, const uint8_t sa[6], const vendor_ie_data_t *vnd_ie, int rssi);
  730. /**
  731. * @brief Register Vendor-Specific Information Element monitoring callback.
  732. *
  733. * @param cb Callback function
  734. * @param ctx Context argument, passed to callback function.
  735. *
  736. * @return
  737. * - ESP_OK: succeed
  738. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  739. */
  740. esp_err_t esp_wifi_set_vendor_ie_cb(esp_vendor_ie_cb_t cb, void *ctx);
  741. /**
  742. * @brief Set maximum WiFi transmiting power
  743. *
  744. * @attention WiFi transmiting power is divided to six levels in phy init data.
  745. * Level0 represents highest transmiting power and level5 represents lowest
  746. * transmiting power. Packets of different rates are transmitted in
  747. * different powers according to the configuration in phy init data.
  748. * This API only sets maximum WiFi transmiting power. If this API is called,
  749. * the transmiting power of every packet will be less than or equal to the
  750. * value set by this API. If this API is not called, the value of maximum
  751. * transmitting power set in phy_init_data.bin or menuconfig (depend on
  752. * whether to use phy init data in partition or not) will be used. Default
  753. * value is level0. Values passed in power are mapped to transmit power
  754. * levels as follows:
  755. * - [78, 127]: level0
  756. * - [76, 77]: level1
  757. * - [74, 75]: level2
  758. * - [68, 73]: level3
  759. * - [60, 67]: level4
  760. * - [52, 59]: level5
  761. * - [44, 51]: level5 - 2dBm
  762. * - [34, 43]: level5 - 4.5dBm
  763. * - [28, 33]: level5 - 6dBm
  764. * - [20, 27]: level5 - 8dBm
  765. * - [8, 19]: level5 - 11dBm
  766. * - [-128, 7]: level5 - 14dBm
  767. *
  768. * @param power Maximum WiFi transmiting power.
  769. *
  770. * @return
  771. * - ESP_OK: succeed
  772. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  773. * - ESP_ERR_WIFI_NOT_START: WiFi is not started by esp_wifi_start
  774. */
  775. esp_err_t esp_wifi_set_max_tx_power(int8_t power);
  776. /**
  777. * @brief Get maximum WiFi transmiting power
  778. *
  779. * @attention This API gets maximum WiFi transmiting power. Values got
  780. * from power are mapped to transmit power levels as follows:
  781. * - 78: 19.5dBm
  782. * - 76: 19dBm
  783. * - 74: 18.5dBm
  784. * - 68: 17dBm
  785. * - 60: 15dBm
  786. * - 52: 13dBm
  787. * - 44: 11dBm
  788. * - 34: 8.5dBm
  789. * - 28: 7dBm
  790. * - 20: 5dBm
  791. * - 8: 2dBm
  792. * - -4: -1dBm
  793. *
  794. * @param power Maximum WiFi transmiting power.
  795. *
  796. * @return
  797. * - ESP_OK: succeed
  798. * - ESP_ERR_WIFI_NOT_INIT: WiFi is not initialized by esp_wifi_init
  799. * - ESP_ERR_WIFI_NOT_START: WiFi is not started by esp_wifi_start
  800. * - ESP_ERR_INVALID_ARG: invalid argument
  801. */
  802. esp_err_t esp_wifi_get_max_tx_power(int8_t *power);
  803. #ifdef __cplusplus
  804. }
  805. #endif
  806. #endif /* __ESP_WIFI_H__ */