add helloworld project on EVB_G0 Board

This commit is contained in:
mculover666
2020-07-21 10:32:58 +08:00
parent 446d32f4b0
commit db99e5a6a9
26 changed files with 4989 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
#ifndef __MCU_INIT_H
#define __MCU_INIT_H
#ifdef __cplusplus
extern "C" {
#endif
#include "main.h"
#include "stm32g0xx_hal.h"
#include "usart.h"
#include "gpio.h"
#include "adc.h"
#include "i2c.h"
#include "spi.h"
#include "tos_k.h"
void board_init(void);
void SystemClock_Config(void);
#ifdef __cplusplus
}
#endif
#endif /*__ __MCU_INIT_H */