mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-09 12:35:28 +00:00
Fix two WiFi and LWIP typos
1. close github issue: https://github.com/espressif/esp-idf/issues/1792 2. close github issue: https://github.com/espressif/esp-idf/issues/1781
This commit is contained in:
4
components/esp32/include/esp_wifi_internal.h
Normal file → Executable file
4
components/esp32/include/esp_wifi_internal.h
Normal file → Executable file
@@ -81,7 +81,7 @@ void esp_wifi_internal_free_rx_buffer(void* buffer);
|
||||
*
|
||||
* @param wifi_interface_t wifi_if : wifi interface id
|
||||
* @param void *buffer : the buffer to be tansmit
|
||||
* @param u16_t len : the length of buffer
|
||||
* @param uint16_t len : the length of buffer
|
||||
*
|
||||
* @return
|
||||
* - ERR_OK : Successfully transmit the buffer to wifi driver
|
||||
@@ -89,7 +89,7 @@ void esp_wifi_internal_free_rx_buffer(void* buffer);
|
||||
* - ERR_IF : WiFi driver error
|
||||
* - ERR_ARG : Invalid argument
|
||||
*/
|
||||
int esp_wifi_internal_tx(wifi_interface_t wifi_if, void *buffer, u16_t len);
|
||||
int esp_wifi_internal_tx(wifi_interface_t wifi_if, void *buffer, uint16_t len);
|
||||
|
||||
/**
|
||||
* @brief The WiFi RX callback function
|
||||
|
Reference in New Issue
Block a user