components/esp32: refractor according to review comments

modify esp_wifi_kick_sta to esp_wifi_deauth_sta
This commit is contained in:
liuzhifu 2016-10-26 21:50:15 +08:00
parent 750d6faf51
commit df1c2f0da5
2 changed files with 4 additions and 4 deletions

View file

@ -191,14 +191,14 @@ esp_err_t esp_wifi_disconnect(void);
esp_err_t esp_wifi_clear_fast_connect(void); esp_err_t esp_wifi_clear_fast_connect(void);
/** /**
* @brief Kick the all station or associated id equals to aid * @brief deauthenticate all stations or associated id equals to aid
* *
* @param uint16_t aid : when aid is 0, kick all stations, otherwise kick station whose associated id is aid * @param uint16_t aid : when aid is 0, deauthenticate all stations, otherwise deauthenticate station whose associated id is aid
* *
* @return ESP_OK : succeed * @return ESP_OK : succeed
* @return others : fail * @return others : fail
*/ */
esp_err_t esp_wifi_kick_sta(uint16_t aid); esp_err_t esp_wifi_deauth_sta(uint16_t aid);
/** /**
* @brief Scan all available APs. * @brief Scan all available APs.

@ -1 +1 @@
Subproject commit 02063e8d40f72933622b2eafd78ce968085b0047 Subproject commit b9561aa5db15443d11f8bb5aefdfc5da540d8f2d