/* Copyright 2023 Dual Tachyon * https://github.com/DualTachyon * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifdef ENABLE_FMRADIO #include #include "app/fm.h" #include "driver/bk1080.h" #include "driver/st7565.h" #include "external/printf/printf.h" #include "misc.h" #include "settings.h" #include "ui/fmradio.h" #include "ui/helper.h" #include "ui/inputbox.h" #include "ui/ui.h" const char gBlendStrings[][4] = { "DEF", "+6 ", "-12", "-6 " }; const char gDeemphasisStrings[][3] = { "NO", "US", "EU" }; bool wasStereo; uint8_t oldRssi; void UI_UpdateFMThings(bool force) { force = force; char String[16] = {0}; const uint16_t Status = BK1080_ReadRegister(BK1080_REG_10_RSSI_STATUS); bool isStereo = Status & (1 << 9); uint8_t rssi = Status & 0xFF; if (!force && isStereo == wasStereo && rssi == oldRssi) { return; } oldRssi = rssi; wasStereo = isStereo; sprintf(String, "%s RSSI%d/255", isStereo ? "STER" : "MONO", rssi); UI_PrintStringSmallNormal(String, 1, 0, 4); ST7565_BlitLine(4); } void UI_DisplayFM(void) { char String[16] = {0}; char *pPrintStr = String; UI_DisplayClear(); UI_UpdateFMThings(true); UI_PrintString("FM", 2, 0, 0 /*, 8 */); sprintf(String, "%s D%s B%s", gEeprom.BK1080_AGC_ENABLED ? " AGC" : "NAGC", gDeemphasisStrings[gEeprom.BK1080_DEEMPHASIS_CONFIG], gBlendStrings[gEeprom.BK1080_BLEND_CONFIG]); UI_PrintStringSmallNormal(String, 1, 0, 5); sprintf(String, "%d%s-%dM", BK1080_GetFreqLoLimit(gEeprom.FM_Band)/10, gEeprom.FM_Band == 0 ? ".5" : "", BK1080_GetFreqHiLimit(gEeprom.FM_Band)/10 ); UI_PrintStringSmallNormal(String, 1, 0, 6); //uint8_t spacings[] = {20,10,5}; //sprintf(String, "%d0k", spacings[gEeprom.FM_Space % 3]); //UI_PrintStringSmallNormal(String, 127 - 4*7, 0, 6); if (gAskToSave) { pPrintStr = "SAV?"; } else if (gAskToDelete) { pPrintStr = "DEL?"; } else if (gFM_ScanState == FM_SCAN_OFF) { if (gEeprom.FM_IsMrMode) { sprintf(String, "CH%02u", gEeprom.FM_SelectedChannel + 1); pPrintStr = String; } else { pPrintStr = "VFO"; for (unsigned int i = 0; i < 20; i++) { if (gEeprom.FM_FrequencyPlaying == gFM_Channels[i]) { sprintf(String, "C%02u MHz", i + 1); pPrintStr = String; break; } } } } else if (gFM_AutoScan) { sprintf(String, "A-SCN(%u)", gFM_ChannelPosition + 1); pPrintStr = String; } else { pPrintStr = "M-SCN"; } UI_PrintString(pPrintStr, 0, 127, 3 /*, 12 */); // memory, vfo, scan memset(String, 0, sizeof(String)); if (gAskToSave || (gEeprom.FM_IsMrMode && gInputBoxIndex > 0)) { UI_GenerateChannelString(String, gFM_ChannelPosition); } else if (gAskToDelete) { sprintf(String, "C-%02u", gEeprom.FM_SelectedChannel + 1); } else { if (gInputBoxIndex == 0) { sprintf(String, " %3d.%d", gEeprom.FM_FrequencyPlaying / 10, gEeprom.FM_FrequencyPlaying % 10); } else { const char * ascii = INPUTBOX_GetAscii(); sprintf(String, "%.3s.%.1s",ascii, ascii + 3); } UI_PrintString(String, 0, 20, 1 /*, 10 */); // frequency ST7565_BlitFullScreen(); return; } UI_PrintString(String, 0, 127, 1 /*, 10 */); ST7565_BlitFullScreen(); } #endif