aboutsummaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/px_uploader.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/Tools/px_uploader.py b/Tools/px_uploader.py
index 686f01190..43a116745 100755
--- a/Tools/px_uploader.py
+++ b/Tools/px_uploader.py
@@ -160,6 +160,7 @@ class uploader(object):
GET_CRC = b'\x29' # rev3+
GET_OTP = b'\x2a' # rev4+ , get a word from OTP area
GET_SN = b'\x2b' # rev4+ , get a word from SN area
+ GET_CHIP = b'\x2c' # rev5+ , get chip version
REBOOT = b'\x30'
INFO_BL_REV = b'\x01' # bootloader protocol revision
@@ -258,7 +259,7 @@ class uploader(object):
self.__getSync()
return value
- # send the GET_OTP command and wait for an info parameter
+ # send the GET_SN command and wait for an info parameter
def __getSN(self, param):
t = struct.pack("I", param) # int param as 32bit ( 4 byte ) char array.
self.__send(uploader.GET_SN + t + uploader.EOC)
@@ -266,6 +267,13 @@ class uploader(object):
self.__getSync()
return value
+ # send the GET_CHIP command
+ def __getCHIP(self):
+ self.__send(uploader.GET_CHIP + uploader.EOC)
+ value = self.__recv_int()
+ self.__getSync()
+ return value
+
def __drawProgressBar(self, label, progress, maxVal):
if maxVal < progress:
progress = maxVal
@@ -451,6 +459,7 @@ class uploader(object):
self.sn = self.sn + x
print(binascii.hexlify(x).decode('Latin-1'), end='') # show user
print('')
+ print("chip: %08x" % self.__getCHIP())
except Exception:
# ignore bad character encodings
pass