mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-12 00:55:46 +00:00
We define a variable to pickup a default for the bossa binary, however we weren't using it. Lets do so now. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
15 lines
410 B
Bash
Executable File
15 lines
410 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This script is loosly based on a script with same purpose provided
|
|
# by RIOT-OS (https://github.com/RIOT-OS/RIOT)
|
|
|
|
BOSSAC_CMD="${BOSSAC:-bossac}"
|
|
if [ `uname` = "Linux" ]; then
|
|
stty -F /dev/ttyACM0 raw ispeed 1200 ospeed 1200 cs8 \
|
|
-cstopb ignpar eol 255 eof 255
|
|
${BOSSAC_CMD} -R -e -w -v -b "${O}/${KERNEL_BIN_NAME}"
|
|
else
|
|
echo "CAUTION: No flash tool for your host system found!"
|
|
fi
|
|
|