custom-uv-k5-firmware/main.c

149 lines
3.6 KiB
C
Raw Normal View History

2023-08-09 23:00:44 +08: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 <stdbool.h>
2023-08-15 00:30:30 +08:00
#include <string.h>
2023-08-09 23:00:44 +08:00
#include "ARMCM0.h"
2023-08-26 09:04:16 +08:00
#include "app.h"
#include "audio.h"
2023-08-13 00:50:08 +08:00
#include "battery.h"
2023-08-09 23:00:44 +08:00
#include "bsp/dp32g030/gpio.h"
#include "bsp/dp32g030/portcon.h"
#include "bsp/dp32g030/syscon.h"
#include "board.h"
2023-08-13 00:40:05 +08:00
#include "driver/backlight.h"
#include "driver/bk1080.h"
2023-08-10 18:57:44 +08:00
#include "driver/bk4819.h"
2023-08-13 00:40:05 +08:00
#include "driver/crc.h"
2023-08-09 23:00:44 +08:00
#include "driver/eeprom.h"
#include "driver/flash.h"
#include "driver/gpio.h"
2023-08-11 04:34:28 +08:00
#include "driver/keyboard.h"
2023-08-09 23:00:44 +08:00
#include "driver/st7565.h"
#include "driver/system.h"
2023-08-09 23:00:44 +08:00
#include "driver/systick.h"
#include "driver/uart.h"
2023-08-15 00:30:30 +08:00
#include "dtmf.h"
2023-08-14 19:12:46 +08:00
#include "external/printf/printf.h"
2023-08-14 06:08:01 +08:00
#include "functions.h"
#include "gui.h"
#include "helper.h"
#include "misc.h"
#include "radio.h"
#include "settings.h"
2023-08-09 23:00:44 +08:00
static const char Version[] = "UV-K5 Firmware, v0.01 Open Edition\r\n";
2023-08-14 19:12:46 +08:00
void _putchar(char c)
{
UART_Send((uint8_t *)&c, 1);
}
2023-08-09 23:00:44 +08:00
void Main(void)
{
2023-08-14 06:08:01 +08:00
uint8_t i;
2023-08-09 23:00:44 +08: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
2023-08-09 23:00:44 +08:00
;
SYSTICK_Init();
BOARD_Init();
UART_Init();
UART_Send(Version, sizeof(Version));
2023-08-10 18:57:44 +08:00
// Not implementing authentic device checks
2023-08-15 00:30:30 +08:00
memset(&gEeprom, 0, sizeof(gEeprom));
memset(gDTMF_String, '-', sizeof(gDTMF_String));
gDTMF_String[14] = 0;
2023-08-10 18:57:44 +08:00
BK4819_Init();
2023-08-26 18:19:20 +08:00
BOARD_ADC_GetBatteryInfo(&gBatteryCurrentVoltage, &gBatteryCurrent);
BOARD_EEPROM_Init();
BOARD_EEPROM_LoadMoreSettings();
2023-08-10 18:57:44 +08:00
RADIO_ConfigureChannel(0, 2);
RADIO_ConfigureChannel(1, 2);
RADIO_ConfigureTX();
RADIO_SetupRegisters(true);
2023-08-14 06:08:01 +08:00
for (i = 0; i < 4; i++) {
BOARD_ADC_GetBatteryInfo(&gBatteryVoltages[i], &gBatteryCurrent);
}
BATTERY_GetReadings(false);
if (!gChargingWithTypeC && !gBatteryDisplayLevel) {
2023-08-15 00:30:30 +08:00
FUNCTION_Select(FUNCTION_POWER_SAVE);
2023-08-14 06:08:01 +08:00
GPIO_ClearBit(&GPIOB->DATA, GPIOB_PIN_BACKLIGHT);
g_2000037E = 1;
} else {
uint8_t KeyType;
uint8_t Channel;
2023-08-14 06:08:01 +08:00
GUI_Welcome();
BACKLIGHT_TurnOn();
SYSTEM_DelayMs(1000);
2023-08-22 06:47:16 +08:00
gMenuListCount = 51;
HELPER_GetKey();
KeyType = HELPER_GetKey();
if (gEeprom.POWER_ON_PASSWORD < 1000000) {
g_2000036E = 1;
GUI_PasswordScreen();
g_2000036E = 0;
}
HELPER_CheckBootKey(KeyType);
GPIO_ClearBit(&GPIOA->DATA, GPIOA_PIN_VOICE_0);
g_2000036F = 1;
2023-08-15 18:02:03 +08:00
AUDIO_SetVoiceID(0, VOICE_ID_WELCOME);
2023-08-23 04:53:36 +08:00
Channel = gEeprom.VfoChannel[gEeprom.TX_CHANNEL] + 1;
if (Channel < 201) {
2023-08-15 18:02:03 +08:00
AUDIO_SetVoiceID(1, VOICE_ID_CHANNEL_MODE);
AUDIO_SetDigitVoice(2, Channel);
} else if ((Channel - 201) < 7) {
2023-08-15 18:02:03 +08:00
AUDIO_SetVoiceID(1, VOICE_ID_FREQUENCY_MODE);
}
AUDIO_PlaySingleVoice(0);
2023-08-14 07:39:49 +08:00
RADIO_ConfigureNOAA();
2023-08-14 06:08:01 +08:00
}
2023-08-26 09:04:16 +08:00
while (1) {
APP_Update();
if (gNextTimeslice) {
APP_TimeSlice10ms();
gNextTimeslice = false;
}
if (gNextTimeslice500ms) {
APP_TimeSlice500ms();
gNextTimeslice500ms = false;
}
}
2023-08-09 23:00:44 +08:00
}