- Add POSIX-compliant low-level driver (thanks to community to implement it)
- Prohibit transmission of too long UDP packets (default), can be disabled with configuration option
- Split CMakeLists.txt files between library and executable
- Move
esp_set_server
function to separate filelwesp_server.c
- Use
AT+GMR
command just after reset/restore to determine ESP device being connected on AT port - Minimum required AT binaries are now
2.3.0
forESP32/ESP32C3
and2.2.1
forESP8266
- Connection status is acquired with
AT+CIPSTATE
orAT+CIPSTATUS
, depends on Espressif connected device - Add optional full fields for access point scan with
LWESP_CFG_ACCESS_POINT_STRUCT_FULL_FIELDS
config option - Add optional keep-alive periodic timeout to system event callback functions. Can be used to act as generic timeout event
- Improve station manager snippet with asynchronous mode
- Update to support library.json for Platform.IO
- Add support for SDK v2.2
- Extend number of information received on AP scan
- Add option for
WPA3
andWPA2_WPA3_PSK
authentication modes - Add bgn and wps readings
- Add option for
- Add support for IPv6
- Add option to disconnect all stations from Soft-AP
- TODO: Add DNS for IPv6 support (Optional)
- TODO: Add support for WIFI GOT IP to parse IPv6
- Update CMSIS OS driver to support FreeRTOS aware kernel
- First stable release
- Works with esp-at version
v2.1.0
- Implements all basic functionality for ESP8266 and ESP32
- Added operating system-based sequential API
- Other bug fixes and docs updates
- Fixed inadequate MQTT RX data handling causing possible overflow of memory
- Added support for zero-copy MQTT RX data
- Added support for ESP32 & ESP8266
- Official support for ESP32 AT firmware v1.2 & ESP8266 AT firmware v2.0
- Added examples to main repository
- Preparation for BLE support in ESP32
- Removed AT commands with
_CUR
and_DEF
suffixes - Renamed some event names, such as
ESP_EVT_CONN_CLOSE
instead ofESP_EVT_CONN_CLOSED
- Added DHCP/static IP support
- Added CMSIS-OS v2 support
- Added LwMEM port for dynamic memory allocation
- Other bug fixes
- Remove
_t
for every struct/enum name - Fully use ESP_MEMCPY instead of memcpy
- When connection is in closing mode, stop sending any new data and return with error
- Remove
_data
part from event helper function for connection receive - Implement semaphores in internal threads
- Add driver for NUCLEO-F429
- Implement timeout callback for major events when device does not reply in given time
- Add callback function support to every API function which directly interacts with device
- Replace all files to CRLF ending
- Replace
ESP_EVT_RESET
toESP_EVT_RESET_DETECTED
- Replace
ESP_EVT_RESET_FINISH
to ESP_EVT_RESET` - Replace all header files guards with ESP_HDR_ prefix
- Add espERRBLOCKING return when function is called in blocking mode when not allowed
- Other bug fixes to stabilize AT communication
- Add sizeof for every memory allocation
- Function typedefs suffix has been renamed to
_fn
instead of_t
- Merge events for connection data send and data send error
- Send callback if sending data is not successful in any case (timeout, ERROR, etc)
- Add functions for IP/port retrieval on connections
- Remove goto statements and use deep if statements
- Fix MQTT problems with username and password
- Make consistent variable types across library
- Rename all cb annotations with evt, replacing callbacks with events,
- Replace built-in memcpy and memset functions with
ESP_MEMCPY
andESP_MEMSET
to allow users to do custom implementation - Added example for Server RTOS
- Added API to unchain first pbuf in pbuf chain
- Implemented first prototype for manual TCP receive functionality.
- Fixed netconn issue with wrong data type for OS semaphore
- Added support for asynchronous reset
- Added support for tickless sleep for modern RTOS systems
- Initial release