| layout | post |
|---|---|
| title | MacOS |
| parent | 1.1 Installation |
| grand_parent | 1. Zephyr Setup |
| nav_order | 1 |
- Install Homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- Use
brewto install the required dependencies
brew install cmake ninja gperf python3 ccache qemu dtc textmate
cd ~
mkdir zephyrproject
cd zephyrproject
git clone https://github.com/zephyrproject-rtos/zephyr
- Install
west
pip3 install -U west
- Add
westto path
mate etc/paths
#Add /Users/<username>/Library/Python/<version>/bin
(running pip3 show -f west shows where the binary is installed)
- Get the Zephyr source code
west init ~/zephyrproject
cd ~/zephyrproject
west update
- Export Zephyr CMake package:
west zephyr-export
(this allows CMake to automatically load boilerplate required for building Zephyr applications)
- Install additional dependencies using
pip3
pip3 install -r ~/zephyrproject/zephyr/scripts/requirements.txt
-
Download and install GNU ARM Embedded build (
.pkg) -
Set environment variables in
~/.zshenv
mate .zshenv
Add the following lines:
export ZEPHYR_TOOLCHAIN_VARIANT=GNUARMEMB
export GNUARMEMB_TOOLCHAIN_PATH=/Applications/ARM
- Restart terminal and check if environment variables are set up correctly
echo $ZEPHYR_TOOLCHAIN_VARIANT
echo $GNUARMEMB_TOOLCHAIN_PATH
The board name can be found under ~/zephyrproject/zephyr/boards
cd ~/zephyrproject/zephyr/samples/basic/blinky
west build -b <board-name> # for example: nucleo_l552ze_q
A successful build looks like this:

{: .note }
If you get a CMake error, this can usually be resolved by clearing the previous build:
rm -rf build
cd ~/zephyrproject/zephyr/samples/basic/blinky
west flash
A successful flash looks like this:
{: .warning}
Some boards will require installing an additional
pyocdpackage!For Nucleo L552ZE-Q:
pyocd pack install stm32l552zetxq(see pyocd/target_support)


