1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-02-22 04:22:07 +00:00

refactor(core): change 65535 to 0xFFFF for better readability

[no changelog]
This commit is contained in:
M1nd3r 2024-08-15 16:11:03 +02:00
parent 43ed952900
commit f54ec101bc

View File

@ -23,7 +23,7 @@ _WIRE_INTERFACE_LENGTH = const(1)
_SESSION_STATE_LENGTH = const(1)
_CHANNEL_ID_LENGTH = const(2)
SESSION_ID_LENGTH = const(1)
BROADCAST_CHANNEL_ID = const(65535)
BROADCAST_CHANNEL_ID = const(0xFFFF)
KEY_LENGTH = const(32)
TAG_LENGTH = const(16)
_UNALLOCATED_STATE = const(0)