Files
esp-idf-tools/custom_bin/menuconfig
T
2025-10-10 14:27:30 -06:00

9 lines
221 B
Bash

#!/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"