Set up dev environment

This commit is contained in:
urob 2024-08-07 14:42:55 -04:00
parent d3135baf70
commit ec499f9692
5 changed files with 207 additions and 0 deletions

28
Justfile Normal file
View file

@ -0,0 +1,28 @@
default:
@just --list --unsorted
# build firmware
build:
echo "Building firmware..."
# clear build cache
clean:
rm -rf build
# list all build targets
list:
echo "TBD"
# initialize west
init:
west init -l config
west update
west zephyr-export
# upgrade west
upgrade:
west update
# upgrade zephyr
upgrade-zephyr:
nix flake update --flake .