tao_z
2021-06-24 bc6c916bff0b8d342c1cd62da73a2a09f18d22a8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "gd32e23x.h"
#include <stdio.h>
#include "gpio.h"
#include "adc.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;
}