2023-09-09 07:03:56 +00: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-12-16 17:34:05 +00:00
|
|
|
#include <stdint.h>
|
2023-09-09 07:03:56 +00:00
|
|
|
#include <string.h>
|
2023-09-21 06:31:29 +00:00
|
|
|
#include <stdio.h> // NULL
|
2023-09-09 07:03:56 +00:00
|
|
|
|
2023-09-26 10:41:10 +00:00
|
|
|
#ifdef ENABLE_AM_FIX
|
|
|
|
#include "am_fix.h"
|
|
|
|
#endif
|
2023-12-16 17:34:05 +00:00
|
|
|
|
|
|
|
#include "audio.h"
|
|
|
|
#include "board.h"
|
|
|
|
#include "misc.h"
|
|
|
|
#include "radio.h"
|
|
|
|
#include "settings.h"
|
|
|
|
#include "version.h"
|
|
|
|
|
2023-09-09 07:03:56 +00:00
|
|
|
#include "app/app.h"
|
|
|
|
#include "app/dtmf.h"
|
|
|
|
#include "bsp/dp32g030/gpio.h"
|
|
|
|
#include "bsp/dp32g030/syscon.h"
|
2023-12-16 17:34:05 +00:00
|
|
|
|
2023-09-09 07:03:56 +00:00
|
|
|
#include "driver/backlight.h"
|
|
|
|
#include "driver/bk4819.h"
|
|
|
|
#include "driver/gpio.h"
|
|
|
|
#include "driver/system.h"
|
|
|
|
#include "driver/systick.h"
|
2023-12-14 19:04:06 +00:00
|
|
|
#ifdef ENABLE_UART
|
|
|
|
#include "driver/uart.h"
|
|
|
|
#endif
|
2023-12-16 17:34:05 +00:00
|
|
|
|
2023-09-09 07:03:56 +00:00
|
|
|
#include "helper/battery.h"
|
|
|
|
#include "helper/boot.h"
|
2023-12-16 17:34:05 +00:00
|
|
|
|
2023-09-09 07:03:56 +00:00
|
|
|
#include "ui/lock.h"
|
|
|
|
#include "ui/welcome.h"
|
2023-09-15 05:28:45 +00:00
|
|
|
#include "ui/menu.h"
|
2023-12-14 19:04:06 +00:00
|
|
|
void _putchar(__attribute__((unused)) char c)
|
2023-09-09 07:03:56 +00:00
|
|
|
{
|
2023-12-14 19:04:06 +00:00
|
|
|
|
|
|
|
#ifdef ENABLE_UART
|
2023-09-09 07:03:56 +00:00
|
|
|
UART_Send((uint8_t *)&c, 1);
|
2023-12-14 19:04:06 +00:00
|
|
|
#endif
|
|
|
|
|
2023-09-09 07:03:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Main(void)
|
|
|
|
{
|
|
|
|
// Enable clock gating of blocks we need
|
|
|
|
SYSCON_DEV_CLK_GATE = 0
|
|
|
|
| SYSCON_DEV_CLK_GATE_GPIOA_BITS_ENABLE
|
|
|
|
| SYSCON_DEV_CLK_GATE_GPIOB_BITS_ENABLE
|
|
|
|
| SYSCON_DEV_CLK_GATE_GPIOC_BITS_ENABLE
|
|
|
|
| SYSCON_DEV_CLK_GATE_UART1_BITS_ENABLE
|
|
|
|
| SYSCON_DEV_CLK_GATE_SPI0_BITS_ENABLE
|
|
|
|
| SYSCON_DEV_CLK_GATE_SARADC_BITS_ENABLE
|
|
|
|
| SYSCON_DEV_CLK_GATE_CRC_BITS_ENABLE
|
2023-10-25 18:47:14 +00:00
|
|
|
| SYSCON_DEV_CLK_GATE_AES_BITS_ENABLE
|
|
|
|
| SYSCON_DEV_CLK_GATE_PWM_PLUS0_BITS_ENABLE;
|
2023-09-09 07:03:56 +00:00
|
|
|
|
2023-12-16 17:34:05 +00:00
|
|
|
|
2023-09-09 07:03:56 +00:00
|
|
|
SYSTICK_Init();
|
|
|
|
BOARD_Init();
|
2023-09-16 08:31:20 +00:00
|
|
|
|
2023-09-21 22:06:47 +00:00
|
|
|
boot_counter_10ms = 250; // 2.5 sec
|
2023-10-01 13:34:51 +00:00
|
|
|
|
2023-12-14 19:04:06 +00:00
|
|
|
#ifdef ENABLE_UART
|
|
|
|
UART_Init();
|
2023-09-13 08:20:09 +00:00
|
|
|
UART_Send(UART_Version, strlen(UART_Version));
|
2023-12-14 19:04:06 +00:00
|
|
|
#endif
|
2023-09-09 07:03:56 +00:00
|
|
|
|
|
|
|
// Not implementing authentic device checks
|
|
|
|
|
|
|
|
memset(gDTMF_String, '-', sizeof(gDTMF_String));
|
2023-09-17 15:51:35 +00:00
|
|
|
gDTMF_String[sizeof(gDTMF_String) - 1] = 0;
|
2023-09-09 07:03:56 +00:00
|
|
|
|
|
|
|
BK4819_Init();
|
|
|
|
|
|
|
|
BOARD_ADC_GetBatteryInfo(&gBatteryCurrentVoltage, &gBatteryCurrent);
|
|
|
|
|
2023-12-02 21:41:47 +00:00
|
|
|
SETTINGS_InitEEPROM();
|
2023-12-07 21:50:23 +00:00
|
|
|
SETTINGS_WriteBuildOptions();
|
2023-12-02 21:41:47 +00:00
|
|
|
SETTINGS_LoadCalibration();
|
2023-09-09 07:03:56 +00:00
|
|
|
|
2023-09-28 21:42:52 +00:00
|
|
|
RADIO_ConfigureChannel(0, VFO_CONFIGURE_RELOAD);
|
|
|
|
RADIO_ConfigureChannel(1, VFO_CONFIGURE_RELOAD);
|
2023-09-09 07:03:56 +00:00
|
|
|
|
|
|
|
RADIO_SelectVfos();
|
|
|
|
|
|
|
|
RADIO_SetupRegisters(true);
|
|
|
|
|
2023-12-14 19:04:06 +00:00
|
|
|
for (unsigned int i = 0; i < ARRAY_SIZE(gBatteryVoltages); i++)
|
2023-09-15 05:28:45 +00:00
|
|
|
BOARD_ADC_GetBatteryInfo(&gBatteryVoltages[i], &gBatteryCurrent);
|
2023-09-16 08:31:20 +00:00
|
|
|
|
2023-09-09 07:03:56 +00:00
|
|
|
BATTERY_GetReadings(false);
|
|
|
|
|
2023-12-16 17:34:05 +00:00
|
|
|
#ifdef ENABLE_AM_FIX
|
|
|
|
AM_fix_init();
|
|
|
|
#endif
|
2023-09-26 10:41:10 +00:00
|
|
|
|
2023-12-14 19:04:06 +00:00
|
|
|
const BOOT_Mode_t BootMode = BOOT_GetMode();
|
|
|
|
|
2023-10-01 23:38:59 +00:00
|
|
|
if (BootMode == BOOT_MODE_F_LOCK)
|
2023-10-02 19:52:18 +00:00
|
|
|
{
|
|
|
|
gF_LOCK = true; // flag to say include the hidden menu items
|
|
|
|
}
|
2023-10-01 23:38:59 +00:00
|
|
|
|
2023-10-17 11:34:18 +00:00
|
|
|
// count the number of menu items
|
|
|
|
gMenuListCount = 0;
|
|
|
|
while (MenuList[gMenuListCount].name[0] != '\0') {
|
|
|
|
if(!gF_LOCK && MenuList[gMenuListCount].menu_id == FIRST_HIDDEN_MENU_ITEM)
|
|
|
|
break;
|
2023-10-02 19:52:18 +00:00
|
|
|
|
2023-10-17 11:34:18 +00:00
|
|
|
gMenuListCount++;
|
2023-10-02 19:52:18 +00:00
|
|
|
}
|
2023-10-17 11:34:18 +00:00
|
|
|
|
2023-10-01 23:38:59 +00:00
|
|
|
// wait for user to release all butts before moving on
|
|
|
|
if (!GPIO_CheckBit(&GPIOC->DATA, GPIOC_PIN_PTT) ||
|
|
|
|
KEYBOARD_Poll() != KEY_INVALID ||
|
|
|
|
BootMode != BOOT_MODE_NORMAL)
|
2023-10-01 13:34:51 +00:00
|
|
|
{ // keys are pressed
|
|
|
|
UI_DisplayReleaseKeys();
|
|
|
|
BACKLIGHT_TurnOn();
|
2023-12-14 19:04:06 +00:00
|
|
|
|
|
|
|
// 500ms
|
|
|
|
for (int i = 0; i < 50;)
|
2023-10-01 13:34:51 +00:00
|
|
|
{
|
|
|
|
i = (GPIO_CheckBit(&GPIOC->DATA, GPIOC_PIN_PTT) && KEYBOARD_Poll() == KEY_INVALID) ? i + 1 : 0;
|
|
|
|
SYSTEM_DelayMs(10);
|
|
|
|
}
|
2023-10-01 23:38:59 +00:00
|
|
|
gKeyReading0 = KEY_INVALID;
|
|
|
|
gKeyReading1 = KEY_INVALID;
|
|
|
|
gDebounceCounter = 0;
|
2023-10-01 13:34:51 +00:00
|
|
|
}
|
|
|
|
|
2023-10-02 09:40:27 +00:00
|
|
|
if (!gChargingWithTypeC && gBatteryDisplayLevel == 0)
|
2023-09-09 07:03:56 +00:00
|
|
|
{
|
|
|
|
FUNCTION_Select(FUNCTION_POWER_SAVE);
|
2023-09-10 16:57:12 +00:00
|
|
|
|
2023-10-25 18:47:14 +00:00
|
|
|
if (gEeprom.BACKLIGHT_TIME < (ARRAY_SIZE(gSubMenu_BACKLIGHT) - 1)) // backlight is not set to be always on
|
|
|
|
BACKLIGHT_TurnOff(); // turn the backlight OFF
|
2023-09-10 16:57:12 +00:00
|
|
|
else
|
2023-10-25 18:47:14 +00:00
|
|
|
BACKLIGHT_TurnOn(); // turn the backlight ON
|
2023-09-10 16:57:12 +00:00
|
|
|
|
2023-09-09 07:03:56 +00:00
|
|
|
gReducedService = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2023-09-15 05:28:45 +00:00
|
|
|
UI_DisplayWelcome();
|
2023-10-01 13:34:51 +00:00
|
|
|
|
2023-09-09 07:03:56 +00:00
|
|
|
BACKLIGHT_TurnOn();
|
|
|
|
|
2023-09-15 05:28:45 +00:00
|
|
|
if (gEeprom.POWER_ON_DISPLAY_MODE != POWER_ON_DISPLAY_MODE_NONE)
|
|
|
|
{ // 2.55 second boot-up screen
|
2023-09-18 07:30:24 +00:00
|
|
|
while (boot_counter_10ms > 0)
|
2023-09-15 05:28:45 +00:00
|
|
|
{
|
2023-09-18 07:30:24 +00:00
|
|
|
if (KEYBOARD_Poll() != KEY_INVALID)
|
|
|
|
{ // halt boot beeps
|
2023-10-01 13:34:51 +00:00
|
|
|
boot_counter_10ms = 0;
|
2023-09-18 07:30:24 +00:00
|
|
|
break;
|
|
|
|
}
|
2023-10-16 23:31:08 +00:00
|
|
|
#ifdef ENABLE_BOOT_BEEPS
|
|
|
|
if ((boot_counter_10ms % 25) == 0)
|
|
|
|
AUDIO_PlayBeep(BEEP_880HZ_40MS_OPTIONAL);
|
|
|
|
#endif
|
2023-09-15 05:28:45 +00:00
|
|
|
}
|
|
|
|
}
|
2023-09-16 08:31:20 +00:00
|
|
|
|
2023-10-16 23:31:08 +00:00
|
|
|
#ifdef ENABLE_PWRON_PASSWORD
|
|
|
|
if (gEeprom.POWER_ON_PASSWORD < 1000000)
|
|
|
|
{
|
|
|
|
bIsInLockScreen = true;
|
|
|
|
UI_DisplayLock();
|
|
|
|
bIsInLockScreen = false;
|
|
|
|
}
|
|
|
|
#endif
|
2023-09-09 07:03:56 +00:00
|
|
|
|
|
|
|
BOOT_ProcessMode(BootMode);
|
|
|
|
|
|
|
|
GPIO_ClearBit(&GPIOA->DATA, GPIOA_PIN_VOICE_0);
|
|
|
|
|
|
|
|
gUpdateStatus = true;
|
|
|
|
|
2023-10-16 23:31:08 +00:00
|
|
|
#ifdef ENABLE_VOICE
|
2023-09-09 07:03:56 +00:00
|
|
|
{
|
|
|
|
uint8_t Channel;
|
2023-09-16 08:31:20 +00:00
|
|
|
|
2023-09-09 07:03:56 +00:00
|
|
|
AUDIO_SetVoiceID(0, VOICE_ID_WELCOME);
|
2023-09-16 08:31:20 +00:00
|
|
|
|
2023-10-05 00:07:04 +00:00
|
|
|
Channel = gEeprom.ScreenChannel[gEeprom.TX_VFO];
|
2023-09-09 07:03:56 +00:00
|
|
|
if (IS_MR_CHANNEL(Channel))
|
|
|
|
{
|
|
|
|
AUDIO_SetVoiceID(1, VOICE_ID_CHANNEL_MODE);
|
|
|
|
AUDIO_SetDigitVoice(2, Channel + 1);
|
|
|
|
}
|
2023-10-16 23:31:08 +00:00
|
|
|
else if (IS_FREQ_CHANNEL(Channel))
|
2023-09-09 07:03:56 +00:00
|
|
|
AUDIO_SetVoiceID(1, VOICE_ID_FREQUENCY_MODE);
|
|
|
|
|
|
|
|
AUDIO_PlaySingleVoice(0);
|
|
|
|
}
|
2023-10-16 23:31:08 +00:00
|
|
|
#endif
|
2023-09-09 07:03:56 +00:00
|
|
|
|
2023-10-16 23:31:08 +00:00
|
|
|
#ifdef ENABLE_NOAA
|
|
|
|
RADIO_ConfigureNOAA();
|
|
|
|
#endif
|
2023-09-09 07:03:56 +00:00
|
|
|
}
|
|
|
|
|
2023-12-16 17:34:05 +00:00
|
|
|
while (true) {
|
2023-09-09 07:03:56 +00:00
|
|
|
APP_Update();
|
|
|
|
|
2023-12-16 17:34:05 +00:00
|
|
|
if (gNextTimeslice) {
|
|
|
|
|
2023-09-09 07:03:56 +00:00
|
|
|
APP_TimeSlice10ms();
|
|
|
|
|
2023-12-16 17:34:05 +00:00
|
|
|
if (gNextTimeslice_500ms) {
|
|
|
|
APP_TimeSlice500ms();
|
|
|
|
}
|
2023-09-09 07:03:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|