@@ -236,15 +236,15 @@ def serve(remoteAddr, localAddr, remotePort, localPort, password, filename, comm
236
236
def parser (unparsed_args ):
237
237
parser = optparse .OptionParser (
238
238
usage = "%prog [options]" ,
239
- description = "Transmit image over the air to the esp8266 module with OTA support."
239
+ description = "Transmit image over the air to the esp32 module with OTA support."
240
240
)
241
241
242
242
# destination ip and port
243
243
group = optparse .OptionGroup (parser , "Destination" )
244
244
group .add_option ("-i" , "--ip" ,
245
245
dest = "esp_ip" ,
246
246
action = "store" ,
247
- help = "ESP8266 IP Address." ,
247
+ help = "ESP32 IP Address." ,
248
248
default = False
249
249
)
250
250
group .add_option ("-I" , "--host_ip" ,
@@ -256,8 +256,8 @@ def parser(unparsed_args):
256
256
group .add_option ("-p" , "--port" ,
257
257
dest = "esp_port" ,
258
258
type = "int" ,
259
- help = "ESP8266 ota Port. Default 8266 " ,
260
- default = 8266
259
+ help = "ESP32 ota Port. Default 3232 " ,
260
+ default = 3232
261
261
)
262
262
group .add_option ("-P" , "--host_port" ,
263
263
dest = "host_port" ,
@@ -310,7 +310,7 @@ def parser(unparsed_args):
310
310
group .add_option ("-t" , "--timeout" ,
311
311
dest = "timeout" ,
312
312
type = "int" ,
313
- help = "Timeout to wait for the ESP8266 to accept invitation" ,
313
+ help = "Timeout to wait for the ESP32 to accept invitation" ,
314
314
default = 10
315
315
)
316
316
parser .add_option_group (group )
0 commit comments