This repository provides MicroPython builds for BeagleBoard.org boards.
If this is your first time using zephyr, Install Zephyr SDK before following the steps below.
- Create a workspace folder:
mkdir micropython-workspace
cd micropython-workspace- Setup virtualenv
python -m venv .venv
source .venv/bin/activate
pip install west cc1352-flasher- Setup Zephyr app:
west init -m https://github.com/beagleboard/micropython-builder.git --mf upstream_boards/west.yml .
west update- Install python deps
west packages pip --installwest build -p -b ${BOARD} modules/lib/micropython/ports/zephyr -d buildwest flash