mirror of
https://github.com/m5stack/M5Stack_MicroPython.git
synced 2026-05-20 10:14:44 -07:00
42 lines
1.1 KiB
Bash
Executable File
42 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
FLASH_COMPORT="/dev/ttyUSB0"
|
|
FLASH_BDRATE="460800"
|
|
|
|
get_arguments() {
|
|
POSITIONAL_ARGS=()
|
|
local key="$1"
|
|
J_OPTION=""
|
|
|
|
while [[ $# -gt 0 ]]
|
|
do
|
|
local key="$1"
|
|
case $key in
|
|
-p|--port)
|
|
FLASH_COMPORT="$2"
|
|
shift # past argument
|
|
shift # past value
|
|
;;
|
|
-b|--bdrate)
|
|
FLASH_BDRATE="$2"
|
|
shift # past argument
|
|
shift # past value
|
|
;;
|
|
*) # unknown option
|
|
local opt="$1"
|
|
if [ "${opt:0:2}" == "-j" ]; then
|
|
J_OPTION=${opt}
|
|
else
|
|
POSITIONAL_ARGS+=("$1") # save it in an array for later
|
|
fi
|
|
shift # past argument
|
|
;;
|
|
esac
|
|
done
|
|
#set -- "${POSITIONAL_ARGS[@]}" # restore positional parameters
|
|
}
|
|
|
|
get_arguments "$@"
|
|
|
|
esptool.py --chip esp32 --port ${FLASH_COMPORT} --baud ${FLASH_BDRATE} --before default_reset --after no_reset write_flash -z --flash_mode dio --flash_freq 40m --flash_size detect 0x1000 bootloader/bootloader.bin 0xf000 phy_init_data.bin 0x10000 MicroPython.bin 0x8000 partitions_mpy.bin
|