File tree Expand file tree Collapse file tree 8 files changed +538
-0
lines changed
examples/lwip_ethernet_tap Expand file tree Collapse file tree 8 files changed +538
-0
lines changed Original file line number Diff line number Diff line change 1010[submodule "RadioLib/RadioLib "]
1111 path = RadioLib/RadioLib
1212 url = https://github.com/jgromes/RadioLib.git
13+ [submodule "lwip/lwip "]
14+ path = lwip/lwip
15+ url = https://git.savannah.gnu.org/git/lwip.git
Original file line number Diff line number Diff line change 1+ # Makefile for LwIP TAP network example application
2+
3+ # The default application stack and heap size allocations are not
4+ # nearly sufficient for LwIP. While smaller limits may well work,
5+ # these have been tested to work *shrug*.
6+ STACK_SIZE =32768
7+ APP_HEAP_SIZE =32768
8+
9+ # Specify this directory relative to the current application.
10+ TOCK_USERLAND_BASE_DIR = ../..
11+
12+ # Which files to compile.
13+ C_SRCS := $(wildcard * .c)
14+
15+ # External libraries used
16+ EXTERN_LIBS += $(TOCK_USERLAND_BASE_DIR ) /lwip
17+
18+ # Include userland master makefile. Contains rules and flags for actually
19+ # building the application.
20+ include $(TOCK_USERLAND_BASE_DIR ) /AppMakefile.mk
You can’t perform that action at this time.
0 commit comments