Skip to content

Commit

Permalink
fixup! pkg/lwip: remove esp8266 from blacklist
Browse files Browse the repository at this point in the history
  • Loading branch information
gschorcht committed Dec 15, 2019
1 parent 3a77494 commit d6aa5b8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cpu/esp8266/Makefile.include
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,6 @@ ifneq (, $(filter littlefs, $(USEMODULE)))
export RIOT_TEST_TIMEOUT = 200
endif

ifneq (,$(filter lwip,$(USEMODULE)))
# The threads for handling the ESP hardware have the priorities from 2 to 4.
# The priority of lwIP TCPIP thread should be lower than these priorities.
CFLAGS += -DTCPIP_THREAD_PRIO=5
endif

ifneq (,$(filter log_color,$(USEMODULE)))
USEMODULE += esp_log_colored
endif
Expand Down Expand Up @@ -140,6 +134,12 @@ ASFLAGS += --longcalls --text-section-literals
# thin archives trigger a reboot loop - see #12258, #12035, #12346
ARFLAGS = rcs

ifneq (,$(filter lwip,$(USEMODULE)))
# The threads for handling the ESP hardware have the priorities from 2 to 4.
# The priority of lwIP TCPIP thread should be lower than these priorities.
CFLAGS += -DTCPIP_THREAD_PRIO=5
endif

ifneq (, $(filter esp_gdbstub, $(USEMODULE)))
GDBSTUB_DIR ?= $(RIOTCPU)/$(CPU)/vendor/esp-gdbstub
CFLAGS += -DGDBSTUB_BREAK_ON_INIT=1
Expand Down

0 comments on commit d6aa5b8

Please sign in to comment.