kopia lustrzana https://github.com/espressif/esp-idf
LWIP: Add lwip assert control
rodzic
207914a13a
commit
a133dbd848
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Ładowanie…
Reference in New Issue