From 6142a39f20901bd303842606b3a25cba692a8642 Mon Sep 17 00:00:00 2001 From: grdddj Date: Mon, 12 Feb 2024 16:45:59 +0100 Subject: [PATCH] fix(core): add debug feature to Rust in hardware build when PYOPT=0 [no changelog] --- core/SConscript.firmware | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/SConscript.firmware b/core/SConscript.firmware index e832d3052..022ec926c 100644 --- a/core/SConscript.firmware +++ b/core/SConscript.firmware @@ -720,7 +720,7 @@ def cargo_build(): features.append('ui') features.append('translations') if PYOPT == '0': - features.append('ui_debug') + features.append('debug') features.extend(FEATURES_AVAILABLE)