change comment style
This commit is contained in:
parent
98271c9f56
commit
c0f75b21b0
50
Makefile
50
Makefile
@ -1,11 +1,11 @@
|
||||
#******************************************************************************
|
||||
#------------------------------------------------------------------------------
|
||||
# CONFIGURE
|
||||
# - SDK_PATH : path to SDK directory
|
||||
#
|
||||
# - SD_NAME : e.g s132, s140
|
||||
# - SD_VERSION : SoftDevice version e.g 6.0.0
|
||||
# - SD_HEX : to bootloader hex binary
|
||||
#******************************************************************************
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
SDK_PATH = lib/sdk/components
|
||||
SDK11_PATH = lib/sdk11/components
|
||||
@ -31,9 +31,9 @@ OUT_FILE = $(BOARD)_bootloader-$(GIT_VERSION)
|
||||
# merged file = compiled + sd
|
||||
MERGED_FILE = $(OUT_FILE)_$(SD_NAME)_$(SD_VERSION)
|
||||
|
||||
#******************************************************************************
|
||||
#------------------------------------------------------------------------------
|
||||
# Tool configure
|
||||
#******************************************************************************
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
# Toolchain commands
|
||||
# Should be added to your PATH
|
||||
@ -88,9 +88,9 @@ else
|
||||
$(error Sub Variant $(MCU_SUB_VARIANT) is unknown)
|
||||
endif
|
||||
|
||||
#******************************************************************************
|
||||
#------------------------------------------------------------------------------
|
||||
# SOURCE FILES
|
||||
#******************************************************************************
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
# all files in src
|
||||
C_SRC += $(wildcard src/*.c)
|
||||
@ -110,11 +110,9 @@ C_SRC += $(SDK11_PATH)/libraries/bootloader_dfu/bootloader_util.c
|
||||
C_SRC += $(SDK11_PATH)/libraries/bootloader_dfu/dfu_transport_serial.c
|
||||
C_SRC += $(SDK11_PATH)/libraries/bootloader_dfu/dfu_transport_ble.c
|
||||
C_SRC += $(SDK11_PATH)/libraries/bootloader_dfu/dfu_single_bank.c
|
||||
|
||||
C_SRC += $(SDK11_PATH)/drivers_nrf/pstorage/pstorage_raw.c
|
||||
|
||||
C_SRC += $(SDK11_PATH)/ble/ble_services/ble_dfu/ble_dfu.c
|
||||
C_SRC += $(SDK11_PATH)/ble/ble_services/ble_dis/ble_dis.c
|
||||
C_SRC += $(SDK11_PATH)/drivers_nrf/pstorage/pstorage_raw.c
|
||||
|
||||
# Latest SDK files: peripheral drivers
|
||||
C_SRC += $(SDK_PATH)/libraries/timer/app_timer.c
|
||||
@ -155,14 +153,14 @@ C_SRC += $(TUSB_PATH)/tusb.c
|
||||
endif
|
||||
|
||||
|
||||
#******************************************************************************
|
||||
#------------------------------------------------------------------------------
|
||||
# Assembly Files
|
||||
#******************************************************************************
|
||||
#------------------------------------------------------------------------------
|
||||
ASM_SRC = $(NRFX_PATH)/mdk/gcc_startup_$(MCU_SUB_VARIANT).S
|
||||
|
||||
#******************************************************************************
|
||||
#------------------------------------------------------------------------------
|
||||
# INCLUDE PATH
|
||||
#******************************************************************************
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
# src
|
||||
IPATH += src
|
||||
@ -202,10 +200,9 @@ IPATH += $(SD_API_PATH)/include/nrf52
|
||||
|
||||
INC_PATHS = $(addprefix -I,$(IPATH))
|
||||
|
||||
#******************************************************************************
|
||||
#------------------------------------------------------------------------------
|
||||
# Compiler Flags
|
||||
# - Additional compiler flags
|
||||
#******************************************************************************
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
# Debugging/Optimization
|
||||
ifeq ($(DEBUG), 1)
|
||||
@ -252,10 +249,9 @@ _VER = $(subst ., ,$(word 1, $(subst -, ,$(GIT_VERSION))))
|
||||
CFLAGS += -DMK_BOOTLOADER_VERSION='($(word 1,$(_VER)) << 16) + ($(word 2,$(_VER)) << 8) + $(word 3,$(_VER))'
|
||||
|
||||
|
||||
#******************************************************************************
|
||||
#------------------------------------------------------------------------------
|
||||
# Linker Flags
|
||||
#
|
||||
#******************************************************************************
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
LDFLAGS += \
|
||||
$(CFLAGS) \
|
||||
@ -265,10 +261,9 @@ LDFLAGS += \
|
||||
|
||||
LIBS += -lm -lc
|
||||
|
||||
#******************************************************************************
|
||||
#------------------------------------------------------------------------------
|
||||
# Assembler flags
|
||||
#
|
||||
#******************************************************************************
|
||||
#------------------------------------------------------------------------------
|
||||
ASFLAGS += $(CFLAGS)
|
||||
|
||||
|
||||
@ -288,9 +283,9 @@ vpath %.S $(ASM_PATHS)
|
||||
|
||||
OBJECTS = $(C_OBJECTS) $(ASM_OBJECTS)
|
||||
|
||||
#******************************************************************************
|
||||
#------------------------------------------------------------------------------
|
||||
# BUILD TARGETS
|
||||
#******************************************************************************
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
# Verbose mode (V=). 0: default, 1: print out CFLAG, LDFLAG 2: print all compile command
|
||||
ifeq ("$(V)","1")
|
||||
@ -307,7 +302,7 @@ endif
|
||||
# default target to build
|
||||
all: $(BUILD)/$(OUT_FILE)-nosd.out size
|
||||
|
||||
#******************* Flash target *******************
|
||||
#------------------- Flash target -------------------
|
||||
|
||||
check_defined = \
|
||||
$(strip $(foreach 1,$1, \
|
||||
@ -340,7 +335,7 @@ gdbflash: $(BUILD)/$(MERGED_FILE).hex
|
||||
gdb: $(BUILD)/$(OUT_FILE)-nosd.out
|
||||
$(GDB_BMP) $<
|
||||
|
||||
#******************* Compile rules *******************
|
||||
#------------------- Compile rules -------------------
|
||||
|
||||
## Create build directories
|
||||
$(BUILD):
|
||||
@ -369,8 +364,7 @@ size: $(BUILD)/$(OUT_FILE)-nosd.out
|
||||
@$(SIZE) $<
|
||||
-@echo ''
|
||||
|
||||
|
||||
#******************* Binary generator *******************
|
||||
#------------------- Binary generator -------------------
|
||||
.phony: genhex genpkg
|
||||
|
||||
## Create binary .hex file from the .out file
|
||||
|
Loading…
Reference in New Issue
Block a user