bbe4e500c3
- Disable IDLE hook (it would wake the device up as soon as possible). - Logger task sleep for 100ms (disable logging for better battery life) - Logging is disabled by default - Apply fix for ERRATA 87 (clear FPU interrupt before going to sleep). Ports files from FreeRTOS are now in the sources (they where in the SDK before) |
||
---|---|---|
.. | ||
example | ||
.gitignore | ||
arm-gcc-toolchain.cmake | ||
CMake_nRF5x.cmake | ||
LICENSE | ||
readme.md | ||
runJLinkExe-nrf51 | ||
runJLinkExe-nrf52 | ||
runJLinkGDBServer-nrf51 | ||
runJLinkGDBServer-nrf52 | ||
runJLinkRTTClient |
cmake-nRF5x
Cmake script for projects targeting Nordic Semiconductor nRF5x series devices using the GCC toolchain from ARM.
Dependencies
The script makes use of the following tools:
- nRF5x SDK by Nordic Semiconductor - SoC specific drivers and libraries (also includes a lot of examples)
- JLink by Segger - interface software for the JLink familiy of programmers
- nrfjprog by Nordic Semiconductor - Wrapper utility around JLink
- arm-non-eabi-gcc by ARM and the GCC Team - compiler toolchain for embedded (= bare metal) ARM chips
Setup
-
Download this repo (or add as submodule) to the directory
cmake-nRF5x
in your project -
Search the SDK
example
directory for asdk_config.h
,main.c
and a linker script (normally named<project_name>_gcc_<chip familly>.ld
) that fits your chip and project needs. -
Copy the
sdk_config.h
and the projectmain.c
into a new directorysrc
. Modify them as required for your project. -
Copy the linker script into the root of your project. Rename it to just
gcc_<chip familly>.ld
For example:gcc_nrf51.ld gcc_nrf52.ld
-
Create a new
CMakeLists.txt
file at the same level. Add the project standard cmake project headerA typical file may look like this:
cmake_minimum_required(VERSION 3.6) set(NRF_TARGET "nrf52") # optional, won't be used if passing toolchain on command line (see below) if (NOT DEFINED ARM_NONE_EABI_TOOLCHAIN_PATH) set(ARM_NONE_EABI_TOOLCHAIN_PATH "/usr/local/bin") endif () set(NRF5_SDK_PATH "${CMAKE_SOURCE_DIR}/toolchains/nRF5/nRF5_SDK") set(NRFJPROG "${CMAKE_SOURCE_DIR}/toolchains/nRF5/nrfjprog/nrfjprog") include("cmake-nRF5x/CMake_nRF5x.cmake") # must be called before first project call or add_subdirectory unless passing on command line nRF5x_toolchainSetup() project(YourProjectName C ASM) nRF5x_setup() nRF5x_addAppScheduler() nRF5x_addAppFIFO() nRF5x_addAppTimer() nRF5x_addAppUART() nRF5x_addAppButton() nRF5x_addBSP(TRUE FALSE FALSE) nRF5x_addBLEGATT() nRF5x_addBLEService(ble_bas) add_definitions(-DCONFIG_GPIO_AS_PINRESET) include_directories("./src") list(APPEND SOURCE_FILES "./src/main.c") nRF5x_addExecutable(${PROJECT_NAME} "${SOURCE_FILES}")
Adjust as needed for your project.
Note: you can add
CXX
betweenC ASM
to add c++ support -
Optionally add additional libraries:
Only the most common drivers and libraries are wrapped with cmake macros.
To include BLE services, use
nRF5x_addBLEService(<service name>)
.For other SDK libraries you can use
include_directories
andlist(APPEND SDK_SOURCE_FILES ...)
to add them. For example:include_directories( "${NRF5_SDK_PATH}/<library header directory path>" ) list(APPEND SDK_SOURCE_FILES "${NRF5_SDK_PATH}/<library source file path>" )
Build
After setup you can use cmake as usual:
-
Generate the actual build files (out-of-source builds are strongly recomended):
cmake -H. -B"cmake-build" -G "Unix Makefiles"
You can optionally pass the toolchain to
cmake
when configuring:-DCMAKE_TOOLCHAIN_PATH=cmake-nRF5x/arm-gcc-toolchain.cmake
but if you do so you must ensure the toolchain binaries are available in your environment PATH (i.e. work on the command line without specifying absolute path)
-
Build your app:
cmake --build "cmake-build" --target <your project name>
Flash
In addition to the build target (named like your project) the script adds some support targets:
FLASH_SOFTDEVICE
To flash a nRF softdevice to the SoC (typically done only once for each SoC)
cmake --build "cmake-build" --target FLASH_SOFTDEVICE
FLASH_<your project name>
To flash your application (this will also rebuild your App first)
cmake --build "cmake-build" --target FLASH_<your project name>
FLASH_ERASE
To completely erase the SoC flash
cmake --build "cmake-build" --target FLASH_ERASE
JLink Applications
To start the gdb server and RTT terminal, build the target START_JLINK
:
cmake --build "cmake-build" --target START_JLINK
License
MIT for the CMake_nRF5x.cmake
file.
Please note that the nRF5x SDK by Nordic Semiconductor is covered by it's own license and shouldn't be re-distributed.