LWIP: Add lwip assert control

pull/5000/head
xiehang 2020-03-19 14:41:07 +08:00
rodzic 207914a13a
commit a133dbd848
2 zmienionych plików z 11 dodań i 0 usunięć

Wyświetl plik

@ -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

Wyświetl plik

@ -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;