Moved helper scripts into tools/

This commit is contained in:
CommanderRedYT
2021-11-13 12:42:41 +01:00
parent 627c11326b
commit 7e9559fde3
6 changed files with 1 additions and 0 deletions

2
tools/bobby-app-flash Executable file
View File

@@ -0,0 +1,2 @@
#!/bin/bash
idf.py -p /dev/ttyUSB0 -b 921600 app-flash monitor

2
tools/bobby-coredump Executable file
View File

@@ -0,0 +1,2 @@
#!/bin/bash
espcoredump.py -p /dev/ttyUSB0 dbg_corefile ./build/bobbyquad_*.elf

2
tools/bobby-flash Executable file
View File

@@ -0,0 +1,2 @@
#!/bin/bash
idf.py -p /dev/ttyUSB0 -b 921600 flash monitor

2
tools/bobby-monitor Executable file
View File

@@ -0,0 +1,2 @@
#!/bin/bash
idf.py -p /dev/ttyUSB0 -b 921600 monitor

8
tools/open_ide Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
if [[ -z "$IDF_PATH" ]]
then
source export.sh --skip-source-check
fi
qtcreator "bobbycar-boardcomputer-firmware" 2>&1 >/dev/null &