Files
Forairaaaaa c0d5b7faca fix
2024-04-10 10:25:18 +08:00

23 lines
336 B
Bash
Executable File

#!/bin/bash
# Configs
IDF_PATH=$HOME/esp/esp-idf-v5.1.3/
SERIAL_PORT=/dev/ttyACM0
# Help shit
help() {
sed -rn 's/^### ?//;T;p' "$0"
}
if [[ "$1" == "-h" ]] || [[ "$1" == "--help" ]]; then
help
exit 1
fi
# Get idf
. ${IDF_PATH}/export.sh
# Build and flash and monitor
idf.py -p ${SERIAL_PORT} flash -b 1500000 monitor