Compare commits

..

2 Commits

Author SHA1 Message Date
Tom Fifield
1ead129a50
Merge ad53026e83 into 5ae4ff9162 2025-08-29 19:04:04 -04:00
Tom Fifield
ad53026e83 Improve Lost and Found
As suggested by @RCGV1, this patch sets LOST_AND_FOUND role to
* Broadcast full precision by default
* Save battery by not re-broadcasting

Fixes https://github.com/meshtastic/firmware/issues/5514
2025-03-03 16:39:09 +08:00

View File

@ -100,6 +100,7 @@ IF NOT "!FILENAME:update=!"=="!FILENAME!" (
)
:skip-filename
SET "ESPTOOL_BAUD=1200"
CALL :LOG_MESSAGE DEBUG "Determine the correct esptool command to use..."
IF NOT "__%PYTHON%__"=="____" (
@ -141,7 +142,7 @@ CALL :LOG_MESSAGE INFO "Using esptool baud: !ESPTOOL_BAUD!."
IF %BPS_RESET% EQU 1 (
@REM Attempt to change mode via 1200bps Reset.
CALL :RUN_ESPTOOL 1200 --after no_reset read_flash_status
CALL :RUN_ESPTOOL !ESPTOOL_BAUD! --after no_reset read_flash_status
GOTO eof
)