From 4aca56366e59c474601628cdcef45f6b9930ba44 Mon Sep 17 00:00:00 2001 From: gullradriel Date: Mon, 9 Feb 2026 21:38:44 +0100 Subject: [PATCH] revert uppercase string, special case here --- protopirate_app_i.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protopirate_app_i.c b/protopirate_app_i.c index d160553..fda7f94 100644 --- a/protopirate_app_i.c +++ b/protopirate_app_i.c @@ -29,7 +29,7 @@ bool protopirate_set_preset(ProtoPirateApp* app, const char* preset) { } else if(!strcmp(preset, "FuriHalSubGhzPreset2FSKDev476Async")) { furi_string_set(app->txrx->preset->name, "FM476"); } else if(!strcmp(preset, "FuriHalSubGhzPresetCustom")) { - furi_string_set(app->txrx->preset->name, "CUSTOM"); + furi_string_set(app->txrx->preset->name, "Custom"); } else { FURI_LOG_E(TAG, "Unknown preset"); return false;