From faa981f37228e8512aa01572a00321da14febb48 Mon Sep 17 00:00:00 2001 From: tychovrahe Date: Sat, 12 Apr 2025 07:35:46 +0200 Subject: [PATCH] fixup! feat(nordic): send busy response when trezor is not listening to BLE messages --- legacy/firmware/fsm.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/legacy/firmware/fsm.c b/legacy/firmware/fsm.c index eefed373db..7658111ecb 100644 --- a/legacy/firmware/fsm.c +++ b/legacy/firmware/fsm.c @@ -194,6 +194,9 @@ void fsm_sendFailure(FailureType code, const char *text) case FailureType_Failure_FirmwareError: text = _("Firmware error"); break; + case FailureType_Failure_Busy: + text = _("Busy"); + break; } } #if DEBUG_LINK