You've already forked beagleconnect-freedom
mirror of
https://github.com/beagleboard/beagleconnect-freedom.git
synced 2026-07-30 20:17:38 +00:00
12 lines
429 B
Bash
Executable File
12 lines
429 B
Bash
Executable File
#!/bin/bash -ve
|
|
#export PROJECT=${2:-build/sensortest_launchpad}
|
|
export PROJECT=${2:-build/sensortest_launchpad_2G}
|
|
export SWDIR="$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
|
|
export ZEPHYR_TOOLCHAIN_VARIANT=${ZEPHYR_TOOLCHAIN_VARIANT:-zephyr}
|
|
export ZEPHYR_SDK_INSTALL_DIR=${ZEPHYR_SDK_INSTALL_DIR:-~/zephyr-sdk-0.11.4}
|
|
export ZEPHYR_BASE=${ZEPHYR_BASE:-$SWDIR/zephyrproject/zephyr}
|
|
|
|
west flash -d $ZEPHYR_BASE/$PROJECT
|
|
|
|
|