blob: f4d7731103b88da405f28ca4b09e2a25e18d21a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
import cffi
ffi = cffi.FFI()
gs = ffi.string
def to_hex(s):
return "".join("{:02x}".format(ord(c)) for c in s)
def wait(t):
import time
msg = 'Waiting for %d seconds' % t
print(msg.center(40, '='))
time.sleep(t)
def cast_pointer_to_tuple(obj, typen, len):
# usage:
# config = cast_pointer_to_tuple(config_raw_data, 'uint8_t', 5)
return tuple(ffi.cast("%s [%d]" % (typen, len), obj)[0:len])
def get_devices_firmware_version(C):
firmware = C.NK_get_major_firmware_version()
return firmware
def is_pro_rtm_07(C):
firmware = get_devices_firmware_version(C)
return firmware == 7
def is_pro_rtm_08(C):
firmware = get_devices_firmware_version(C)
return firmware == 8
def is_storage(C):
"""
exact firmware storage is sent by other function
"""
# TODO identify connected device directly
return not is_pro_rtm_08(C) and not is_pro_rtm_07(C)
def is_long_OTP_secret_handled(C):
return is_pro_rtm_08(C) or is_storage(C) and get_devices_firmware_version(C) > 43
|