From ff91073f0fdd6b025b800402b3976e2e62632b70 Mon Sep 17 00:00:00 2001 From: M1nd3r Date: Fri, 20 Dec 2024 16:19:01 +0100 Subject: [PATCH] try fix legacy build --- legacy/firmware/fsm.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/legacy/firmware/fsm.c b/legacy/firmware/fsm.c index 99f9c356a5..629f2dbd5c 100644 --- a/legacy/firmware/fsm.c +++ b/legacy/firmware/fsm.c @@ -197,6 +197,12 @@ void fsm_sendFailure(FailureType code, const char *text) case FailureType_Failure_InvalidProtocol: text = _("Invalid protocol"); break; + case FailureType_Failure_BufferError: + text = _("Buffer error"); + break; + case FailureType_Failure_DeviceIsBusy: + text = _("Device is busy"); + break; case FailureType_Failure_FirmwareError: text = _("Firmware error"); break;