0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-04-28 14:21:25 +03:00

671 lines
14 KiB
C
Raw Normal View History

2023-09-09 08:03:56 +01:00
/* 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.
*/
2023-09-14 09:56:30 +01:00
#ifdef ENABLE_FMRADIO
2023-09-09 08:03:56 +01:00
#include <string.h>
#include "app/action.h"
#include "app/fm.h"
#include "app/generic.h"
#include "audio.h"
#include "bsp/dp32g030/gpio.h"
#include "driver/bk1080.h"
#include "driver/eeprom.h"
#include "driver/gpio.h"
#include "functions.h"
#include "misc.h"
#include "settings.h"
#include "ui/inputbox.h"
#include "ui/ui.h"
2023-09-11 00:02:57 +01:00
#ifndef ARRAY_SIZE
#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
#endif
uint16_t gFM_Channels[20];
bool gFmRadioMode;
2023-09-17 09:54:24 +01:00
uint8_t gFmRadioCountdown_500ms;
volatile uint16_t gFmPlayCountdown_10ms;
2023-09-11 00:02:57 +01:00
volatile int8_t gFM_ScanState;
bool gFM_AutoScan;
uint8_t gFM_ChannelPosition;
bool gFM_FoundFrequency;
bool gFM_AutoScan;
2023-09-17 09:54:24 +01:00
uint8_t gFM_ResumeCountdown_500ms;
2023-09-25 13:27:52 +01:00
uint16_t gFM_RestoreCountdown_10ms;
2023-09-09 08:03:56 +01:00
bool FM_CheckValidChannel(uint8_t Channel)
{
2023-09-11 00:02:57 +01:00
return (Channel < ARRAY_SIZE(gFM_Channels) && (gFM_Channels[Channel] >= 760 && gFM_Channels[Channel] < 1080)) ? true : false;
2023-09-09 08:03:56 +01:00
}
uint8_t FM_FindNextChannel(uint8_t Channel, uint8_t Direction)
{
2023-09-11 00:02:57 +01:00
unsigned int i;
2023-09-09 08:03:56 +01:00
2023-09-11 00:02:57 +01:00
for (i = 0; i < ARRAY_SIZE(gFM_Channels); i++)
{
if (Channel == 0xFF)
Channel = ARRAY_SIZE(gFM_Channels) - 1;
else
if (Channel >= ARRAY_SIZE(gFM_Channels))
Channel = 0;
2023-09-11 00:02:57 +01:00
if (FM_CheckValidChannel(Channel))
2023-09-09 08:03:56 +01:00
return Channel;
Channel += Direction;
}
return 0xFF;
}
int FM_ConfigureChannelState(void)
{
2023-10-08 17:14:13 +01:00
g_eeprom.fm_frequency_playing = g_eeprom.fm_selected_frequency;
2023-09-11 00:02:57 +01:00
2023-10-08 17:14:13 +01:00
if (g_eeprom.fm_is_channel_mode)
2023-09-11 00:02:57 +01:00
{
2023-10-08 17:14:13 +01:00
const uint8_t Channel = FM_FindNextChannel(g_eeprom.fm_selected_channel, FM_CHANNEL_UP);
2023-09-11 00:02:57 +01:00
if (Channel == 0xFF)
{
2023-10-08 17:14:13 +01:00
g_eeprom.fm_is_channel_mode = false;
2023-09-09 08:03:56 +01:00
return -1;
}
2023-10-08 17:14:13 +01:00
g_eeprom.fm_selected_channel = Channel;
g_eeprom.fm_frequency_playing = gFM_Channels[Channel];
2023-09-09 08:03:56 +01:00
}
return 0;
}
void FM_TurnOff(void)
{
2023-09-25 13:27:52 +01:00
gFmRadioMode = false;
gFM_ScanState = FM_SCAN_OFF;
gFM_RestoreCountdown_10ms = 0;
2023-09-11 00:02:57 +01:00
2023-09-09 08:03:56 +01:00
GPIO_ClearBit(&GPIOC->DATA, GPIOC_PIN_AUDIO_PATH);
2023-09-11 00:02:57 +01:00
2023-09-09 08:03:56 +01:00
gEnableSpeaker = false;
2023-09-11 00:02:57 +01:00
2023-09-09 08:03:56 +01:00
BK1080_Init(0, false);
2023-09-11 00:02:57 +01:00
gUpdateStatus = true;
2023-09-09 08:03:56 +01:00
}
void FM_EraseChannels(void)
{
2023-09-11 00:02:57 +01:00
unsigned int i;
uint8_t Template[8];
2023-09-09 08:03:56 +01:00
memset(Template, 0xFF, sizeof(Template));
2023-09-11 00:02:57 +01:00
for (i = 0; i < 5; i++)
2023-09-09 08:03:56 +01:00
EEPROM_WriteBuffer(0x0E40 + (i * 8), Template);
memset(gFM_Channels, 0xFF, sizeof(gFM_Channels));
}
void FM_Tune(uint16_t Frequency, int8_t Step, bool bFlag)
{
GPIO_ClearBit(&GPIOC->DATA, GPIOC_PIN_AUDIO_PATH);
2023-09-11 00:02:57 +01:00
2023-09-09 08:03:56 +01:00
gEnableSpeaker = false;
2023-09-11 00:02:57 +01:00
2023-09-17 09:54:24 +01:00
gFmPlayCountdown_10ms = (gFM_ScanState == FM_SCAN_OFF) ? fm_play_countdown_noscan_10ms : fm_play_countdown_scan_10ms;
2023-09-11 00:02:57 +01:00
gScheduleFM = false;
gFM_FoundFrequency = false;
gAskToSave = false;
gAskToDelete = false;
2023-10-08 17:14:13 +01:00
g_eeprom.fm_frequency_playing = Frequency;
2023-09-11 00:02:57 +01:00
if (!bFlag)
{
2023-09-09 08:03:56 +01:00
Frequency += Step;
2023-10-08 17:14:13 +01:00
if (Frequency < g_eeprom.fm_lower_limit)
Frequency = g_eeprom.fm_upper_limit;
2023-09-11 00:02:57 +01:00
else
2023-10-08 17:14:13 +01:00
if (Frequency > g_eeprom.fm_upper_limit)
Frequency = g_eeprom.fm_lower_limit;
2023-09-11 00:02:57 +01:00
2023-10-08 17:14:13 +01:00
g_eeprom.fm_frequency_playing = Frequency;
2023-09-09 08:03:56 +01:00
}
gFM_ScanState = Step;
2023-09-11 00:02:57 +01:00
2023-10-08 17:14:13 +01:00
BK1080_SetFrequency(g_eeprom.fm_frequency_playing);
2023-09-09 08:03:56 +01:00
}
void FM_PlayAndUpdate(void)
{
gFM_ScanState = FM_SCAN_OFF;
2023-09-11 00:02:57 +01:00
if (gFM_AutoScan)
{
2023-10-08 17:14:13 +01:00
g_eeprom.fm_is_channel_mode = true;
g_eeprom.fm_selected_channel = 0;
2023-09-09 08:03:56 +01:00
}
2023-09-11 00:02:57 +01:00
2023-09-09 08:03:56 +01:00
FM_ConfigureChannelState();
2023-10-08 17:14:13 +01:00
BK1080_SetFrequency(g_eeprom.fm_frequency_playing);
2023-09-09 08:03:56 +01:00
SETTINGS_SaveFM();
2023-09-11 00:02:57 +01:00
2023-09-17 09:54:24 +01:00
gFmPlayCountdown_10ms = 0;
gScheduleFM = false;
gAskToSave = false;
2023-09-11 00:02:57 +01:00
2023-09-09 08:03:56 +01:00
GPIO_SetBit(&GPIOC->DATA, GPIOC_PIN_AUDIO_PATH);
2023-09-11 00:02:57 +01:00
gEnableSpeaker = true;
2023-09-09 08:03:56 +01:00
}
int FM_CheckFrequencyLock(uint16_t Frequency, uint16_t LowerLimit)
{
int ret = -1;
2023-09-11 00:02:57 +01:00
const uint16_t Test2 = BK1080_ReadRegister(BK1080_REG_07);
2023-09-09 08:03:56 +01:00
2023-09-11 00:02:57 +01:00
// This is supposed to be a signed value, but above function is unsigned
const uint16_t Deviation = BK1080_REG_07_GET_FREQD(Test2);
2023-09-09 08:03:56 +01:00
2023-09-11 00:02:57 +01:00
if (BK1080_REG_07_GET_SNR(Test2) >= 2)
{
const uint16_t Status = BK1080_ReadRegister(BK1080_REG_10);
if ((Status & BK1080_REG_10_MASK_AFCRL) == BK1080_REG_10_AFCRL_NOT_RAILED && BK1080_REG_10_GET_RSSI(Status) >= 10)
{
//if (Deviation > -281 && Deviation < 280)
2023-09-11 00:02:57 +01:00
if (Deviation < 280 || Deviation > 3815)
{
2023-09-09 08:03:56 +01:00
// not BLE(less than or equal)
2023-09-11 00:02:57 +01:00
if (Frequency > LowerLimit && (Frequency - BK1080_BaseFrequency) == 1)
{
if (BK1080_FrequencyDeviation & 0x800)
2023-09-09 08:03:56 +01:00
goto Bail;
2023-09-11 00:02:57 +01:00
if (BK1080_FrequencyDeviation < 20)
2023-09-09 08:03:56 +01:00
goto Bail;
}
2023-09-11 00:02:57 +01:00
2023-09-09 08:03:56 +01:00
// not BLT(less than)
2023-09-11 00:02:57 +01:00
if (Frequency >= LowerLimit && (BK1080_BaseFrequency - Frequency) == 1)
{
if ((BK1080_FrequencyDeviation & 0x800) == 0)
2023-09-09 08:03:56 +01:00
goto Bail;
2023-09-11 00:02:57 +01:00
// if (BK1080_FrequencyDeviation > -21)
if (BK1080_FrequencyDeviation > 4075)
2023-09-09 08:03:56 +01:00
goto Bail;
}
2023-09-11 00:02:57 +01:00
2023-09-09 08:03:56 +01:00
ret = 0;
}
}
}
Bail:
BK1080_FrequencyDeviation = Deviation;
2023-09-11 00:02:57 +01:00
BK1080_BaseFrequency = Frequency;
2023-09-09 08:03:56 +01:00
return ret;
}
2023-10-08 17:14:13 +01:00
static void FM_Key_DIGITS(key_code_t Key, bool bKeyPressed, bool bKeyHeld)
2023-09-09 08:03:56 +01:00
{
2023-09-11 00:02:57 +01:00
#define STATE_FREQ_MODE 0
2023-10-08 17:14:13 +01:00
#define STATE_USER_MODE 1
2023-09-11 00:02:57 +01:00
#define STATE_SAVE 2
2023-09-09 08:03:56 +01:00
2023-09-11 00:02:57 +01:00
if (!bKeyHeld && bKeyPressed)
{
2023-10-08 17:14:13 +01:00
if (!g_was_f_key_pressed)
2023-09-11 00:02:57 +01:00
{
2023-09-09 08:03:56 +01:00
uint8_t State;
2023-09-11 00:02:57 +01:00
if (gAskToDelete)
{
2023-09-09 08:03:56 +01:00
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
return;
}
2023-09-11 00:02:57 +01:00
if (gAskToSave)
{
2023-09-09 08:03:56 +01:00
State = STATE_SAVE;
2023-09-11 00:02:57 +01:00
}
else
{
if (gFM_ScanState != FM_SCAN_OFF)
{
2023-09-09 08:03:56 +01:00
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
return;
}
2023-09-11 00:02:57 +01:00
2023-10-08 17:14:13 +01:00
State = g_eeprom.fm_is_channel_mode ? STATE_USER_MODE : STATE_FREQ_MODE;
2023-09-09 08:03:56 +01:00
}
2023-09-11 00:02:57 +01:00
2023-09-09 08:03:56 +01:00
INPUTBOX_Append(Key);
2023-09-11 00:02:57 +01:00
2023-09-09 08:03:56 +01:00
gRequestDisplayScreen = DISPLAY_FM;
2023-09-11 00:02:57 +01:00
if (State == STATE_FREQ_MODE)
{
if (gInputBoxIndex == 1)
{
if (gInputBox[0] > 1)
{
2023-09-09 08:03:56 +01:00
gInputBox[1] = gInputBox[0];
gInputBox[0] = 0;
gInputBoxIndex = 2;
}
2023-09-11 00:02:57 +01:00
}
else
if (gInputBoxIndex > 3)
{
2023-09-09 08:03:56 +01:00
uint32_t Frequency;
gInputBoxIndex = 0;
NUMBER_Get(gInputBox, &Frequency);
2023-09-11 00:02:57 +01:00
Frequency /= 10000;
2023-10-08 17:14:13 +01:00
if (Frequency < g_eeprom.fm_lower_limit || g_eeprom.fm_upper_limit < Frequency)
2023-09-11 00:02:57 +01:00
{
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
2023-09-09 08:03:56 +01:00
gRequestDisplayScreen = DISPLAY_FM;
return;
}
2023-09-11 00:02:57 +01:00
2023-10-08 17:14:13 +01:00
g_eeprom.fm_selected_frequency = (uint16_t)Frequency;
2023-09-11 00:02:57 +01:00
2023-09-14 09:56:30 +01:00
#ifdef ENABLE_VOICE
2023-10-08 17:14:13 +01:00
g_another_voice_id = (voice_id_t)Key;
2023-09-09 08:03:56 +01:00
#endif
2023-09-11 00:02:57 +01:00
2023-10-08 17:14:13 +01:00
g_eeprom.fm_frequency_playing = g_eeprom.fm_selected_frequency;
BK1080_SetFrequency(g_eeprom.fm_frequency_playing);
2023-09-09 08:03:56 +01:00
gRequestSaveFM = true;
return;
}
2023-09-11 00:02:57 +01:00
}
else
if (gInputBoxIndex == 2)
{
2023-09-09 08:03:56 +01:00
uint8_t Channel;
gInputBoxIndex = 0;
Channel = ((gInputBox[0] * 10) + gInputBox[1]) - 1;
2023-09-11 00:02:57 +01:00
2023-10-08 17:14:13 +01:00
if (State == STATE_USER_MODE)
2023-09-11 00:02:57 +01:00
{
2023-09-09 08:03:56 +01:00
if (FM_CheckValidChannel(Channel))
{
2023-09-14 09:56:30 +01:00
#ifdef ENABLE_VOICE
2023-10-08 17:14:13 +01:00
g_another_voice_id = (voice_id_t)Key;
2023-09-09 08:03:56 +01:00
#endif
2023-10-08 17:14:13 +01:00
g_eeprom.fm_selected_channel = Channel;
g_eeprom.fm_frequency_playing = gFM_Channels[Channel];
BK1080_SetFrequency(g_eeprom.fm_frequency_playing);
2023-09-09 08:03:56 +01:00
gRequestSaveFM = true;
return;
}
}
else
if (Channel < 20)
{
2023-09-14 09:56:30 +01:00
#ifdef ENABLE_VOICE
2023-10-08 17:14:13 +01:00
g_another_voice_id = (voice_id_t)Key;
2023-09-09 08:03:56 +01:00
#endif
gRequestDisplayScreen = DISPLAY_FM;
gInputBoxIndex = 0;
gFM_ChannelPosition = Channel;
return;
}
2023-09-11 00:02:57 +01:00
2023-09-09 08:03:56 +01:00
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
return;
}
2023-09-14 09:56:30 +01:00
#ifdef ENABLE_VOICE
2023-10-08 17:14:13 +01:00
g_another_voice_id = (voice_id_t)Key;
2023-09-09 08:03:56 +01:00
#endif
2023-09-11 00:02:57 +01:00
2023-09-09 08:03:56 +01:00
return;
}
2023-09-11 00:02:57 +01:00
gBeepToPlay = BEEP_1KHZ_60MS_OPTIONAL;
2023-10-08 17:14:13 +01:00
g_was_f_key_pressed = false;
2023-09-11 00:02:57 +01:00
gUpdateStatus = true;
2023-09-09 08:03:56 +01:00
gRequestDisplayScreen = DISPLAY_FM;
2023-09-11 00:02:57 +01:00
switch (Key)
{
case KEY_0:
ACTION_FM();
break;
2023-09-09 08:03:56 +01:00
2023-09-11 00:02:57 +01:00
case KEY_1:
2023-10-08 17:14:13 +01:00
g_eeprom.fm_is_channel_mode = !g_eeprom.fm_is_channel_mode;
2023-09-09 08:03:56 +01:00
2023-09-11 00:02:57 +01:00
if (!FM_ConfigureChannelState())
{
2023-10-08 17:14:13 +01:00
BK1080_SetFrequency(g_eeprom.fm_frequency_playing);
2023-09-11 00:02:57 +01:00
gRequestSaveFM = true;
}
else
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
break;
2023-09-09 08:03:56 +01:00
2023-09-11 00:02:57 +01:00
case KEY_2:
ACTION_Scan(true);
break;
case KEY_3:
ACTION_Scan(false);
break;
default:
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
break;
2023-09-09 08:03:56 +01:00
}
}
}
static void FM_Key_EXIT(bool bKeyPressed, bool bKeyHeld)
{
2023-09-11 00:02:57 +01:00
if (bKeyHeld)
2023-09-09 08:03:56 +01:00
return;
2023-09-11 00:02:57 +01:00
if (!bKeyPressed)
2023-09-09 08:03:56 +01:00
return;
2023-09-11 00:02:57 +01:00
2023-09-09 08:03:56 +01:00
gBeepToPlay = BEEP_1KHZ_60MS_OPTIONAL;
2023-09-11 00:02:57 +01:00
if (gFM_ScanState == FM_SCAN_OFF)
{
if (gInputBoxIndex == 0)
{
if (!gAskToSave && !gAskToDelete)
{
2023-09-09 08:03:56 +01:00
ACTION_FM();
return;
}
2023-09-11 00:02:57 +01:00
gAskToSave = false;
2023-09-09 08:03:56 +01:00
gAskToDelete = false;
2023-09-11 00:02:57 +01:00
}
else
{
gInputBox[--gInputBoxIndex] = 10;
if (gInputBoxIndex)
{
if (gInputBoxIndex != 1)
{
2023-09-09 08:03:56 +01:00
gRequestDisplayScreen = DISPLAY_FM;
return;
}
2023-09-11 00:02:57 +01:00
if (gInputBox[0] != 0)
{
2023-09-09 08:03:56 +01:00
gRequestDisplayScreen = DISPLAY_FM;
return;
}
}
2023-09-11 00:02:57 +01:00
2023-09-09 08:03:56 +01:00
gInputBoxIndex = 0;
}
2023-09-14 09:56:30 +01:00
#ifdef ENABLE_VOICE
2023-10-08 17:14:13 +01:00
g_another_voice_id = VOICE_ID_CANCEL;
2023-09-09 08:03:56 +01:00
#endif
}
else
{
FM_PlayAndUpdate();
2023-09-14 09:56:30 +01:00
#ifdef ENABLE_VOICE
2023-10-08 17:14:13 +01:00
g_another_voice_id = VOICE_ID_SCANNING_STOP;
2023-09-09 08:03:56 +01:00
#endif
}
gRequestDisplayScreen = DISPLAY_FM;
}
static void FM_Key_MENU(bool bKeyPressed, bool bKeyHeld)
{
2023-09-11 00:02:57 +01:00
if (bKeyHeld)
2023-09-09 08:03:56 +01:00
return;
2023-09-11 00:02:57 +01:00
if (!bKeyPressed)
2023-09-09 08:03:56 +01:00
return;
gRequestDisplayScreen = DISPLAY_FM;
2023-09-11 00:02:57 +01:00
gBeepToPlay = BEEP_1KHZ_60MS_OPTIONAL;
2023-09-09 08:03:56 +01:00
2023-09-11 00:02:57 +01:00
if (gFM_ScanState == FM_SCAN_OFF)
{
2023-10-08 17:14:13 +01:00
if (!g_eeprom.fm_is_channel_mode)
2023-09-11 00:02:57 +01:00
{
if (gAskToSave)
{
2023-10-08 17:14:13 +01:00
gFM_Channels[gFM_ChannelPosition] = g_eeprom.fm_frequency_playing;
2023-09-11 00:02:57 +01:00
gAskToSave = false;
gRequestSaveFM = true;
2023-09-09 08:03:56 +01:00
}
2023-09-11 00:02:57 +01:00
else
gAskToSave = true;
}
else
{
if (gAskToDelete)
{
2023-10-08 17:14:13 +01:00
gFM_Channels[g_eeprom.fm_selected_channel] = 0xFFFF;
2023-09-11 00:02:57 +01:00
2023-09-09 08:03:56 +01:00
FM_ConfigureChannelState();
2023-10-08 17:14:13 +01:00
BK1080_SetFrequency(g_eeprom.fm_frequency_playing);
2023-09-11 00:02:57 +01:00
2023-09-09 08:03:56 +01:00
gRequestSaveFM = true;
2023-09-11 00:02:57 +01:00
gAskToDelete = false;
2023-09-09 08:03:56 +01:00
}
2023-09-11 00:02:57 +01:00
else
gAskToDelete = true;
2023-09-09 08:03:56 +01:00
}
2023-09-11 00:02:57 +01:00
}
else
{
if (gFM_AutoScan || !gFM_FoundFrequency)
{
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
2023-09-09 08:03:56 +01:00
gInputBoxIndex = 0;
return;
2023-09-11 00:02:57 +01:00
}
if (gAskToSave)
{
2023-10-08 17:14:13 +01:00
gFM_Channels[gFM_ChannelPosition] = g_eeprom.fm_frequency_playing;
2023-09-11 00:02:57 +01:00
gAskToSave = false;
2023-09-09 08:03:56 +01:00
gRequestSaveFM = true;
}
2023-09-11 00:02:57 +01:00
else
gAskToSave = true;
2023-09-09 08:03:56 +01:00
}
}
static void FM_Key_UP_DOWN(bool bKeyPressed, bool bKeyHeld, int8_t Step)
{
2023-09-11 00:02:57 +01:00
if (bKeyHeld || !bKeyPressed)
{
if (gInputBoxIndex)
2023-09-09 08:03:56 +01:00
return;
2023-09-11 00:02:57 +01:00
if (!bKeyPressed)
2023-09-09 08:03:56 +01:00
return;
2023-09-11 00:02:57 +01:00
}
else
{
if (gInputBoxIndex)
{
2023-09-09 08:03:56 +01:00
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
return;
}
2023-09-11 00:02:57 +01:00
2023-09-09 08:03:56 +01:00
gBeepToPlay = BEEP_1KHZ_60MS_OPTIONAL;
}
2023-09-11 00:02:57 +01:00
if (gAskToSave)
{
2023-09-09 08:03:56 +01:00
gRequestDisplayScreen = DISPLAY_FM;
2023-09-11 00:02:57 +01:00
gFM_ChannelPosition = NUMBER_AddWithWraparound(gFM_ChannelPosition, Step, 0, 19);
2023-09-09 08:03:56 +01:00
return;
}
2023-09-11 00:02:57 +01:00
if (gFM_ScanState != FM_SCAN_OFF)
{
if (gFM_AutoScan)
{
2023-09-09 08:03:56 +01:00
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
return;
}
2023-09-11 00:02:57 +01:00
2023-10-08 17:14:13 +01:00
FM_Tune(g_eeprom.fm_frequency_playing, Step, false);
2023-09-09 08:03:56 +01:00
gRequestDisplayScreen = DISPLAY_FM;
return;
}
2023-10-08 17:14:13 +01:00
if (g_eeprom.fm_is_channel_mode)
2023-09-11 00:02:57 +01:00
{
2023-10-08 17:14:13 +01:00
const uint8_t Channel = FM_FindNextChannel(g_eeprom.fm_selected_channel + Step, Step);
if (Channel == 0xFF || g_eeprom.fm_selected_channel == Channel)
2023-09-09 08:03:56 +01:00
goto Bail;
2023-10-08 17:14:13 +01:00
g_eeprom.fm_selected_channel = Channel;
g_eeprom.fm_frequency_playing = gFM_Channels[Channel];
2023-09-11 00:02:57 +01:00
}
else
{
2023-10-08 17:14:13 +01:00
uint16_t Frequency = g_eeprom.fm_selected_frequency + Step;
if (Frequency < g_eeprom.fm_lower_limit)
Frequency = g_eeprom.fm_upper_limit;
2023-09-11 00:02:57 +01:00
else
2023-10-08 17:14:13 +01:00
if (Frequency > g_eeprom.fm_upper_limit)
Frequency = g_eeprom.fm_lower_limit;
2023-09-11 00:02:57 +01:00
2023-10-08 17:14:13 +01:00
g_eeprom.fm_frequency_playing = Frequency;
g_eeprom.fm_selected_frequency = g_eeprom.fm_frequency_playing;
2023-09-09 08:03:56 +01:00
}
2023-09-11 00:02:57 +01:00
2023-09-09 08:03:56 +01:00
gRequestSaveFM = true;
Bail:
2023-10-08 17:14:13 +01:00
BK1080_SetFrequency(g_eeprom.fm_frequency_playing);
2023-09-11 00:02:57 +01:00
2023-09-09 08:03:56 +01:00
gRequestDisplayScreen = DISPLAY_FM;
}
2023-10-08 17:14:13 +01:00
void FM_ProcessKeys(key_code_t Key, bool bKeyPressed, bool bKeyHeld)
2023-09-09 08:03:56 +01:00
{
2023-09-11 00:02:57 +01:00
switch (Key)
{
case KEY_0:
case KEY_1:
case KEY_2:
case KEY_3:
case KEY_4:
case KEY_5:
case KEY_6:
case KEY_7:
case KEY_8:
case KEY_9:
FM_Key_DIGITS(Key, bKeyPressed, bKeyHeld);
break;
case KEY_MENU:
FM_Key_MENU(bKeyPressed, bKeyHeld);
return;
case KEY_UP:
FM_Key_UP_DOWN(bKeyPressed, bKeyHeld, 1);
break;
case KEY_DOWN:
FM_Key_UP_DOWN(bKeyPressed, bKeyHeld, -1);
break;;
case KEY_EXIT:
FM_Key_EXIT(bKeyPressed, bKeyHeld);
break;
case KEY_F:
GENERIC_Key_F(bKeyPressed, bKeyHeld);
break;
case KEY_PTT:
GENERIC_Key_PTT(bKeyPressed);
break;
default:
if (!bKeyHeld && bKeyPressed)
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
break;
2023-09-09 08:03:56 +01:00
}
}
void FM_Play(void)
{
2023-10-08 17:14:13 +01:00
if (!FM_CheckFrequencyLock(g_eeprom.fm_frequency_playing, g_eeprom.fm_lower_limit))
2023-09-11 00:02:57 +01:00
{
if (!gFM_AutoScan)
{
2023-09-17 09:54:24 +01:00
gFmPlayCountdown_10ms = 0;
gFM_FoundFrequency = true;
2023-09-11 00:02:57 +01:00
2023-10-08 17:14:13 +01:00
if (!g_eeprom.fm_is_channel_mode)
g_eeprom.fm_selected_frequency = g_eeprom.fm_frequency_playing;
2023-09-11 00:02:57 +01:00
2023-09-09 08:03:56 +01:00
GPIO_SetBit(&GPIOC->DATA, GPIOC_PIN_AUDIO_PATH);
gEnableSpeaker = true;
2023-09-11 00:02:57 +01:00
2023-09-09 08:03:56 +01:00
GUI_SelectNextDisplay(DISPLAY_FM);
return;
}
2023-09-11 00:02:57 +01:00
if (gFM_ChannelPosition < 20)
2023-10-08 17:14:13 +01:00
gFM_Channels[gFM_ChannelPosition++] = g_eeprom.fm_frequency_playing;
2023-09-11 00:02:57 +01:00
if (gFM_ChannelPosition >= 20)
{
2023-09-09 08:03:56 +01:00
FM_PlayAndUpdate();
GUI_SelectNextDisplay(DISPLAY_FM);
return;
}
}
2023-10-08 17:14:13 +01:00
if (gFM_AutoScan && g_eeprom.fm_frequency_playing >= g_eeprom.fm_upper_limit)
2023-09-09 08:03:56 +01:00
FM_PlayAndUpdate();
2023-09-11 00:02:57 +01:00
else
2023-10-08 17:14:13 +01:00
FM_Tune(g_eeprom.fm_frequency_playing, gFM_ScanState, false);
2023-09-09 08:03:56 +01:00
GUI_SelectNextDisplay(DISPLAY_FM);
}
void FM_Start(void)
{
2023-09-25 13:27:52 +01:00
gFmRadioMode = true;
gFM_ScanState = FM_SCAN_OFF;
gFM_RestoreCountdown_10ms = 0;
2023-09-11 00:02:57 +01:00
2023-10-08 17:14:13 +01:00
BK1080_Init(g_eeprom.fm_frequency_playing, true);
2023-09-11 00:02:57 +01:00
2023-09-09 08:03:56 +01:00
GPIO_SetBit(&GPIOC->DATA, GPIOC_PIN_AUDIO_PATH);
2023-09-11 00:02:57 +01:00
gEnableSpeaker = true;
gUpdateStatus = true;
}
2023-09-14 09:56:30 +01:00
#endif