This commit is contained in:
2025-08-18 18:49:02 -06:00
parent e6387d4d5a
commit 9e7223c1bb
6 changed files with 14 additions and 2 deletions
+1
View File
@@ -1,3 +1,4 @@
#!/bin/bash
function subprocess() { 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: " 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 read baudRate
+1
View File
@@ -1,3 +1,4 @@
#!/bin/bash
function getTargets() { function getTargets() {
tmpFile='/tmp/targets.tmp' tmpFile='/tmp/targets.tmp'
idf.py --preview --list-targets > "$tmpFile" idf.py --preview --list-targets > "$tmpFile"
+2 -1
View File
@@ -1,3 +1,4 @@
#!/bin/bash
function subprocess() { function subprocess() {
echo -e "\nChanging ESPPORT\n" echo -e "\nChanging ESPPORT\n"
echo -e "\nChecking for Serial Devices in dmesg\n" echo -e "\nChecking for Serial Devices in dmesg\n"
@@ -12,7 +13,7 @@ function subprocess() {
if [ $COUNTER -gt 0 ]; then if [ $COUNTER -gt 0 ]; then
echo -e "\nEnter TTY Number You'd Like:" echo -e "\nEnter TTY Number You'd Like:"
read tty read tty
ttyselect=$devarr[(($tty+1))] ttyselect=$devarr[$tty+1]
else else
echo -e "\nNo Serial Devices Found, Select one later with 'changeport'\n" echo -e "\nNo Serial Devices Found, Select one later with 'changeport'\n"
fi fi
+1
View File
@@ -1,3 +1,4 @@
#!/bin/bash
echo "esp-idf-tools install dir (\$ESPIDFTOOLS_INSTALLDIR): $ESPIDFTOOLS_INSTALLDIR" echo "esp-idf-tools install dir (\$ESPIDFTOOLS_INSTALLDIR): $ESPIDFTOOLS_INSTALLDIR"
echo "esp-idf-tools custom_bin dir: $ESPIDFTOOLS_INSTALLDIR/.custom_bin/" echo "esp-idf-tools custom_bin dir: $ESPIDFTOOLS_INSTALLDIR/.custom_bin/"
echo "tools:" echo "tools:"
+4
View File
@@ -0,0 +1,4 @@
#!/bin/bash
mkdir -p ~/esp
git clone --recursive https://github.com/PrincessPi3/esp-idf-tools.git ~/esp/esp-idf-tools
bash ~/esp/esp-idf-tools/esp-idf-tools-cmd.sh install install
+4
View File
@@ -5,3 +5,7 @@ interactive/install/i seems to not work properly. variable scope?
get update properly workan frong get update properly workan frong
option on the other two repos option on the other two repos
test da shit proper in bash finafrickingly lmfao test da shit proper in bash finafrickingly lmfao
changeport/changeport.sh
recheck espinfo
recheck changeesp/changeesp.sh
recheck changebaud/changebaud.sh