Pinnacle 100 Firmware Manifest Repo
Using the Firmware
See the user guide for the firmware here
Cloning Firmware
WARNING: On Windows do not clone into a starting folder path longer than 12 characters or else the firmware will not build.
This is a Zephyr west
manifest repository. To learn more about west
see here.
To clone this repository properly use the west
tool. To install west
you will first need Python3.
Install west
using pip3
:
# Linux
pip3 install --user -U west
# macOS (Terminal) and Windows (cmd.exe)
pip3 install -U west
Once west
is installed, clone this repository using west init
and west update
:
# Checkout the latest manifest on main
west init -m https://github.com/LairdCP/Pinnacle-100-Firmware-Manifest.git --mr main
# OR checkout the 6.4.1 release
west init -m https://github.com/LairdCP/Pinnacle-100-Firmware-Manifest.git --mr v6.4.1
# Now, pull all the source described in the manifest
west update
Preparing to Build
If this is your first time working with a Zephyr project on your computer you should follow the Zephyr getting started guide to install all the tools.
v0.14.2 of the Zephyr SDK is recommended for building the demo.
Building the Firmware
WARNING: Before building the firmware, be sure to install all dependencies using the
nrf/scripts/requirements.txt
From the directory where you ran west update
, issue the following command:
# Linux
pip3 install --user -r nrf/scripts/requirements.txt
# macOS and Windows
pip3 install -r nrf/scripts/requirements.txt