diff --git a/custom_bin/changebaud.sh b/custom_bin/changebaud.sh index c514ffa..9a7a261 100644 --- a/custom_bin/changebaud.sh +++ b/custom_bin/changebaud.sh @@ -1,7 +1,7 @@ subprocess() { - echo "\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 - echo "\n" + echo -e "\n" case $baudRate in 1) selection=9600 ;; 2) selection=115200 ;; diff --git a/custom_bin/changeesp.sh b/custom_bin/changeesp.sh index 993fc36..35e9aae 100644 --- a/custom_bin/changeesp.sh +++ b/custom_bin/changeesp.sh @@ -1,5 +1,5 @@ subprocess() { - echo "\nChanging ESPTARGET\n" + echo -e "\nChanging ESPTARGET\n" echo "Set esp target (esp32, esp32s3, esp32c6, esp8266, etc)" read esp eval "$1=$esp" @@ -11,5 +11,5 @@ subprocess ret export ESPTARGET="${ret}" -echo "\nESPTARGET set to ${ESPTARGET}\n" -echo "\nAll done :3\n" \ No newline at end of file +echo -e "\nESPTARGET set to $ESPTARGET\n" +echo -e "\nAll done :3\n" \ No newline at end of file diff --git a/custom_bin/changeport.sh b/custom_bin/changeport.sh index df58aea..801c28d 100644 --- a/custom_bin/changeport.sh +++ b/custom_bin/changeport.sh @@ -23,5 +23,5 @@ subprocess ret export ESPPORT=$ret -echo "\nESPPORT set to ${ESPPORT}\n" +echo "\nESPPORT set to $ESPPORT\n" echo "\nAll done :3\n" \ No newline at end of file diff --git a/custom_bin/erase-flash b/custom_bin/erase-flash index c27c0cf..4130354 100644 --- a/custom_bin/erase-flash +++ b/custom_bin/erase-flash @@ -1,4 +1,4 @@ #!/bin/bash -echo -e "\nErasing flash on ${ESPPORT}\n" +echo -e "\nErasing flash on $ESPPORT\n" idf.py erase-flash echo -e "\nAll done :3\n" \ No newline at end of file diff --git a/custom_bin/rebuildfull b/custom_bin/rebuildfull index d3d4568..e031cb4 100644 --- a/custom_bin/rebuildfull +++ b/custom_bin/rebuildfull @@ -1,32 +1,7 @@ #!/bin/bash echo -e "\nFully Rebuildan~\n" -echo -e "\nRunning fullclean\n" - -idf.py fullclean - -echo -e "\nRunning manual delete tasks:" - -if [ -f build ]; then - echo -e "\tDeleting build dir" - rm -rf build -else - echo -e "\tNo build dir, skipping delete" -fi - -if [ -f sdkconfig ]; then - echo -e "\tDeleting sdkconfig" - rm sdkconfig -else - echo -e "\tNo sdkconfig, skipping delete" -fi - -if [ -f sdkconfig.old ]; then - echo -e "\tDeleting sdkconfig.old" - rm sdkconfig.old -else - echo -e "\tNo sdkconfig.old, skipping delete" -fi +bash fullclean echo -e "\nSetting up project for $ESPTARGET\n" idf.py set-target $ESPTARGET @@ -39,7 +14,7 @@ if [ "$wipe" == "y" ]; then echo -e "\nFlash wiped\n" fi -echo -e "\nRun menuconfig?\n" +echo -e "\nRun menuconfig y/n?\n" read menuconfig if [ "$wipe" == "y" ]; then echo -e "\n\Executing menuconfig" diff --git a/version.txt b/version.txt index 189198f..d19587a 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -61-rc3 \ No newline at end of file +61-rc3.1 \ No newline at end of file