@@ -16,8 +16,9 @@ EspBuddby v2.50 ( EspTool v3.3.3 )
16
16
* Usage : espbuddy COMMAND [TARGET] [options]
17
17
18
18
* Valid COMMANDS :
19
- - upload : Build and/or Upload current repo version to Device(s)
20
- - upgrade : Upgrade device(s) firmware
19
+ - flash : Flash device(s) firmware, using the serial port
20
+ - ota : Upgrade device(s) firmware, using 'Arduino OTA' (when OTA is compiled in the firmware)
21
+ - upgrade : Upgrade device(s) firmware using our WebServer (only available for Tasmota)
21
22
- build : Build device(s) firmware
22
23
- backup : Download and archive settings from the remote device
23
24
- monitor : Monitor device connected to the serial port
@@ -39,8 +40,9 @@ EspBuddby v2.50 ( EspTool v3.3.3 )
39
40
- help : Show full help
40
41
41
42
* Commands Usage :
42
- - upload : espbuddy upload TARGET [options, auth_options, upload_options]
43
- - upgrade : espbuddy upgrade TARGET [options, auth_options, upload_options]
43
+ - flash : espbuddy flash TARGET [options, upload_options, flash_options]
44
+ - ota : espbuddy ota TARGET [options, upload_options, ota_options, auth_options]
45
+ - upgrade : espbuddy upgrade TARGET [options, upload_options, auth_options]
44
46
- build : espbuddy build TARGET [options]
45
47
- backup : espbuddy backup TARGET [options, auth_options]
46
48
- monitor : espbuddy monitor [TARGET] [options]
@@ -87,17 +89,25 @@ EspBuddby v2.50 ( EspTool v3.3.3 )
87
89
--repo=xxx : Repository to use (overrides per host settings)
88
90
89
91
+ UPLOAD_OPTIONS :
90
- -b : Build before Flashing/Uploading/Upgrading firmware
91
- -w : Wire Mode : Upload using the serial port instead of the default OTA
92
- -e : In Wire Mode, erase flash first, then upload
93
- -m : Switch to serial monitor after upload
94
- -p : Upload previous firmware backuped (instead of the latest build)
95
- -s : Skip Intermediate OTA Upload (when 2steps mode is set)
92
+ -b : Build before Flashing / OTA Uploading / Upgrading firmware
93
+ -p : Upload previous firmware backuped (instead of the latest one)
96
94
-c : When using --firm, make a copy instead of a symbolic link
97
- --port=xxx : Serial port to use (override main or per host serial port)
98
- --rate=xxx : Serial port speed to use (override main or per host serial port)
99
- --firm=xxx : Full path to the firmware file to upload (override latest build one)
100
- --from=REPO : Migrate from REPO to the selected config
95
+ --firm=xxx : Full path to the firmware file to upload (overrides latest build one)
96
+
97
+ + FLASH_OPTIONS :
98
+ -e : Erase memory first, then upload
99
+ -m : Imediatly switches to serial port monitor after upload
100
+ --port=xxx : Serial port to use (overrides main or per host serial port)
101
+ --rate=xxx : Serial port speed to use (overrides main or per host serial port). Either:
102
+ - a number
103
+ - 'slow' is a shorcut for 57600
104
+ - 'boot' is a shorcut for 74880 (default)
105
+ - 'fast' is a shorcut for 115200
106
+ - 'turbo' is a shorcut for 460800
107
+
108
+ + OTA_OPTIONS :
109
+ -s : Skip Intermediate OTA Upload (when 2steps mode is set in config)
110
+ --from=REPO : Migrate from REPO to the selected config's REPO
101
111
102
112
+ AUTH_OPTIONS :
103
113
--login=xxx : Login name (overrides host or per config login)
@@ -343,7 +353,7 @@ Selected Repo : espeasy
343
353
344
354
345
355
346
- ### ` # espbuddy upload led2 `
356
+ ### ` # espbuddy ota led2 `
347
357
348
358
Upload the latest firmware to the 'led2' host, using an intermediate OTA firmware * as set in the 'led2' configuration, from the config.php file.*
349
359
0 commit comments