awooo
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
#!/bin/bash
|
||||
function subprocess() {
|
||||
echo -e "\nChanging ESPBAUD\n\t1: 9600\n\t2: 115200\n\t3: 230400\n\t4: 460800\n\t5: 1152000\n\t6: 1500000\n\nEnter Selection: "
|
||||
read baudRate
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
#!/bin/bash
|
||||
function getTargets() {
|
||||
tmpFile='/tmp/targets.tmp'
|
||||
idf.py --preview --list-targets > "$tmpFile"
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
#!/bin/bash
|
||||
function subprocess() {
|
||||
echo -e "\nChanging ESPPORT\n"
|
||||
echo -e "\nChecking for Serial Devices in dmesg\n"
|
||||
@@ -12,7 +13,7 @@ function subprocess() {
|
||||
if [ $COUNTER -gt 0 ]; then
|
||||
echo -e "\nEnter TTY Number You'd Like:"
|
||||
read tty
|
||||
ttyselect=$devarr[(($tty+1))]
|
||||
ttyselect=$devarr[$tty+1]
|
||||
else
|
||||
echo -e "\nNo Serial Devices Found, Select one later with 'changeport'\n"
|
||||
fi
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
#!/bin/bash
|
||||
echo "esp-idf-tools install dir (\$ESPIDFTOOLS_INSTALLDIR): $ESPIDFTOOLS_INSTALLDIR"
|
||||
echo "esp-idf-tools custom_bin dir: $ESPIDFTOOLS_INSTALLDIR/.custom_bin/"
|
||||
echo "tools:"
|
||||
|
||||
Reference in New Issue
Block a user