90 lines
2.5 KiB
Plaintext
90 lines
2.5 KiB
Plaintext
|
|
|
|
|
|
###############################################
|
|
# begin esp-idf stuffss I made ################
|
|
###############################################
|
|
|
|
function getTargets() {
|
|
tmpFile='/tmp/targets.tmp'
|
|
idf.py --list-targets > "$tmpFile"
|
|
tr '\n' ' ' < "$tmpFile"
|
|
rm "$tmpFile"
|
|
}
|
|
|
|
echo -e "\n=======CUSTOM=======\n"
|
|
|
|
versionData=versionDataTAG
|
|
commitHash=commitTAG
|
|
installDate=installDateTAG
|
|
branchData=branchDataTAG
|
|
|
|
if [ -z $ESPIDTOOLS_INSTALLDIR ]; then
|
|
echo -e "\nFAIL: ESPIDFTOOLS_INSTALLDIR environment variable not found!\nReinstall via script or manually add to ~/.zshrc\n"
|
|
exit
|
|
fi
|
|
|
|
binDir="$ESPIDFTOOLS_INSTALLDIR/.custom_bin"
|
|
|
|
echo -e "\nTTY devices found in dmesg:"
|
|
COUNTER=0
|
|
devarr=()
|
|
for line in $(dmesg | tail -50 | grep -o -E "tty[A-Z]{3}[0-9]{0,2}" | sort -u); do
|
|
echo -e "$COUNTER /dev/$line"
|
|
devarr+=("/dev/$line")
|
|
COUNTER=$((COUNTER+1))
|
|
done
|
|
|
|
echo -e "\nEnter TTY Number You'd Like:"
|
|
read tty
|
|
ttyselect=$devarr[(($tty+1))]
|
|
|
|
echo -e "Set esp target:\n\tOne of: $(getTargets)"
|
|
read esp
|
|
|
|
# echo -e "\nSetting environment variables\n"
|
|
export PATH="$ESPIDFTOOLS_INSTALLDIR/.custom_bin:$PATH"
|
|
export ESPPORT=$ttyselect
|
|
export ESPBAUD=460800
|
|
export ESPTARGET=$esp
|
|
export examples="$ESPIDFTOOLS_INSTALLDIR/esp-idf/examples"
|
|
|
|
echo -e "Installation Variables:"
|
|
tail -1 "$ESPIDFTOOLS_INSTALLDIR/version-data.log"
|
|
echo -e "\tesp-idf-toolsversion: $versionData"
|
|
echo -e "\tesp-idf version: $ESP_IDF_VERSION"
|
|
echo -e "\tcommmit hash: $commitHash"
|
|
echo -e "\tbranch: $branchData"
|
|
|
|
echo -e "\tinstall date: $installDate\n"
|
|
|
|
echo -e "\nEnvironment Variables:"
|
|
echo -e "\tESPBAUD = $ESPBAUD"
|
|
echo -e "\tESPTARGET = $ESPTARGET"
|
|
echo -e "\tESPPORT = $ESPPORT"
|
|
echo -e "\tESPIDFTOOLS_INSTALLDIR = $ESPIDFTOOLS_INSTALLDIR"
|
|
echo -e "\tESP_IDF_VERSION = $ESP_IDF_VERSION"
|
|
echo -e "\tbinDir = $binDir"
|
|
echo -e "\texamples = $examples"
|
|
|
|
echo -e "\nSetting alias"
|
|
alias changeport="source $binDir/changeport.sh"
|
|
alias changebaud="source $binDir/changebaud.sh"
|
|
alias changeesp="source $binDir/changeesp.sh"
|
|
alias exit-esp-tools="source $binDir/exit-esp-tools.sh"
|
|
|
|
# echo -e "Changing dir to $ESPIDFTOOLS_INSTALLDIR"
|
|
# cd $ESPIDFTOOLS_INSTALLDIR
|
|
|
|
echo -e "\nesp-idf version: $ESP_IDF_VERSION commit $commitHash from branch $branchData"
|
|
|
|
echo -e "\nrun with 'get-esp-tools'"
|
|
|
|
echo -e "\nWelcome to esp-idf!\nAll done :3\n"
|
|
|
|
###############################################
|
|
# end esp-idf stuffss I made ##################
|
|
###############################################
|
|
|
|
|