0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-06-20 06:58:39 +03:00

Added small bold font option

This commit is contained in:
OneOfEleven
2023-09-24 01:36:43 +01:00
parent 8b44428ea5
commit b2015430ea
11 changed files with 282 additions and 137 deletions

View File

@ -340,7 +340,12 @@ void UI_DisplayMain(void)
}
else
{
UI_PrintStringSmall(String, 32 + 4, 0, Line);
#ifdef ENABLE_SMALL_BOLD
UI_PrintStringSmallBold(String, 32 + 4, 0, Line);
#else
UI_PrintStringSmall(String, 32 + 4, 0, Line);
#endif
// show the channel frequency below the channel number/name
sprintf(String, "%03u.%05u", frequency / 100000, frequency % 100000);
UI_PrintStringSmall(String, 32 + 4, 0, Line + 1);