Merge branch 'bugfix/Add_lwip_assert_control' into 'master'

lw-ip: Add lw-ip assert control

See merge request espressif/esp-idf!8027
This commit is contained in:
Jiang Jiang Jian 2020-03-23 14:06:22 +08:00
commit 464e16cef4
2 changed files with 11 additions and 0 deletions

View File

@ -643,4 +643,11 @@ menu "LWIP"
endmenu # SNTP
config LWIP_ESP_LWIP_ASSERT
bool "Enable LWIP ASSERT checks"
default y
help
Enable this option allows lwip to check assert.
It is recommended to keep it open, do not close it.
endmenu

View File

@ -45,6 +45,10 @@
#define BYTE_ORDER LITTLE_ENDIAN
#endif // BYTE_ORDER
#ifndef CONFIG_LWIP_ESP_LWIP_ASSERT
#define LWIP_NOASSERT 1
#endif
typedef uint8_t u8_t;
typedef int8_t s8_t;
typedef uint16_t u16_t;