forked from losehu/uv-k5-firmware-custom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
313 lines (239 loc) · 7.07 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
/* 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 "bsp/dp32g030/gpio.h"
#include "driver/gpio.h"
#include "app/si.h"
#include "driver/i2c.h"
#include "driver/system.h"
#include "frequencies.h"
#include "misc.h"
#include "app/doppler.h"
#include "driver/uart.h"
#include "string.h"
#include <stdio.h>
#include "ui/helper.h"
#include <string.h>
#include "driver/bk4819.h"
#include "font.h"
#include "ui/ui.h"
#include <stdint.h>
#include <string.h>
#include "font.h"
#include <stdio.h> // NULL
#include "app/mdc1200.h"
#include "app/uart.h"
#include "string.h"
#include "app/messenger.h"
#ifdef ENABLE_DOPPLER
#include "app/doppler.h"
#endif
#ifdef ENABLE_AM_FIX
#include "am_fix.h"
#endif
#include "bsp/dp32g030/rtc.h"
#ifdef ENABLE_TIMER
#include "bsp/dp32g030/uart.h"
#include "bsp/dp32g030/timer.h"
#endif
#ifdef ENABLE_4732
#endif
#include "audio.h"
#include "board.h"
#include "misc.h"
#include "radio.h"
#include "settings.h"
#include "version.h"
#include "app/app.h"
#include "app/dtmf.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"
#ifdef ENABLE_UART
#include "driver/uart.h"
#endif
#include "app/spectrum.h"
#include "helper/battery.h"
#include "helper/boot.h"
#include "ui/lock.h"
#include "ui/welcome.h"
#include "ui/menu.h"
#include "driver/eeprom.h"
#include "driver/st7565.h"
void _putchar(__attribute__((unused)) char c) {
#ifdef ENABLE_UART
UART_Send((uint8_t *) &c, 1);
#endif
}
void Main(void) {
//BOOT_Mode_t BootMode;
// 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
| SYSCON_DEV_CLK_GATE_PWM_PLUS0_BITS_ENABLE
// | (1 << 12)
#ifdef ENABLE_DOPPLER
| (1 << 22)
#endif
;
SYSTICK_Init();
BOARD_Init();
#ifdef ENABLE_UART
UART_Init();
#endif
memset(gDTMF_String, '-', sizeof(gDTMF_String));
gDTMF_String[sizeof(gDTMF_String) - 1] = 0;
BK4819_Init();
BOARD_ADC_GetBatteryInfo(&gBatteryCurrentVoltage, &gBatteryCurrent);
SETTINGS_InitEEPROM();
SETTINGS_LoadCalibration();
#ifdef ENABLE_MESSENGER
MSG_Init();
#endif
#ifdef ENABLE_MDC1200
MDC1200_init();
#endif
// char name[10]="START6789";
// EEPROM_WriteBuffer(0x02BA0,name,10);
#ifdef ENABLE_DOPPLER
RTC_INIT();
INIT_DOPPLER_DATA();
#endif
RADIO_ConfigureChannel(0, VFO_CONFIGURE_RELOAD);
RADIO_ConfigureChannel(1, VFO_CONFIGURE_RELOAD);
RADIO_SelectVfos();
RADIO_SetupRegisters(true);
for (uint32_t i = 0; i < ARRAY_SIZE(gBatteryVoltages); i++) {
BOARD_ADC_GetBatteryInfo(&gBatteryVoltages[i], &gBatteryCurrent);
}
BATTERY_GetReadings(false);
#ifdef ENABLE_AM_FIX
AM_fix_init();
#endif
#if ENABLE_CHINESE_FULL == 0
gMenuListCount = 52;
#else
gMenuListCount = 53;
#endif
gKeyReading0 = KEY_INVALID;
gKeyReading1 = KEY_INVALID;
gDebounceCounter = 0;
//#ifdef ENABLE_4732
//
//
// memset(gStatusLine, 0, sizeof(gStatusLine));
// UI_DisplayClear();
// ST7565_BlitStatusLine(); // blank status line
// ST7565_BlitFullScreen();
//SI4732_Main();
//#endif
#ifdef ENABLE_TIMER
BOARD_PORTCON_Init();
BOARD_GPIO_Init();
ST7565_Init();
TIM0_INIT();
memset(gStatusLine, 0, sizeof(gStatusLine));
UI_DisplayClear();
ST7565_BlitStatusLine(); // blank status line
ST7565_BlitFullScreen();
char str[20]={0}; // 分配一个足够大的字符串数组来存储转换后的字符串
while(1)
{
char str[6];
show_uint32(TIM0_CNT,0);
show_uint32(TIMERBASE0_LOW_CNT,1);
show_uint32(TIMERBASE0_HIGH_CNT,2);
show_uint32(TIMERBASE0_IF,3);
show_uint32(TIMERBASE0_IE,4);
}
#endif
UI_DisplayWelcome();
#ifdef ENABLE_BOOTLOADER
if(KEYBOARD_Poll() == KEY_MENU)
{
for (int i = 0; i < 10*1024; i += 4) {
uint32_t c;
EEPROM_ReadBuffer(0x41000 + i, (uint8_t *) &c, 4);
write_to_memory(0x20001000 + i, c);
}
JUMP_TO_FLASH(0x2000110a, 0x20003ff0);
}
#endif
boot_counter_10ms = 250;
while (boot_counter_10ms > 0 || (KEYBOARD_Poll() != KEY_INVALID)) {
if (KEYBOARD_Poll() == KEY_EXIT
#if ENABLE_CHINESE_FULL == 4
|| gEeprom.POWER_ON_DISPLAY_MODE == POWER_ON_DISPLAY_MODE_NONE
#endif
) { // halt boot beeps
boot_counter_10ms = 0;
break;
}
#ifdef ENABLE_BOOT_BEEPS
if ((boot_counter_10ms % 25) == 0)
AUDIO_PlayBeep(BEEP_880HZ_40MS_OPTIONAL);
#endif
}
#ifdef ENABLE_PWRON_PASSWORD
if (gEeprom.POWER_ON_PASSWORD < 1000000)
{
bIsInLockScreen = true;
UI_DisplayLock();
bIsInLockScreen = false;
}
#endif
// BOOT_ProcessMode();
GUI_SelectNextDisplay(DISPLAY_MAIN);
GPIO_ClearBit(&GPIOA->DATA, GPIOA_PIN_VOICE_0);
gUpdateStatus = true;
#ifdef ENABLE_VOICE
{
uint8_t Channel;
AUDIO_SetVoiceID(0, VOICE_ID_WELCOME);
Channel = gEeprom.ScreenChannel[gEeprom.TX_VFO];
if (IS_MR_CHANNEL(Channel))
{
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);
AUDIO_PlaySingleVoice(0);
}
#endif
#ifdef ENABLE_NOAA
RADIO_ConfigureNOAA();
#endif
while (1) {
APP_Update();
if (gNextTimeslice) {
APP_TimeSlice10ms();
}
if (gNextTimeslice_500ms) {
APP_TimeSlice500ms();
}
}
}