Skip to content

Commit f7a2177

Browse files
committed
Updated esptool.py, fixed --entry-symbol
1 parent 88e2f58 commit f7a2177

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

Espressif/utils/esptool.exe

0 Bytes
Binary file not shown.

Espressif/utils/esptool.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -498,8 +498,6 @@ def arg_auto_int(x):
498498
choices = ['qio', 'qout', 'dio', 'dout'], default = 'qio')
499499
parser_write_flash.add_argument('--flash_size', '-fs', help = 'SPI Flash size in Mbit',
500500
choices = ['4m', '2m', '8m', '16m', '32m', '16m-c1', '32m-c1', '32m-c2'], default = '4m')
501-
parser_elf2image.add_argument('--entry-symbol', '-es', help = 'Entry point symbol name (default \'call_user_start\')',
502-
default = 'call_user_start')
503501

504502
parser_run = subparsers.add_parser(
505503
'run',
@@ -529,6 +527,8 @@ def arg_auto_int(x):
529527
choices = ['qio', 'qout', 'dio', 'dout'], default = 'qio')
530528
parser_elf2image.add_argument('--flash_size', '-fs', help = 'SPI Flash size in Mbit',
531529
choices = ['4m', '2m', '8m', '16m', '32m', '16m-c1', '32m-c1', '32m-c2'], default = '4m')
530+
parser_elf2image.add_argument('--entry-symbol', '-es', help = 'Entry point symbol name (default \'call_user_start\')',
531+
default = 'call_user_start')
532532

533533
parser_read_mac = subparsers.add_parser(
534534
'read_mac',

Espressif/utils/library.zip

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)