From 539a0d08c823309ee6b1b54b8181ffdd5c9917f7 Mon Sep 17 00:00:00 2001 From: tychovrahe Date: Mon, 19 May 2025 11:49:25 +0200 Subject: [PATCH] fix(core/bootloader): fix BLE communication error message [no changelog] --- core/embed/projects/bootloader/wire/wire_iface_ble.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/embed/projects/bootloader/wire/wire_iface_ble.c b/core/embed/projects/bootloader/wire/wire_iface_ble.c index a2eb6fdd28..42072c0d9b 100644 --- a/core/embed/projects/bootloader/wire/wire_iface_ble.c +++ b/core/embed/projects/bootloader/wire/wire_iface_ble.c @@ -82,8 +82,8 @@ static int ble_read_(uint8_t* buffer, size_t buffer_size) { } static void ble_error(void) { - error_shutdown_ex("BLE ERROR", - "Error reading from BLE. Try different BLE cable.", NULL); + error_shutdown_ex("Connection Error", + "Move your Trezor closer to your computer/phone.", NULL); } wire_iface_t* ble_iface_init(void) {