Note: Not recommended for new designs. Use https://github.com/LairdCP/Pinnacle-100-Firmware-Manifest.
See the user guide for the MG100 here
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 master
west init -m https://github.com/LairdCP/MG100_firmware_manifest.git
# OR checkout v3.1.0 tag
west init -m https://github.com/LairdCP/MG100_firmware_manifest.git --mr v3.1.0
# OR checkout GA3 branch
west init -m https://github.com/LairdCP/MG100_firmware_manifest.git --mr GA3
# Now, pull all the source described in the manifest
west update
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.
The OOB demo uses zephyr 2.3.x, so GCC 9 is recommended. GNU Arm Embedded Toolchain: 9-2019-q4-major is recommended.
See here to setup the GNU ARM Embedded tools
If using Linux, v0.11.3 of the Zephyr SDK is recommended.