浏览代码

Adding some convenience scripts used in manufacturing.

simple
Jacob Alexander 9 年前
父节点
当前提交
762e75d875
共有 2 个文件被更改,包括 24 次插入0 次删除
  1. 18
    0
      Bootloader/Scripts/easyMode.bash
  2. 6
    0
      Bootloader/Scripts/ledTest.bash

+ 18
- 0
Bootloader/Scripts/easyMode.bash 查看文件

@@ -0,0 +1,18 @@
#!/bin/bash

# Just in case there was an extra ledTest.bash (don't care if error)
rm /dev/ttyACM0

./swdLoad.bash kiibohd_manufacturing_2014-11-16.bin 0

echo "Press CTRL+C to Continue"

while true; do
sleep 1
if [ -e /dev/ttyACM0 ]; then
./ledTest.bash
fi
done

exit 0


+ 6
- 0
Bootloader/Scripts/ledTest.bash 查看文件

@@ -0,0 +1,6 @@
#!/bin/bash

printf "led\r" > /dev/ttyACM0

exit 0