mirror of
https://github.com/meshtastic/firmware.git
synced 2026-09-16 08:30:04 -04:00
* fix(bin): correct filename check and esptool v5 subcommands in .bat installers device-install.bat rejected every valid firmware-*.factory.bin name. The substring-strip comparison was negated, so it errored when the suffix was present instead of when it was absent. Both scripts hardcoded esptool subcommand spellings. device-install.bat used the v4 underscore forms only. device-update.bat used the v5 write-flash with the v4 read_flash_status, so it worked fully on neither version. Probe the help output once and select the spelling, mirroring bin/device-install.sh. The probe uses %ESPTOOL_CMD% rather than !ESPTOOL_CMD! because cmd does not split a delayed-expanded command token carrying a path into program and arguments. Fixes #8156 * fix(bin): make the -P interpreter option work in the .bat installers Both scripts invoked ESPTOOL_CMD through delayed expansion. cmd does not split a delayed-expanded command token that carries a path into program and arguments, so "-P C:\path\python.exe" exited 9009 and the scripts reported "esptool not found". Use %ESPTOOL_CMD% at the two command positions per file. device-update.bat additionally wrapped the interpreter in doubled quotes, which made python treat python.exe as a source file. Quote the path once, as device-install.bat does, so interpreter paths containing spaces also work. * fix(bin): anchor the .factory.bin suffix check and harden esptool detection The filename check matched .factory.bin anywhere in the name, so firmware-x.factory.bin.bak passed and the script then derived firmware-x.bak.mt.json for metadata. Compare the last 12 characters instead, matching the anchored glob in bin/device-install.sh. A quoted interpreter path that does not exist returns 3 rather than 9009, so the missing-esptool check skipped it and the script died at the probe with no message. Treat 3 as missing as well. device-update.bat read %ERRORLEVEL% after a CALL that overwrote it, so the missing-esptool check never fired. Capture the exit code before logging it.
214 lines
7.3 KiB
Batchfile
Executable File
214 lines
7.3 KiB
Batchfile
Executable File
@ECHO OFF
|
|
SETLOCAL EnableDelayedExpansion
|
|
TITLE Meshtastic device-update
|
|
|
|
SET "SCRIPT_NAME=%~nx0"
|
|
SET "DEBUG=0"
|
|
SET "PYTHON="
|
|
SET "ESPTOOL_BAUD=115200"
|
|
SET "RESET_BAUD=1200"
|
|
SET "UPDATE_OFFSET=0x10000"
|
|
SET "ESPTOOL_CMD="
|
|
SET "LOGCOUNTER=0"
|
|
SET "CHANGE_MODE=0"
|
|
|
|
GOTO getopts
|
|
:help
|
|
ECHO Flash image file to device, but leave existing system intact.
|
|
ECHO.
|
|
ECHO Usage: %SCRIPT_NAME% -f filename [-p PORT] [-P python] [--change-mode]
|
|
ECHO.
|
|
ECHO Options:
|
|
ECHO -f filename The update .bin file to flash. Custom to your device type and region. (required)
|
|
ECHO The file must be located in this current directory.
|
|
ECHO -p PORT Set the environment variable for ESPTOOL_PORT.
|
|
ECHO If not set, ESPTOOL iterates all ports (Dangerous).
|
|
ECHO -P python Specify alternate python interpreter to use to invoke esptool. (default: python)
|
|
ECHO If supplied the script will use python.
|
|
ECHO If not supplied the script will try to find esptool in Path.
|
|
ECHO --change-mode Attempt to place the device in correct mode. (1200bps Reset)
|
|
ECHO Some hardware requires this twice.
|
|
ECHO.
|
|
ECHO Example: %SCRIPT_NAME% -p COM17 --change-mode
|
|
ECHO Example: %SCRIPT_NAME% -f firmware-t-deck-tft-2.6.0.0b106d4.bin -p COM11
|
|
GOTO eof
|
|
|
|
:version
|
|
ECHO %SCRIPT_NAME% [Version 2.7.0]
|
|
ECHO Meshtastic
|
|
GOTO eof
|
|
|
|
:getopts
|
|
IF "%~1"=="" GOTO endopts
|
|
IF /I "%~1"=="-?" GOTO help
|
|
IF /I "%~1"=="-h" GOTO help
|
|
IF /I "%~1"=="--help" GOTO help
|
|
IF /I "%~1"=="-v" GOTO version
|
|
IF /I "%~1"=="--version" GOTO version
|
|
IF /I "%~1"=="--debug" SET "DEBUG=1" & CALL :LOG_MESSAGE DEBUG "DEBUG mode: enabled."
|
|
IF /I "%~1"=="-f" SET "FILENAME=%~2" & SHIFT
|
|
IF "%~1"=="-p" SET "ESPTOOL_PORT=%~2" & SHIFT
|
|
IF /I "%~1"=="--port" SET "ESPTOOL_PORT=%~2" & SHIFT
|
|
IF "%~1"=="-P" SET "PYTHON=%~2" & SHIFT
|
|
IF /I "%~1"=="--change-mode" SET "CHANGE_MODE=1"
|
|
SHIFT
|
|
GOTO getopts
|
|
:endopts
|
|
|
|
IF %CHANGE_MODE% EQU 1 GOTO skip-filename
|
|
|
|
CALL :LOG_MESSAGE DEBUG "Checking FILENAME parameter..."
|
|
IF "__!FILENAME!__"=="____" (
|
|
CALL :LOG_MESSAGE DEBUG "Missing -f filename input."
|
|
GOTO help
|
|
) ELSE (
|
|
CALL :LOG_MESSAGE DEBUG "Filename: !FILENAME!"
|
|
IF NOT "__!FILENAME: =!__"=="__!FILENAME!__" (
|
|
CALL :LOG_MESSAGE ERROR "Filename containing spaces are not supported."
|
|
GOTO help
|
|
)
|
|
@REM Remove ".\" or "./" file prefix if present.
|
|
SET "FILENAME=!FILENAME:.\=!"
|
|
SET "FILENAME=!FILENAME:./=!"
|
|
)
|
|
|
|
CALL :LOG_MESSAGE DEBUG "Checking if !FILENAME! exists..."
|
|
IF NOT EXIST !FILENAME! (
|
|
CALL :LOG_MESSAGE ERROR "File does not exist: !FILENAME!. Terminating."
|
|
GOTO eof
|
|
)
|
|
|
|
IF NOT "__!FILENAME:.factory.bin=!__"=="__!FILENAME!__" (
|
|
CALL :LOG_MESSAGE DEBUG "We are working with a *.factory.bin* file. !FILENAME!"
|
|
CALL :LOG_MESSAGE INFO "Use script device-install.bat to flash !FILENAME!."
|
|
GOTO eof
|
|
) ELSE (
|
|
CALL :LOG_MESSAGE DEBUG "We are not working with a *.factory.bin* file. !FILENAME!"
|
|
)
|
|
|
|
:skip-filename
|
|
|
|
CALL :LOG_MESSAGE DEBUG "Determine the correct esptool command to use..."
|
|
IF NOT "__%PYTHON%__"=="____" (
|
|
SET "ESPTOOL_CMD="!PYTHON!" -m esptool"
|
|
CALL :LOG_MESSAGE DEBUG "Python interpreter supplied."
|
|
) ELSE (
|
|
CALL :LOG_MESSAGE DEBUG "Python interpreter NOT supplied. Looking for esptool..."
|
|
WHERE esptool >nul 2>&1
|
|
IF %ERRORLEVEL% EQU 0 (
|
|
@REM WHERE exits with code 0 if esptool is found.
|
|
SET "ESPTOOL_CMD=esptool"
|
|
) ELSE (
|
|
SET "ESPTOOL_CMD=python -m esptool"
|
|
CALL :RESET_ERROR
|
|
)
|
|
)
|
|
|
|
CALL :LOG_MESSAGE DEBUG "Checking esptool command !ESPTOOL_CMD!..."
|
|
@REM %VAR% not !VAR!: cmd will not split a delayed-expanded command token that
|
|
@REM carries a path, so the "python -m esptool" form never starts.
|
|
%ESPTOOL_CMD% >nul 2>&1
|
|
SET "ESPTOOL_EXIT=!ERRORLEVEL!"
|
|
CALL :LOG_MESSAGE DEBUG "esptool exit code: !ESPTOOL_EXIT!"
|
|
@REM 9009 = command not found, 3 = bad path from -P. Both mean unusable.
|
|
IF !ESPTOOL_EXIT! EQU 3 SET "ESPTOOL_EXIT=9009"
|
|
IF !ESPTOOL_EXIT! EQU 9009 (
|
|
CALL :LOG_MESSAGE ERROR "esptool not found: !ESPTOOL_CMD!"
|
|
EXIT /B 1
|
|
)
|
|
|
|
@REM esptool v5 renamed subcommands to dashes; older versions only take underscores.
|
|
@REM Probe here: the --debug and --port rewrites below leave ESPTOOL_CMD unusable.
|
|
SET "ESPTOOL_WRITE_FLASH=write_flash"
|
|
SET "ESPTOOL_ERASE_FLASH=erase_flash"
|
|
SET "ESPTOOL_READ_FLASH_STATUS=read_flash_status"
|
|
%ESPTOOL_CMD% 2>&1 | findstr /C:"write-flash" >nul
|
|
IF !ERRORLEVEL! EQU 0 (
|
|
SET "ESPTOOL_WRITE_FLASH=write-flash"
|
|
SET "ESPTOOL_ERASE_FLASH=erase-flash"
|
|
SET "ESPTOOL_READ_FLASH_STATUS=read-flash-status"
|
|
)
|
|
CALL :RESET_ERROR
|
|
CALL :LOG_MESSAGE DEBUG "Using esptool write command: !ESPTOOL_WRITE_FLASH!"
|
|
|
|
IF %DEBUG% EQU 1 (
|
|
CALL :LOG_MESSAGE DEBUG "Skipping ESPTOOL_CMD steps."
|
|
SET "ESPTOOL_CMD=REM !ESPTOOL_CMD!"
|
|
)
|
|
|
|
CALL :LOG_MESSAGE DEBUG "Using esptool command: !ESPTOOL_CMD!"
|
|
IF "__!ESPTOOL_PORT!__" == "____" (
|
|
CALL :LOG_MESSAGE WARN "Using esptool port: UNSET."
|
|
) ELSE (
|
|
SET "ESPTOOL_CMD=!ESPTOOL_CMD! --port !ESPTOOL_PORT!"
|
|
CALL :LOG_MESSAGE INFO "Using esptool port: !ESPTOOL_PORT!."
|
|
)
|
|
CALL :LOG_MESSAGE INFO "Using esptool baud: !ESPTOOL_BAUD!."
|
|
|
|
IF %CHANGE_MODE% EQU 1 (
|
|
@REM Attempt to change mode via 1200bps Reset.
|
|
CALL :RUN_ESPTOOL !RESET_BAUD! --after no_reset !ESPTOOL_READ_FLASH_STATUS!
|
|
GOTO eof
|
|
)
|
|
|
|
@REM Flashing operations.
|
|
CALL :LOG_MESSAGE INFO "Trying to flash update "!FILENAME!" at OFFSET !UPDATE_OFFSET!..."
|
|
CALL :RUN_ESPTOOL !ESPTOOL_BAUD! !ESPTOOL_WRITE_FLASH! !UPDATE_OFFSET! "!FILENAME!" || GOTO eof
|
|
|
|
CALL :LOG_MESSAGE INFO "Script complete!."
|
|
|
|
:eof
|
|
ENDLOCAL
|
|
EXIT /B %ERRORLEVEL%
|
|
|
|
|
|
:RUN_ESPTOOL
|
|
@REM Subroutine used to run ESPTOOL_CMD with arguments.
|
|
@REM Also handles %ERRORLEVEL%.
|
|
@REM CALL :RUN_ESPTOOL [Baud] [erase-flash|write-flash] [OFFSET] [Filename]
|
|
@REM.
|
|
@REM Example:: CALL :RUN_ESPTOOL 115200 write-flash 0x10000 "firmwarefile.bin"
|
|
IF %DEBUG% EQU 1 CALL :LOG_MESSAGE DEBUG "About to run command: !ESPTOOL_CMD! --baud %~1 %~2 %~3 %~4"
|
|
CALL :RESET_ERROR
|
|
%ESPTOOL_CMD% --baud %~1 %~2 %~3 %~4
|
|
IF %CHANGE_MODE% EQU 1 GOTO :eof
|
|
IF %ERRORLEVEL% NEQ 0 (
|
|
CALL :LOG_MESSAGE ERROR "Error running command: !ESPTOOL_CMD! --baud %~1 %~2 %~3 %~4"
|
|
EXIT /B %ERRORLEVEL%
|
|
)
|
|
GOTO :eof
|
|
|
|
:LOG_MESSAGE
|
|
@REM Subroutine used to print log messages in four different levels.
|
|
@REM DEBUG messages only get printed if [-d] flag is passed to script.
|
|
@REM CALL :LOG_MESSAGE [ERROR|INFO|WARN|DEBUG] "Message"
|
|
@REM.
|
|
@REM Example:: CALL :LOG_MESSAGE INFO "Message."
|
|
SET /A LOGCOUNTER=LOGCOUNTER+1
|
|
IF "%1" == "ERROR" CALL :GET_TIMESTAMP & ECHO [91m%1 [0m[37m^| !TIMESTAMP! !LOGCOUNTER! [0m[91m%~2[0m
|
|
IF "%1" == "INFO" CALL :GET_TIMESTAMP & ECHO [32m%1 [0m[37m^| !TIMESTAMP! !LOGCOUNTER! [0m[32m%~2[0m
|
|
IF "%1" == "WARN" CALL :GET_TIMESTAMP & ECHO [33m%1 [0m[37m^| !TIMESTAMP! !LOGCOUNTER! [0m[33m%~2[0m
|
|
IF "%1" == "DEBUG" IF %DEBUG% EQU 1 CALL :GET_TIMESTAMP & ECHO [34m%1 [0m[37m^| !TIMESTAMP! !LOGCOUNTER! [0m[34m%~2[0m
|
|
GOTO :eof
|
|
|
|
:GET_TIMESTAMP
|
|
@REM Subroutine used to set !TIMESTAMP! to HH:MM:ss.
|
|
@REM CALL :GET_TIMESTAMP
|
|
@REM.
|
|
@REM Updates: !TIMESTAMP!
|
|
FOR /F "tokens=1,2,3 delims=:,." %%a IN ("%TIME%") DO (
|
|
SET "HH=%%a"
|
|
SET "MM=%%b"
|
|
SET "ss=%%c"
|
|
)
|
|
SET "TIMESTAMP=!HH!:!MM!:!ss!"
|
|
GOTO :eof
|
|
|
|
:RESET_ERROR
|
|
@REM Subroutine to reset %ERRORLEVEL% to 0.
|
|
@REM CALL :RESET_ERROR
|
|
@REM.
|
|
@REM Updates: %ERRORLEVEL%
|
|
EXIT /B 0
|
|
GOTO :eof
|