Porting PicoTCP WIP

This commit is contained in:
2025-10-29 14:29:06 +01:00
parent 6722f42e68
commit 815c2239fe
464 changed files with 235009 additions and 24 deletions

View File

@ -12,12 +12,21 @@ CFLAGS += -I. \
-I./std \
-I./flanterm/src \
-I$(ROOT)/share \
-I./picotcp/include \
-I./picotcp/modules \
-I./port_picotcp \
-DPRINTF_INCLUDE_CONFIG_H=1 \
-DLFS_NO_ASSERT \
-DLFS_NO_DEBUG \
-DLFS_NO_WARN \
-DLFS_NO_ERROR \
-DUACPI_BAREBONES_MODE
-DPICO_MOP2 \
-DPICO_SUPPORT_TCP \
-DPICO_SUPPORT_UDP \
-DPICO_SUPPORT_ETH \
-DPICO_SUPPORT_ICMP4 \
-DPICO_SUPPORT_IPV4 \
-DPICO_SUPPORT_MUTEX \
ifeq ($(PUTCHAR_),fb)
CFLAGS += -DPUTCHAR_=PUTCHAR_FB
@ -58,10 +67,15 @@ SRCFILES += $(call GRABSRC, \
path \
rbuf \
ipc/pipe \
ipc/netsock \
dev \
randcrypto \
time \
diskpart \
netdev \
port_picotcp \
port_picotcp/modules \
picotcp/stack \
)
CFILES := $(call GET_CFILES, $(SRCFILES))