From 739e7d493e949c60b00c7eff13d30473357cf90c Mon Sep 17 00:00:00 2001 From: tychovrahe Date: Thu, 23 Jan 2025 14:14:59 +0100 Subject: [PATCH] fixup! feat(core): adjust codec_v1 to work with differently sized RX and TX packets --- core/embed/upymod/modtrezorio/modtrezorio-ble.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/embed/upymod/modtrezorio/modtrezorio-ble.h b/core/embed/upymod/modtrezorio/modtrezorio-ble.h index d6062fe4c0..1a639c02cf 100644 --- a/core/embed/upymod/modtrezorio/modtrezorio-ble.h +++ b/core/embed/upymod/modtrezorio/modtrezorio-ble.h @@ -185,10 +185,10 @@ STATIC mp_obj_t mod_trezorio_BLE_disconnect(void) { STATIC MP_DEFINE_CONST_FUN_OBJ_0(mod_trezorio_BLE_disconnect_obj, mod_trezorio_BLE_disconnect); -/// RX_PACKET_LEN: ClassVar[int] +/// RX_PACKET_LEN: int /// """Length of one BLE RX packet.""" -/// TX_PACKET_LEN: ClassVar[int] +/// TX_PACKET_LEN: int /// """Length of one BLE TX packet.""" STATIC const mp_rom_map_elem_t mod_trezorio_BLE_globals_table[] = {