Add TinyFast and TinySlow presets to modem configuration and menu actions (#10597)

This commit is contained in:
Austin
2026-06-03 16:42:39 +01:00
committed by GitHub
co-authored by GitHub
parent f86cb7781e
commit 3e873c51b7
6 changed files with 41 additions and 3 deletions
+6
View File
@@ -51,6 +51,12 @@ const char *DisplayFormatters::getModemPresetDisplayName(meshtastic_Config_LoRaC
case PRESET(NARROW_SLOW):
return useShortName ? "NarS" : "NarrowSlow";
break;
case PRESET(TINY_FAST):
return useShortName ? "TinyF" : "TinyFast";
break;
case PRESET(TINY_SLOW):
return useShortName ? "TinyS" : "TinySlow";
break;
default:
return useShortName ? "Custom" : "Invalid";
break;