This repository has been archived by the owner on Dec 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Makefile
244 lines (215 loc) · 9.47 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
PROJECT_NAME := secure_dfu_usb_s140_pca10056_debug
TARGETS := nrf52840_xxaa_debug
OUTPUT_DIRECTORY := _build
SDK_ROOT := nRF5_SDK
PROJ_DIR := src
$(OUTPUT_DIRECTORY)/nrf52840_xxaa_debug.out: \
LINKER_SCRIPT := secure_dfu_usb_gcc_nrf52.ld
# Source files common to all targets
SRC_FILES += \
$(PROJ_DIR)/nrf_usb_uf2.c \
$(PROJ_DIR)/nrf_dfu.c \
$(PROJ_DIR)/nrf_block_dev_uf2.c \
$(PROJ_DIR)/ghostfat.c \
$(PROJ_DIR)/main.c \
$(SDK_ROOT)/components/libraries/experimental_log/src/nrf_log_backend_rtt.c \
$(SDK_ROOT)/components/libraries/experimental_log/src/nrf_log_backend_serial.c \
$(SDK_ROOT)/components/libraries/experimental_log/src/nrf_log_default_backends.c \
$(SDK_ROOT)/components/libraries/experimental_log/src/nrf_log_frontend.c \
$(SDK_ROOT)/components/libraries/experimental_log/src/nrf_log_str_formatter.c \
$(SDK_ROOT)/components/boards/boards.c \
$(PROJ_DIR)/dfu_req_handling/dfu-cc.pb.c \
$(PROJ_DIR)/dfu_req_handling/dfu_public_key.c \
$(PROJ_DIR)/dfu_req_handling/dfu_req_handling.c \
$(SDK_ROOT)/components/libraries/util/app_error_weak.c \
$(SDK_ROOT)/components/libraries/scheduler/app_scheduler.c \
$(SDK_ROOT)/components/libraries/timer/app_timer.c \
$(SDK_ROOT)/components/libraries/usbd/class/msc/app_usbd_msc.c \
$(SDK_ROOT)/components/libraries/util/app_util_platform.c \
$(SDK_ROOT)/components/libraries/crc32/crc32.c \
$(SDK_ROOT)/components/libraries/mem_manager/mem_manager.c \
$(SDK_ROOT)/components/libraries/util/nrf_assert.c \
$(SDK_ROOT)/components/libraries/atomic_fifo/nrf_atfifo.c \
$(SDK_ROOT)/components/libraries/balloc/nrf_balloc.c \
$(SDK_ROOT)/components/libraries/block_dev/ram/nrf_block_dev_ram.c \
$(SDK_ROOT)/external/fprintf/nrf_fprintf.c \
$(SDK_ROOT)/external/fprintf/nrf_fprintf_format.c \
$(SDK_ROOT)/components/libraries/fstorage/nrf_fstorage.c \
$(SDK_ROOT)/components/libraries/fstorage/nrf_fstorage_nvmc.c \
$(SDK_ROOT)/components/libraries/experimental_memobj/nrf_memobj.c \
$(SDK_ROOT)/components/libraries/queue/nrf_queue.c \
$(SDK_ROOT)/components/libraries/experimental_section_vars/nrf_section_iter.c \
$(SDK_ROOT)/components/libraries/strerror/nrf_strerror.c \
$(SDK_ROOT)/components/libraries/sha256/sha256.c \
$(SDK_ROOT)/components/libraries/slip/slip.c \
$(SDK_ROOT)/components/libraries/usbd/app_usbd.c \
$(SDK_ROOT)/components/libraries/usbd/app_usbd_core.c \
$(SDK_ROOT)/components/libraries/usbd/app_usbd_string_desc.c \
$(SDK_ROOT)/components/drivers_nrf/clock/nrf_drv_clock.c \
$(SDK_ROOT)/components/drivers_nrf/common/nrf_drv_common.c \
$(SDK_ROOT)/components/drivers_nrf/power/nrf_drv_power.c \
$(SDK_ROOT)/components/drivers_nrf/rng/nrf_drv_rng.c \
$(SDK_ROOT)/components/drivers_nrf/systick/nrf_drv_systick.c \
$(SDK_ROOT)/components/drivers_nrf/usbd/nrf_drv_usbd.c \
$(SDK_ROOT)/components/drivers_nrf/hal/nrf_nvmc.c \
$(SDK_ROOT)/external/segger_rtt/SEGGER_RTT.c \
$(SDK_ROOT)/external/segger_rtt/SEGGER_RTT_Syscalls_GCC.c \
$(SDK_ROOT)/external/segger_rtt/SEGGER_RTT_printf.c \
$(SDK_ROOT)/components/libraries/bootloader/nrf_bootloader.c \
$(SDK_ROOT)/components/libraries/bootloader/nrf_bootloader_app_start.c \
$(SDK_ROOT)/components/libraries/bootloader/nrf_bootloader_app_start_asm.c \
$(SDK_ROOT)/components/libraries/bootloader/nrf_bootloader_info.c \
$(SDK_ROOT)/components/libraries/bootloader/dfu/nrf_dfu_flash.c \
$(SDK_ROOT)/components/libraries/bootloader/dfu/nrf_dfu_handling_error.c \
$(SDK_ROOT)/components/libraries/bootloader/dfu/nrf_dfu_mbr.c \
$(SDK_ROOT)/components/libraries/bootloader/dfu/nrf_dfu_settings.c \
$(SDK_ROOT)/components/libraries/bootloader/dfu/nrf_dfu_transport.c \
$(SDK_ROOT)/components/libraries/bootloader/dfu/nrf_dfu_utils.c \
$(SDK_ROOT)/external/nano-pb/pb_common.c \
$(SDK_ROOT)/external/nano-pb/pb_decode.c \
$(SDK_ROOT)/components/toolchain/gcc/gcc_startup_nrf52840.S \
$(SDK_ROOT)/components/toolchain/system_nrf52840.c \
$(SDK_ROOT)/components/softdevice/common/nrf_sdh.c \
$(SDK_ROOT)/components/softdevice/common/nrf_sdh_soc.c \
# Include folders common to all targets
INC_FOLDERS += \
$(PROJ_DIR)/../config \
$(SDK_ROOT)/components/drivers_nrf/rng \
$(SDK_ROOT)/components/device \
$(SDK_ROOT)/components/drivers_nrf/hal \
$(SDK_ROOT)/components/libraries/sha256 \
$(SDK_ROOT)/components/libraries/crc32 \
$(SDK_ROOT)/components/libraries/experimental_section_vars \
$(SDK_ROOT)/components/libraries/mem_manager \
$(SDK_ROOT)/components/libraries/fstorage \
$(SDK_ROOT)/components/libraries/block_dev \
$(SDK_ROOT)/components/libraries/util \
$(SDK_ROOT)/components/libraries/timer \
$(SDK_ROOT)/components/libraries/crypto/backend/nrf_crypto_sw \
$(SDK_ROOT)/components/drivers_nrf/clock \
$(SDK_ROOT)/components/libraries/atomic \
$(SDK_ROOT)/components/libraries/bootloader/dfu \
$(SDK_ROOT)/components/drivers_nrf/delay \
$(SDK_ROOT)/components/libraries/block_dev/ram \
$(SDK_ROOT)/components/libraries/usbd/config \
$(SDK_ROOT)/components/libraries/usbd/class/msc \
$(SDK_ROOT)/components/libraries/usbd \
$(SDK_ROOT)/external/segger_rtt \
$(SDK_ROOT)/components/libraries/svc \
$(SDK_ROOT)/components/libraries/scheduler \
$(SDK_ROOT)/components/libraries/strerror \
$(PROJ_DIR)/dfu_req_handling \
$(SDK_ROOT)/external/fprintf \
$(SDK_ROOT)/components/softdevice/s140/headers/nrf52 \
$(SDK_ROOT)/components/boards \
$(SDK_ROOT)/components/libraries/bootloader \
$(SDK_ROOT)/components/softdevice/s140/headers \
$(SDK_ROOT)/components/libraries/crypto \
$(SDK_ROOT)/components/toolchain \
$(SDK_ROOT)/components/libraries/slip \
$(SDK_ROOT)/components/libraries/experimental_log/src \
$(SDK_ROOT)/components/drivers_nrf/power \
$(SDK_ROOT)/components/toolchain/cmsis/include \
$(SDK_ROOT)/components/libraries/balloc \
$(SDK_ROOT)/components/libraries/atomic_fifo \
$(PROJ_DIR) \
$(SDK_ROOT)/components/drivers_nrf/systick \
$(SDK_ROOT)/components/softdevice/common \
$(SDK_ROOT)/external/nano-pb \
$(SDK_ROOT)/components/drivers_nrf/common \
$(SDK_ROOT)/components/libraries/queue \
$(SDK_ROOT)/components/libraries/experimental_log \
$(SDK_ROOT)/components/libraries/experimental_memobj \
$(SDK_ROOT)/components/drivers_nrf/usbd \
$(SDK_ROOT)/components/toolchain/gcc \
# Libraries common to all targets
LIB_FILES +=
# Optimization flags
OPT = -Os -g3
# Uncomment the line below to enable link time optimization
#OPT += -flto
# C flags common to all targets
CFLAGS += $(OPT)
CFLAGS += -DBOARD_PCA10056
CFLAGS += -DCONFIG_GPIO_AS_PINRESET
CFLAGS += -DFLOAT_ABI_HARD
CFLAGS += -DNRF52840_XXAA
CFLAGS += -DNRF_DFU_DEBUG_VERSION
CFLAGS += -DNRF_DFU_SETTINGS_VERSION=1
CFLAGS += -DNRF_SD_BLE_API_VERSION=5
CFLAGS += -DS140
CFLAGS += -DSOFTDEVICE_PRESENT
CFLAGS += -DSVC_INTERFACE_CALL_AS_NORMAL_FUNCTION
CFLAGS += -DSWI_DISABLE0
CFLAGS += -D__HEAP_SIZE=0
CFLAGS += -DAPP_USBD_MSC_ENABLED=1
CFLAGS += -mcpu=cortex-m4
CFLAGS += -mthumb -mabi=aapcs
CFLAGS += -Wall -Werror
CFLAGS += -mfloat-abi=hard -mfpu=fpv4-sp-d16
# keep every function in a separate section, this allows linker to discard unused ones
CFLAGS += -ffunction-sections -fdata-sections -fno-strict-aliasing
CFLAGS += -fno-builtin -fshort-enums -flto
# C++ flags common to all targets
CXXFLAGS += $(OPT)
# Assembler flags common to all targets
ASMFLAGS += -g3
ASMFLAGS += -mcpu=cortex-m4
ASMFLAGS += -mthumb -mabi=aapcs
ASMFLAGS += -mfloat-abi=hard -mfpu=fpv4-sp-d16
ASMFLAGS += -DBOARD_PCA10056
ASMFLAGS += -DCONFIG_GPIO_AS_PINRESET
ASMFLAGS += -DFLOAT_ABI_HARD
ASMFLAGS += -DNRF52840_XXAA
ASMFLAGS += -DNRF_DFU_DEBUG_VERSION
ASMFLAGS += -DNRF_DFU_SETTINGS_VERSION=1
ASMFLAGS += -DNRF_SD_BLE_API_VERSION=5
ASMFLAGS += -DS140
ASMFLAGS += -DSOFTDEVICE_PRESENT
ASMFLAGS += -DSVC_INTERFACE_CALL_AS_NORMAL_FUNCTION
ASMFLAGS += -DSWI_DISABLE0
ASMFLAGS += -D__HEAP_SIZE=0
# Linker flags
LDFLAGS += $(OPT)
LDFLAGS += -mthumb -mabi=aapcs -L $(TEMPLATE_PATH) -T$(LINKER_SCRIPT)
LDFLAGS += -mcpu=cortex-m4
LDFLAGS += -mfloat-abi=hard -mfpu=fpv4-sp-d16
# let linker dump unused sections
LDFLAGS += -Wl,--gc-sections
# use newlib in nano version
LDFLAGS += --specs=nano.specs
# Add standard libraries at the very end of the linker input, after all objects
# that may need symbols provided by these libraries.
LIB_FILES += -lc -lnosys -lm
.PHONY: default help
# Default target - first one defined
default: nrf52840_xxaa_debug
# Print all targets that can be built
help:
@echo following targets are available:
@echo nrf52840_xxaa_debug
@echo sdk_config - starting external tool for editing sdk_config.h
@echo flash - flashing binary
TEMPLATE_PATH := template
include $(TEMPLATE_PATH)/Makefile.common
$(foreach target, $(TARGETS), $(call define_target, $(target)))
.PHONY: flash erase
# Flash the program
flash: $(OUTPUT_DIRECTORY)/nrf52840_xxaa_debug.hex
@echo Flashing: $<
nrfjprog -f nrf52 --program $< --sectorerase
nrfjprog -f nrf52 --reset
erase:
nrfjprog -f nrf52 --eraseall
SDK_CONFIG_FILE := ../config/sdk_config.h
CMSIS_CONFIG_TOOL := $(SDK_ROOT)/external_tools/cmsisconfig/CMSIS_Configuration_Wizard.jar
sdk_config:
java -jar $(CMSIS_CONFIG_TOOL) $(SDK_CONFIG_FILE)
A15 = $(HOME)/Library/Arduino15
OPENOCD = $(A15)/packages/arduino/tools/openocd/0.10.0-arduino1-static
o: openocd
g: gdb
openocd:
$(OPENOCD)/bin/openocd -d2 -s $(OPENOCD)/share/openocd/scripts/ -c 'source [find interface/jlink.cfg]; transport select swd; source [find target/nrf52.cfg]; init; halt; '
gdb:
$(A15)/packages/arduino/tools/arm-none-eabi-gcc/4.8.3-2014q1/bin/arm-none-eabi-gdb --command=openocd.gdb _build/nrf52840_xxaa_debug.out