1 Star 0 Fork 0

Jumbo/uv-k5-firmware-fagci-mod

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.c 3.52 KB
一键复制 编辑 原始数据 按行查看 历史
/* 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 "app/app.h"
#include "app/dtmf.h"
#include "audio.h"
#if defined(ENABLE_AM_FIX)
#include "am_fix.h"
#endif
#include "board.h"
#include "bsp/dp32g030/gpio.h"
#include "bsp/dp32g030/syscon.h"
#include "driver/backlight.h"
#include "driver/bk4819.h"
#include "driver/gpio.h"
#include "driver/system.h"
#include "driver/systick.h"
#include <string.h>
#if defined(ENABLE_UART)
#include "driver/uart.h"
#endif
#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"
#include "version.h"
void _putchar(char c) {
#if defined(ENABLE_UART)
UART_Send((uint8_t *)&c, 1);
#endif
}
void Main(void) {
uint8_t i;
// 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();
#if defined(ENABLE_UART)
UART_Init();
UART_Send(UART_Version, sizeof(UART_Version));
#endif
// Not implementing authentic device checks
memset(&gEeprom, 0, sizeof(gEeprom));
memset(gDTMF_String, '-', sizeof(gDTMF_String));
gDTMF_String[14] = 0;
BK4819_Init();
BOARD_ADC_GetBatteryInfo(&gBatteryCurrentVoltage, &gBatteryCurrent);
BOARD_EEPROM_Init();
BOARD_EEPROM_LoadCalibration();
RADIO_ConfigureChannel(0, 2);
RADIO_ConfigureChannel(1, 2);
RADIO_SelectVfos();
RADIO_SetupRegisters(true);
for (i = 0; i < 4; i++) {
BOARD_ADC_GetBatteryInfo(&gBatteryVoltages[i], &gBatteryCurrent);
}
BATTERY_GetReadings(false);
#ifdef ENABLE_AM_FIX
AM_fix_init();
#endif
if (!gChargingWithTypeC && !gBatteryDisplayLevel) {
FUNCTION_Select(FUNCTION_POWER_SAVE);
GPIO_ClearBit(&GPIOB->DATA, GPIOB_PIN_BACKLIGHT);
gReducedService = true;
} else {
BOOT_Mode_t BootMode;
UI_DisplayWelcome();
BACKLIGHT_TurnOn();
SYSTEM_DelayMs(1000);
gMenuListCount = 49;
#if defined(ENABLE_ALARM)
gMenuListCount++;
#endif
#if defined(ENABLE_NOAA)
gMenuListCount++;
#endif
BootMode = BOOT_GetMode();
if (gEeprom.POWER_ON_PASSWORD < 1000000) {
bIsInLockScreen = true;
UI_DisplayLock();
bIsInLockScreen = false;
}
BOOT_ProcessMode(BootMode);
gUpdateStatus = true;
#if defined(ENABLE_NOAA)
RADIO_ConfigureNOAA();
#endif
}
while (1) {
APP_Update();
if (gNextTimeslice) {
APP_TimeSlice10ms();
gNextTimeslice = false;
}
if (gNextTimeslice500ms) {
APP_TimeSlice500ms();
gNextTimeslice500ms = false;
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jumbo5566/uv-k5-firmware-fagci-mod.git
[email protected]:jumbo5566/uv-k5-firmware-fagci-mod.git
jumbo5566
uv-k5-firmware-fagci-mod
uv-k5-firmware-fagci-mod
main

搜索帮助