diff options
author | lonkaars <loek@pipeframe.xyz> | 2024-04-25 17:30:41 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2024-04-25 17:30:41 +0200 |
commit | cee744e2bd419c0fc47f2b8bb315f183929d1113 (patch) | |
tree | b83c36e28c9539027f6209ce3606e1dbac8e2d5d /main/lwipopts.h | |
parent | 6df58f546db68047fe38f3809ee4f6cbff4c6f89 (diff) |
WIP making LwIP and FreeRTOS friends
Diffstat (limited to 'main/lwipopts.h')
-rw-r--r-- | main/lwipopts.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/main/lwipopts.h b/main/lwipopts.h index 75a57ee..71c85b2 100644 --- a/main/lwipopts.h +++ b/main/lwipopts.h @@ -1,13 +1,7 @@ #pragma once -// allow override in some examples -#ifndef NO_SYS -#define NO_SYS 1 -#endif - -#ifndef LWIP_SOCKET -#define LWIP_SOCKET 0 -#endif +#define NO_SYS 0 +#define LWIP_SOCKET 1 #if PICO_CYW43_ARCH_POLL #define MEM_LIBC_MALLOC 1 |