NFC hardware detect bug
This commit is contained in:
parent
f2a3667593
commit
513a3b8258
@ -14,6 +14,7 @@ This lists the new changes that have not yet been published in a normal release.
|
||||
- Bugfix: Prevent yikes in ownership search
|
||||
- Change: Do not allow to purge settings of current active tmp seed when deleting it from Seed Vault
|
||||
- Change: Do not include sighash in PSBT input data, if sighash value is SIGHASH_ALL
|
||||
- Bugfix: Factory-disabled NFC was not recognized correctly.
|
||||
|
||||
|
||||
# Mk4 Specific Changes
|
||||
|
||||
@ -83,7 +83,6 @@ def probe_system():
|
||||
|
||||
hw_label = 'mk4'
|
||||
has_608 = True
|
||||
nfc_presence_check() # hardware present; they might not be using it
|
||||
has_qr = False # QR scanner
|
||||
num_sd_slots = 1 # might have dual slots on Q1
|
||||
mk_num = 4
|
||||
@ -91,7 +90,7 @@ def probe_system():
|
||||
has_qwerty = False
|
||||
is_edge = False
|
||||
supports_hsm = True
|
||||
has_nfc = True
|
||||
has_nfc = nfc_presence_check() # hardware present; they might not use it.
|
||||
|
||||
cpuid = ckcc.get_cpu_id()
|
||||
assert cpuid == 0x470 # STM32L4S5VI
|
||||
|
||||
Loading…
Reference in New Issue
Block a user