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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
2023-09-21 07:31:29 +01:00
|
|
|
#include <stdio.h> // NULL
|
2023-09-09 08:03:56 +01:00
|
|
|
|
2023-09-26 11:41:10 +01:00
|
|
|
#ifdef ENABLE_AM_FIX
|
|
|
|
#include "am_fix.h"
|
|
|
|
#endif
|
2023-09-09 08:03:56 +01:00
|
|
|
#include "app/app.h"
|
|
|
|
#include "app/dtmf.h"
|
|
|
|
#include "audio.h"
|
|
|
|
#include "bsp/dp32g030/gpio.h"
|
|
|
|
#include "bsp/dp32g030/syscon.h"
|
|
|
|
#include "board.h"
|
|
|
|
#include "driver/backlight.h"
|
|
|
|
#include "driver/bk4819.h"
|
|
|
|
#include "driver/gpio.h"
|
2023-10-10 03:56:28 +01:00
|
|
|
#include "driver/st7565.h"
|
2023-09-09 08:03:56 +01:00
|
|
|
#include "driver/system.h"
|
|
|
|
#include "driver/systick.h"
|
|
|
|
#include "driver/uart.h"
|
|
|
|
#include "helper/battery.h"
|
|
|
|
#include "helper/boot.h"
|
|
|
|
#include "misc.h"
|
|
|
|
#include "radio.h"
|
|
|
|
#include "settings.h"
|
|
|
|
#include "ui/lock.h"
|
|
|
|
#include "ui/welcome.h"
|
2023-09-15 06:28:45 +01:00
|
|
|
#include "ui/menu.h"
|
2023-09-13 09:20:09 +01:00
|
|
|
#include "version.h"
|
2023-09-09 08:03:56 +01:00
|
|
|
|
|
|
|
void _putchar(char c)
|
|
|
|
{
|
|
|
|
UART_Send((uint8_t *)&c, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Main(void)
|
|
|
|
{
|
2023-09-15 06:28:45 +01:00
|
|
|
unsigned int i;
|
2023-10-01 14:34:51 +01:00
|
|
|
BOOT_Mode_t BootMode;
|
2023-09-15 06:28:45 +01:00
|
|
|
|
2023-09-09 08:03:56 +01:00
|
|
|
// 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
|
|
|
|
| SYSCON_DEV_CLK_GATE_AES_BITS_ENABLE;
|
|
|
|
|
|
|
|
SYSTICK_Init();
|
|
|
|
BOARD_Init();
|
|
|
|
UART_Init();
|
2023-09-16 09:31:20 +01:00
|
|
|
|
2023-10-08 20:23:37 +01:00
|
|
|
g_boot_counter_10ms = 250; // 2.5 sec
|
2023-10-01 14:34:51 +01:00
|
|
|
|
2023-10-08 23:08:18 +01:00
|
|
|
#if defined(ENABLE_UART) && defined(ENABLE_UART_DEBUG)
|
|
|
|
UART_SendText(UART_Version);
|
|
|
|
#endif
|
2023-09-09 08:03:56 +01:00
|
|
|
|
|
|
|
// Not implementing authentic device checks
|
|
|
|
|
2023-10-08 17:14:13 +01:00
|
|
|
memset(&g_eeprom, 0, sizeof(g_eeprom));
|
2023-09-09 08:03:56 +01:00
|
|
|
|
2023-10-08 20:23:37 +01:00
|
|
|
memset(g_dtmf_string, '-', sizeof(g_dtmf_string));
|
|
|
|
g_dtmf_string[sizeof(g_dtmf_string) - 1] = 0;
|
2023-09-09 08:03:56 +01:00
|
|
|
|
|
|
|
BK4819_Init();
|
|
|
|
|
2023-10-10 10:52:57 +01:00
|
|
|
BOARD_ADC_GetBatteryInfo(&g_usb_current_voltage, &g_usb_current);
|
2023-09-09 08:03:56 +01:00
|
|
|
|
|
|
|
BOARD_EEPROM_Init();
|
|
|
|
|
|
|
|
BOARD_EEPROM_LoadMoreSettings();
|
|
|
|
|
2023-09-28 22:42:52 +01:00
|
|
|
RADIO_ConfigureChannel(0, VFO_CONFIGURE_RELOAD);
|
|
|
|
RADIO_ConfigureChannel(1, VFO_CONFIGURE_RELOAD);
|
2023-09-09 08:03:56 +01:00
|
|
|
|
|
|
|
RADIO_SelectVfos();
|
|
|
|
|
|
|
|
RADIO_SetupRegisters(true);
|
|
|
|
|
2023-10-08 20:23:37 +01:00
|
|
|
for (i = 0; i < ARRAY_SIZE(g_battery_voltages); i++)
|
2023-10-10 10:52:57 +01:00
|
|
|
BOARD_ADC_GetBatteryInfo(&g_battery_voltages[i], &g_usb_current);
|
2023-09-16 09:31:20 +01:00
|
|
|
|
2023-09-09 08:03:56 +01:00
|
|
|
BATTERY_GetReadings(false);
|
|
|
|
|
2023-09-26 11:41:10 +01:00
|
|
|
#ifdef ENABLE_AM_FIX
|
|
|
|
AM_fix_init();
|
|
|
|
#endif
|
|
|
|
|
2023-10-01 14:34:51 +01:00
|
|
|
BootMode = BOOT_GetMode();
|
|
|
|
|
2023-10-08 20:23:37 +01:00
|
|
|
g_f_lock = (BootMode == BOOT_MODE_F_LOCK); // flag to say include the hidden menu items
|
2023-10-07 09:14:25 +01:00
|
|
|
|
2023-10-08 23:08:18 +01:00
|
|
|
#if defined(ENABLE_UART) && defined(ENABLE_UART_DEBUG)
|
|
|
|
if (g_f_lock)
|
|
|
|
UART_SendText("boot_f_lock\r\n");
|
|
|
|
#endif
|
|
|
|
|
2023-10-07 09:14:25 +01:00
|
|
|
// sort the menu list
|
2023-10-08 20:23:37 +01:00
|
|
|
UI_SortMenu(!g_f_lock);
|
2023-10-02 20:52:18 +01:00
|
|
|
|
2023-10-10 03:56:28 +01:00
|
|
|
ST7565_SetContrast(g_setting_contrast);
|
|
|
|
|
2023-10-02 00:38:59 +01: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 14:34:51 +01:00
|
|
|
{ // keys are pressed
|
|
|
|
UI_DisplayReleaseKeys();
|
2023-10-08 17:14:13 +01:00
|
|
|
backlight_turn_on();
|
2023-10-01 14:34:51 +01:00
|
|
|
i = 0;
|
|
|
|
while (i < 50) // 500ms
|
|
|
|
{
|
|
|
|
i = (GPIO_CheckBit(&GPIOC->DATA, GPIOC_PIN_PTT) && KEYBOARD_Poll() == KEY_INVALID) ? i + 1 : 0;
|
|
|
|
SYSTEM_DelayMs(10);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-08 20:23:37 +01:00
|
|
|
if (!g_charging_with_type_c && g_battery_display_level == 0)
|
2023-09-09 08:03:56 +01:00
|
|
|
{
|
|
|
|
FUNCTION_Select(FUNCTION_POWER_SAVE);
|
2023-09-10 17:57:12 +01:00
|
|
|
|
2023-10-08 20:23:37 +01:00
|
|
|
if (g_eeprom.backlight < (ARRAY_SIZE(g_sub_menu_backlight) - 1))
|
2023-09-10 17:57:12 +01:00
|
|
|
GPIO_ClearBit(&GPIOB->DATA, GPIOB_PIN_BACKLIGHT); // turn the backlight OFF
|
|
|
|
else
|
|
|
|
GPIO_SetBit(&GPIOB->DATA, GPIOB_PIN_BACKLIGHT); // turn the backlight ON
|
|
|
|
|
2023-10-08 20:23:37 +01:00
|
|
|
g_reduced_service = true;
|
2023-09-09 08:03:56 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2023-09-15 06:28:45 +01:00
|
|
|
UI_DisplayWelcome();
|
2023-10-01 14:34:51 +01:00
|
|
|
|
2023-10-08 17:14:13 +01:00
|
|
|
backlight_turn_on();
|
2023-09-09 08:03:56 +01:00
|
|
|
|
2023-10-10 10:42:22 +01:00
|
|
|
#ifdef ENABLE_VOICE
|
|
|
|
AUDIO_SetVoiceID(0, VOICE_ID_WELCOME);
|
|
|
|
AUDIO_PlaySingleVoice(0);
|
|
|
|
#endif
|
|
|
|
|
2023-10-08 17:14:13 +01:00
|
|
|
if (g_eeprom.pwr_on_display_mode != PWR_ON_DISPLAY_MODE_NONE)
|
2023-09-15 06:28:45 +01:00
|
|
|
{ // 2.55 second boot-up screen
|
2023-10-08 20:23:37 +01:00
|
|
|
while (g_boot_counter_10ms > 0)
|
2023-09-15 06:28:45 +01:00
|
|
|
{
|
2023-09-18 08:30:24 +01:00
|
|
|
if (KEYBOARD_Poll() != KEY_INVALID)
|
2023-10-10 10:42:22 +01:00
|
|
|
{ // halt boot beeps and cancel boot screen
|
2023-10-08 20:23:37 +01:00
|
|
|
g_boot_counter_10ms = 0;
|
2023-09-18 08:30:24 +01:00
|
|
|
break;
|
|
|
|
}
|
2023-09-15 06:28:45 +01:00
|
|
|
#ifdef ENABLE_BOOT_BEEPS
|
2023-10-08 20:23:37 +01:00
|
|
|
if ((g_boot_counter_10ms % 25) == 0)
|
2023-09-15 22:48:06 +01:00
|
|
|
AUDIO_PlayBeep(BEEP_880HZ_40MS_OPTIONAL);
|
2023-09-15 06:28:45 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
2023-09-16 09:31:20 +01:00
|
|
|
|
2023-10-06 00:18:47 +01:00
|
|
|
#ifdef ENABLE_PWRON_PASSWORD
|
2023-10-08 17:14:13 +01:00
|
|
|
if (g_eeprom.power_on_password < 1000000)
|
2023-10-06 00:18:47 +01:00
|
|
|
{
|
2023-10-08 20:23:37 +01:00
|
|
|
g_is_in_lock_screen = true;
|
2023-10-06 00:18:47 +01:00
|
|
|
UI_DisplayLock();
|
2023-10-08 20:23:37 +01:00
|
|
|
g_is_in_lock_screen = false;
|
2023-10-06 00:18:47 +01:00
|
|
|
}
|
|
|
|
#endif
|
2023-09-09 08:03:56 +01:00
|
|
|
|
|
|
|
BOOT_ProcessMode(BootMode);
|
|
|
|
|
|
|
|
GPIO_ClearBit(&GPIOA->DATA, GPIOA_PIN_VOICE_0);
|
|
|
|
|
2023-10-08 20:23:37 +01:00
|
|
|
g_update_status = true;
|
2023-09-09 08:03:56 +01:00
|
|
|
|
2023-09-14 09:56:30 +01:00
|
|
|
#ifdef ENABLE_VOICE
|
2023-09-09 08:03:56 +01:00
|
|
|
{
|
|
|
|
uint8_t Channel;
|
2023-09-16 09:31:20 +01:00
|
|
|
|
2023-10-10 10:42:22 +01:00
|
|
|
// AUDIO_SetVoiceID(0, VOICE_ID_WELCOME);
|
2023-09-16 09:31:20 +01:00
|
|
|
|
2023-10-08 17:14:13 +01:00
|
|
|
Channel = g_eeprom.screen_channel[g_eeprom.tx_vfo];
|
|
|
|
if (IS_USER_CHANNEL(Channel))
|
2023-09-09 08:03:56 +01:00
|
|
|
{
|
|
|
|
AUDIO_SetVoiceID(1, VOICE_ID_CHANNEL_MODE);
|
|
|
|
AUDIO_SetDigitVoice(2, Channel + 1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
if (IS_FREQ_CHANNEL(Channel))
|
|
|
|
AUDIO_SetVoiceID(1, VOICE_ID_FREQUENCY_MODE);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2023-09-14 09:56:30 +01:00
|
|
|
#ifdef ENABLE_NOAA
|
2023-09-09 08:03:56 +01:00
|
|
|
RADIO_ConfigureNOAA();
|
|
|
|
#endif
|
2023-10-01 14:34:51 +01:00
|
|
|
|
|
|
|
// ******************
|
2023-09-09 08:03:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
APP_Update();
|
|
|
|
|
2023-10-08 20:23:37 +01:00
|
|
|
if (g_next_time_slice)
|
2023-09-09 08:03:56 +01:00
|
|
|
{
|
|
|
|
APP_TimeSlice10ms();
|
2023-10-08 20:23:37 +01:00
|
|
|
g_next_time_slice = false;
|
2023-09-09 08:03:56 +01:00
|
|
|
}
|
|
|
|
|
2023-10-08 20:23:37 +01:00
|
|
|
if (g_next_time_slice_500ms)
|
2023-09-09 08:03:56 +01:00
|
|
|
{
|
|
|
|
APP_TimeSlice500ms();
|
2023-10-08 20:23:37 +01:00
|
|
|
g_next_time_slice_500ms = false;
|
2023-09-09 08:03:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|