You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
261 B
10 lines
261 B
#ifndef MICROPY_INCLUDED_RP2_LWIP_ARCH_CC_H
|
|
#define MICROPY_INCLUDED_RP2_LWIP_ARCH_CC_H
|
|
|
|
#include <assert.h>
|
|
#define LWIP_PLATFORM_DIAG(x)
|
|
#define LWIP_PLATFORM_ASSERT(x) { assert(1); }
|
|
|
|
#define LWIP_NO_CTYPE_H 1
|
|
|
|
#endif // MICROPY_INCLUDED_RP2_LWIP_ARCH_CC_H
|
|
|