From 22fde7f82a5e13d40133de77474bc2cdacc2fdd5 Mon Sep 17 00:00:00 2001 From: wabicai Date: Mon, 9 Feb 2026 18:36:13 +0800 Subject: [PATCH] feat: update emulator BLE version to 2.3.6 --- core/src/trezor/uart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/trezor/uart.py b/core/src/trezor/uart.py index d210d82510..e8f63dfcae 100644 --- a/core/src/trezor/uart.py +++ b/core/src/trezor/uart.py @@ -660,7 +660,7 @@ def get_ble_name() -> str: def get_ble_version() -> str: """Get ble version.""" if utils.EMULATOR: - return "1.0.0" + return "2.3.6" return NRF_VERSION if NRF_VERSION else ""