esp_wifi.h 34 KB

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