Fix indentation and default value for PLATFORM
This commit is contained in:
parent
da049fd8ad
commit
683cd692ae
1 changed files with 10 additions and 9 deletions
|
|
@ -1,10 +1,11 @@
|
|||
# Supported platforms:
|
||||
# * E73_2G4M08S1C (nrf2480, default)
|
||||
# * E73_2G4M08S1E (nrf2833)
|
||||
# note: the missing whitespace after the = is on purpose here
|
||||
PLATFORM ?=E73_2G4M08S1C
|
||||
|
||||
ifeq ($(PLATFORM),E73_2G4M08S1E)
|
||||
SRC_FILES += \
|
||||
SRC_FILES := \
|
||||
$(SDK_ROOT)/modules/nrfx/mdk/gcc_startup_nrf52833.S \
|
||||
$(SDK_ROOT)/modules/nrfx/mdk/system_nrf52833.c
|
||||
TARGETS := nrf52833_xxaa
|
||||
|
|
@ -14,7 +15,7 @@ ifeq ($(PLATFORM), E73_2G4M08S1E)
|
|||
HEAP_SIZE := 2048
|
||||
STACK_SIZE := 2048
|
||||
else ifeq ($(PLATFORM),E73_2G4M08S1C)
|
||||
SRC_FILES += \
|
||||
SRC_FILES := \
|
||||
$(SDK_ROOT)/modules/nrfx/mdk/gcc_startup_nrf52840.S \
|
||||
$(SDK_ROOT)/modules/nrfx/mdk/system_nrf52840.c
|
||||
TARGETS := nrf52840_xxaa
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue