File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ set /p userInput=Do you want to flash the firmware right now? (y/N):
42
42
if /i " %userInput% " == " y" (
43
43
python -m mpremote %port_string% run firmware_updater.py
44
44
) else (
45
- echo Firmware was not flashed on the remote device.
45
+ echo The firmware will not be written to the device.
46
46
)
47
47
48
48
python -m mpremote %port_string% reset
@@ -53,4 +53,4 @@ echo Usage: %~nx0 [-p PORT] FILENAME
53
53
echo Options:
54
54
echo -p PORT Specify the device port
55
55
echo -h Display this help message
56
- exit /b 0
56
+ exit /b 0
Original file line number Diff line number Diff line change @@ -64,13 +64,13 @@ echo "Uploading $filename..."
64
64
$python_command -m mpremote $connect_string fs rm :firmware.bin
65
65
$python_command -m mpremote $connect_string fs cp $filename :firmware.bin
66
66
67
- echo " Do want to flash the firmware right now? (y/N)"
67
+ echo " Do you want to flash the firmware right now? (y/N)"
68
68
read do_flash
69
69
70
70
if [ " $do_flash " == " y" ] || [ " $do_flash " == " Y" ]; then
71
71
$python_command -m mpremote $connect_string run firmware_updater.py
72
72
else
73
- echo " Firmware was not flashed on the remote device."
73
+ echo " The firmware will not be written to the device."
74
74
fi
75
75
76
76
$python_command -m mpremote $connect_string reset
You can’t perform that action at this time.
0 commit comments