From a983f6029faddcc508172a216d49ed4263f154bf Mon Sep 17 00:00:00 2001 From: rusefillc Date: Tue, 10 Aug 2021 07:29:55 -0400 Subject: [PATCH] "Burn without flash" button #3127 --- firmware/controllers/bench_test.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/firmware/controllers/bench_test.cpp b/firmware/controllers/bench_test.cpp index abce70cc61..37e2df2066 100644 --- a/firmware/controllers/bench_test.cpp +++ b/firmware/controllers/bench_test.cpp @@ -393,8 +393,10 @@ static void handleCommandX14(uint16_t index) { #endif return; case 0x15: +#if EFI_PROD_CODE extern bool burnWithoutFlash; burnWithoutFlash = true; +#endif // EFI_PROD_CODE return; default: firmwareError(OBD_PCM_Processor_Fault, "Unexpected bench x14 %d", index);