@@ -237,13 +237,16 @@ class uploader(object):
237
237
238
238
CHIP_FULL_ERASE = b'\x40 ' # full erase of flash
239
239
240
- INFO_BL_REV = b'\x01 ' # bootloader protocol revision
241
- BL_REV_MIN = 2 # minimum supported bootloader protocol
242
- BL_REV_MAX = 5 # maximum supported bootloader protocol
243
- INFO_BOARD_ID = b'\x02 ' # board type
244
- INFO_BOARD_REV = b'\x03 ' # board revision
245
- INFO_FLASH_SIZE = b'\x04 ' # max firmware size in bytes
246
- INFO_EXTF_SIZE = b'\x06 ' # available external flash size
240
+ INFO_BL_REV = b'\x01 ' # bootloader protocol revision
241
+ BL_REV_MIN = 2 # minimum supported bootloader protocol
242
+ BL_REV_MAX = 5 # maximum supported bootloader protocol
243
+ INFO_BOARD_ID = b'\x02 ' # board type
244
+ INFO_BOARD_REV = b'\x03 ' # board revision
245
+ INFO_FLASH_SIZE = b'\x04 ' # max firmware size in bytes
246
+ INFO_EXTF_SIZE = b'\x06 ' # available external flash size
247
+ INFO_SW_BL_BUILD = b'\x07 ' # information about bootloader software build version
248
+ INFO_SW_BL_OPTS = b'\x08 ' # information about bootloader build options
249
+ INFO_SW_APP_BUILD = b'\x09 ' # information about application software build version
247
250
248
251
PROG_MULTI_MAX = 252 # protocol max is 255, must be multiple of 4
249
252
READ_MULTI_MAX = 252 # protocol max is 255
@@ -737,6 +740,21 @@ def identify(self):
737
740
self .board_rev = self .__getInfo (uploader .INFO_BOARD_REV )
738
741
self .fw_maxsize = self .__getInfo (uploader .INFO_FLASH_SIZE )
739
742
743
+ try :
744
+ self .bootloader_options = self .__getInfo (uploader .INFO_SW_BL_OPTS )
745
+ except Exception :
746
+ self .__sync ()
747
+
748
+ try :
749
+ self .git_hash_bl = self .__getInfo (uploader .INFO_SW_BL_BUILD )
750
+ except Exception :
751
+ self .__sync ()
752
+
753
+ try :
754
+ self .git_hash_app = self .__getInfo (uploader .INFO_SW_APP_BUILD )
755
+ except Exception :
756
+ self .__sync ()
757
+
740
758
def dump_board_info (self ):
741
759
# OTP added in v4:
742
760
print ("Bootloader Protocol: %u" % self .bl_rev )
@@ -839,6 +857,30 @@ def dump_board_info(self):
839
857
print (" board_type: %u" % self .board_type )
840
858
print (" board_rev: %u" % self .board_rev )
841
859
860
+ if hasattr (self , "git_hash_bl" ) and self .git_hash_bl is not None :
861
+ git_hash_bl = "%x" % (self .git_hash_bl )
862
+ print (" git hash (Bootloader): %s" % git_hash_bl )
863
+
864
+ if hasattr (self , "bootloader_options" ) and self .bootloader_options is not None :
865
+ def decode_bootloader_options (bootloader_options ):
866
+ '''decode the bootloader options bits'''
867
+ print (f" bootloader options: { bootloader_options :032b} " )
868
+ option_bits = {
869
+ 0 : "UnsignedFirmware" , # CheckFirmware Enabled, Unsigned Firmware
870
+ 1 : "SignedFirmware" , # CheckFirmware Enabled, Signed Firmware
871
+ 2 : "FlashFromSDCard" , # Flash From SD Card Supported
872
+ 3 : "OptionCheckFWOk" , # CheckFirmware Enabled, firmware check is good
873
+ }
874
+ for i in range (32 ):
875
+ if (bootloader_options & (1 << i )) == (1 << i ):
876
+ print (f" - { option_bits .get (i , 'Unknown Option' )} " )
877
+
878
+ decode_bootloader_options (self .bootloader_options )
879
+
880
+ if hasattr (self , "git_hash_app" ) and self .git_hash_app is not None :
881
+ git_hash_app = "%x" % (self .git_hash_app )
882
+ print (" git hash (Application): %s" % git_hash_app )
883
+
842
884
print ("Identification complete" )
843
885
844
886
def board_name_for_board_id (self , board_id ):
0 commit comments