Wish Upload the latest build

Siam

Active Member
Licensed User
Longtime User
i need this for the release mode, it is right that the upload goes a bit faster without compiling the code, but not fast enough;) I think it depends on the sitze from the code how long it takes, in my case i have to wait 2 minutes without compile ! the upload only take a few seconds.If you now have 20 Modules to Burn than you can calculate that this take a looooong time. So it where nice to have a litttle burn button in b4r.
 

janderkan

Well-Known Member
Licensed User
Longtime User
I use this batch file to automate the programming of a lot of units.
Use it as inspiration.

B4X:
@Echo off

:choice
set /P c=Are you ready to burn [Y/N]?
if /I "%c%" EQU "" goto :burn
if /I "%c%" EQU "Y" goto :burn
if /I "%c%" EQU "N" goto :end
goto :choice

:burn
C:\2Work\1C\B4R\EspTool\esptool.exe -vv -cd nodemcu -cb 256000 -cp COM7 -ca 0x00000 -cf C:\2Work\1C\B4R\BoardWemosMini\Futedo\Toilet1\Objects\bin\src.ino.bin
goto :choice

:end
exit

@Echo off

echo %1
exit
 
Top