Files
2026-05-26 20:30:40 -06:00

9 lines
221 B
Bash
Executable File

#!/bin/bash
if [ ! -d build ]; then
echo -e "\nNot set up! Setting up for $ESPTARGET on $ESPPORT at $ESPBAUD baud\n"
setup
fi
echo -e "\nRunning Menuconfig\n"
idf.py --preview menuconfig
echo -e "\nAll done :3\n"