1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| #include "gd32e23x.h"
| #include <stdio.h>
| #include "gpio.h"
| #include "pwm.h"
| #include "uart.h"
| #include "clock.h"
|
| int main()
| {
| Clock_Config();
| GPIO_Init();
| TimerInit();
|
| UartInit();
| ADC_Init();
| Ostick_config();
| while (1)
| ;
| return 0;
| }
|
|