2016-04-12 18:07:25 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
if [ $# -ne 1 ]; then
|
|
|
|
echo "One parameter required: the device of the serial interface"
|
|
|
|
echo "$0 <device>"
|
|
|
|
echo "e.g.:"
|
2020-12-07 20:02:01 +01:00
|
|
|
echo "$0 /dev/ttyUSB0"
|
2016-04-12 18:07:25 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
DEVICE=$1
|
2016-06-18 19:11:52 +02:00
|
|
|
#BAUD="--baud 57600"
|
|
|
|
#BAUD="--baud 921600"
|
2016-04-12 18:07:25 +02:00
|
|
|
|
|
|
|
# check the serial connection
|
|
|
|
|
2020-12-07 20:02:01 +01:00
|
|
|
if [ ! -c $DEVICE ]; then
|
|
|
|
echo "$DEVICE does not exist"
|
2016-04-12 18:07:25 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -f esptool.py ]; then
|
|
|
|
echo "Cannot found the required tool:"
|
|
|
|
echo "esptool.py"
|
|
|
|
exit 1
|
|
|
|
fi
|
2020-12-07 20:02:01 +01:00
|
|
|
python3 esptool.py --port $DEVICE $BAUD read_mac
|
2016-04-12 18:07:25 +02:00
|
|
|
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo "Error reading the MAC -> set the device into the bootloader!"
|
|
|
|
exit 1
|
|
|
|
fi
|
2019-03-08 21:30:21 +01:00
|
|
|
echo "Flashing the new"
|
2020-12-07 20:02:01 +01:00
|
|
|
#python3 esptool.py --port $DEVICE $BAUD write_flash -fm dio 0x00000 nodemcu2.bin
|
|
|
|
python3 esptool.py --port $DEVICE write_flash -fm dio 0x00000 0x00000.bin 0x10000 0x10000.bin 0x3fc000 esp_init_data_default.bin
|