1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #16304 from iosabi/esp_gdbstub

cpu/esp8266: Fix typo in esp_gdbstub config.
This commit is contained in:
benpicco 2021-04-30 14:36:50 +02:00 committed by GitHub
commit 76cd388dd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -51,7 +51,7 @@ CFLAGS += -D__ESP_FILE__=__FILE__
ifneq (,$(filter esp_gdbstub,$(USEMODULE)))
GDBSTUB_DIR ?= $(RIOTCPU)/$(CPU)/vendor/esp-gdbstub
CFLAGS += -DGDBSTUB_BREAK_ON_INIT=1)
CFLAGS += -DGDBSTUB_BREAK_ON_INIT=1
INCLUDES += -I$(GDBSTUB_DIR)
endif