PROJECT_NAME := uart_pca10028 TARGETS := nrf51822_xxaa OUTPUT_DIRECTORY := _build SDK_ROOT := $(PWD)/../../nRF_SDK/nRF5_SDK_12.3.0_d7731ad PROJ_DIR := $(PWD) $(OUTPUT_DIRECTORY)/nrf51822_xxaa.out: \ LINKER_SCRIPT := nrf51_xxac_softdevice.ld # Source files common to all targets SRC_FILES += \ $(PROJ_DIR)/src/main.c \ $(PROJ_DIR)/src/user_functions.c \ $(PROJ_DIR)/src/user_tasks.c \ $(SDK_ROOT)/components/toolchain/gcc/gcc_startup_nrf51.S \ $(SDK_ROOT)/components/toolchain/system_nrf51.c \ $(SDK_ROOT)/components/boards/boards.c \ $(SDK_ROOT)/components/drivers_nrf/clock/nrf_drv_clock.c \ $(SDK_ROOT)/components/drivers_nrf/power/nrf_drv_power.c \ $(SDK_ROOT)/components/drivers_nrf/common/nrf_drv_common.c \ $(SDK_ROOT)/components/drivers_nrf/uart/nrf_drv_uart.c \ $(SDK_ROOT)/components/libraries/util/app_error.c \ $(SDK_ROOT)/components/libraries/util/nrf_assert.c \ $(SDK_ROOT)/components/libraries/util/app_error_weak.c \ $(SDK_ROOT)/components/libraries/util/app_util_platform.c \ $(SDK_ROOT)/components/libraries/util/sdk_errors.c \ $(SDK_ROOT)/components/libraries/log/src/nrf_log_backend_serial.c \ $(SDK_ROOT)/components/libraries/log/src/nrf_log_frontend.c \ $(SDK_ROOT)/components/libraries/timer/app_timer_freertos.c \ $(SDK_ROOT)/components/softdevice/common/softdevice_handler/softdevice_handler.c \ $(SDK_ROOT)/external/freertos/source/tasks.c \ $(SDK_ROOT)/external/freertos/source/list.c \ $(SDK_ROOT)/external/freertos/source/timers.c \ $(SDK_ROOT)/external/freertos/source/queue.c \ $(SDK_ROOT)/external/freertos/source/portable/MemMang/heap_4.c \ $(SDK_ROOT)/external/freertos/portable/GCC/nrf51/port.c \ $(SDK_ROOT)/external/freertos/portable/CMSIS/nrf51/port_cmsis.c \ $(SDK_ROOT)/external/freertos/portable/CMSIS/nrf51/port_cmsis_systick.c # Include folders common to all targets INC_FOLDERS += \ $(PROJ_DIR) \ $(PROJ_DIR)/config \ $(PROJ_DIR)/include \ $(SDK_ROOT)/components \ $(SDK_ROOT)/components/boards \ $(SDK_ROOT)/components/ble/common \ $(SDK_ROOT)/components/ble/ble_advertising \ $(SDK_ROOT)/components/ble/nrf_ble_gatt \ $(SDK_ROOT)/components/ble/peer_manager \ $(SDK_ROOT)/components/ble/ble_services/ble_bas_c \ $(SDK_ROOT)/components/ble/ble_services/ble_hrs_c \ $(SDK_ROOT)/components/ble/ble_services/ble_bas \ $(SDK_ROOT)/components/ble/ble_services/ble_hrs \ $(SDK_ROOT)/components/ble/ble_services/ble_dis \ $(SDK_ROOT)/components/device \ $(SDK_ROOT)/components/drivers_nrf/common \ $(SDK_ROOT)/components/drivers_nrf/hal \ $(SDK_ROOT)/components/drivers_nrf/clock \ $(SDK_ROOT)/components/drivers_nrf/gpiote \ $(SDK_ROOT)/components/drivers_nrf/uart \ $(SDK_ROOT)/components/drivers_nrf/timer \ $(SDK_ROOT)/components/libraries/bsp \ $(SDK_ROOT)/components/libraries/button \ $(SDK_ROOT)/components/libraries/util \ $(SDK_ROOT)/components/libraries/log \ $(SDK_ROOT)/components/libraries/log/src \ $(SDK_ROOT)/components/libraries/timer \ $(SDK_ROOT)/components/libraries/hci \ $(SDK_ROOT)/components/libraries/fds \ $(SDK_ROOT)/components/libraries/fstorage \ $(SDK_ROOT)/components/libraries/sensorsim \ $(SDK_ROOT)/components/libraries/experimental_section_vars \ $(SDK_ROOT)/components/softdevice/s130/headers \ $(SDK_ROOT)/components/softdevice/common/softdevice_handler \ $(SDK_ROOT)/components/toolchain \ $(SDK_ROOT)/components/toolchain/cmsis/include \ $(SDK_ROOT)/external/freertos/source/include \ $(SDK_ROOT)/external/freertos/portable/GCC/nrf51 \ $(SDK_ROOT)/external/freertos/portable/CMSIS/nrf51 # Libraries common to all targets LIB_FILES += \ # C flags common to all targets CFLAGS += -mcpu=cortex-m0 CFLAGS += -mthumb -mabi=aapcs CFLAGS += -Wall -Werror -O3 -g3 CFLAGS += -mfloat-abi=soft # keep every function in separate section, this allows linker to discard unused ones CFLAGS += -ffunction-sections -fdata-sections -fno-strict-aliasing CFLAGS += -fno-builtin --short-enums CFLAGS += -DNRF51 CFLAGS += -DNRF51822 CFLAGS += -DFREERTOS CFLAGS += -DBOARD_CUSTOM CFLAGS += -DSOFTDEVICE_PRESENT CFLAGS += -DS130 CFLAGS += -DBLE_STACK_SUPPORT_REQD CFLAGS += -DNRF_SD_BLE_API_VERSION=2 # C++ flags common to all targets CXXFLAGS += \ # Assembler flags common to all targets ASMFLAGS += -x assembler-with-cpp ASMFLAGS += -DNRF51 ASMFLAGS += -DNRF51822 ASMFLAGS += -DFREERTOS ASMFLAGS += -DBOARD_CUSTOM ASMFLAGS += -DSOFTDEVICE_PRESENT ASMFLAGS += -DS130 ASMFLAGS += -DBLE_STACK_SUPPORT_REQD ASMFLAGS += -DNRF_SD_BLE_API_VERSION=2 # Linker flags LDFLAGS += -mthumb -mabi=aapcs -L $(TEMPLATE_PATH) -T$(LINKER_SCRIPT) LDFLAGS += -mcpu=cortex-m0 # let linker to dump unused sections LDFLAGS += -Wl,--gc-sections # use newlib in nano version LDFLAGS += --specs=nano.specs -lc -lnosys .PHONY: $(TARGETS) default all clean help flash # Default target - first one defined default: nrf51822_xxaa # Print all targets that can be built help: @echo following targets are available: @echo nrf51822_xxaa TEMPLATE_PATH := $(SDK_ROOT)/components/toolchain/gcc include $(TEMPLATE_PATH)/Makefile.common $(foreach target, $(TARGETS), $(call define_target, $(target))) # Flash the program flash: $(OUTPUT_DIRECTORY)/nrf51822_xxaa.hex @echo Flashing: $< nrfjprog --program $< -f nrf51 --sectorerase nrfjprog --reset -f nrf51 erase: nrfjprog --eraseall -f nrf52