Added menu group for transceivers (#2623)

* Added menu group for transceivers

* Reorder apps icons
This commit is contained in:
Oleg Belousov 2025-04-15 11:46:49 +03:00 committed by GitHub
parent a153cbf30b
commit 806219f46e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 78 additions and 4 deletions

View file

@ -691,6 +691,9 @@ static void printAppInfo(BaseSequentialStream* chp, ui::AppInfoConsole& element)
case TX:
chprintf(chp, "[TX]\r\n");
break;
case TRX:
chprintf(chp, "[TRX]\r\n");
break;
case UTILITIES:
chprintf(chp, "[UTIL]\r\n");
break;
@ -715,6 +718,9 @@ static void printAppInfo(BaseSequentialStream* chp, const ui::AppInfo& element)
case TX:
chprintf(chp, "[TX]\r\n");
break;
case TRX:
chprintf(chp, "[TRX]\r\n");
break;
case UTILITIES:
chprintf(chp, "[UTIL]\r\n");
break;