File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 43
43
"The hex file offset load address is not correct." : EXIT_CODE_DAPLINK_USER_ERROR ,
44
44
"The starting address for the bootloader update is wrong." : EXIT_CODE_DAPLINK_USER_ERROR ,
45
45
"The starting address for the interface update is wrong." : EXIT_CODE_DAPLINK_USER_ERROR ,
46
- "The application file format is unknown and cannot be parsed and/or processed." : EXIT_CODE_DAPLINK_USER_ERROR ,
46
+ # Official daplink has the "." at the end, stlink fork is missing it.
47
+ "The application file format is unknown and cannot be parsed and/or processed" : EXIT_CODE_DAPLINK_USER_ERROR ,
47
48
48
49
# Target error
49
50
"The interface firmware FAILED to reset/halt the target MCU" : EXIT_CODE_DAPLINK_TARGET_ERROR ,
Original file line number Diff line number Diff line change @@ -372,6 +372,8 @@ def check(reason, code):
372
372
EXIT_CODE_DAPLINK_USER_ERROR )
373
373
check ("The application file format is unknown and cannot be parsed and/or processed." ,
374
374
EXIT_CODE_DAPLINK_USER_ERROR )
375
+ check ("The application file format is unknown and cannot be parsed and/or processed" ,
376
+ EXIT_CODE_DAPLINK_USER_ERROR )
375
377
376
378
check ("The interface firmware FAILED to reset/halt the target MCU" ,
377
379
EXIT_CODE_DAPLINK_TARGET_ERROR )
You can’t perform that action at this time.
0 commit comments