[Config] Add Board NUCLEO_STM32G071RB

[What]
[Why]
[How]
This commit is contained in:
oxlm
2019-11-17 23:48:54 +08:00
parent a6c9c76556
commit 9937b7db01
22 changed files with 3882 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#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 "tos.h"
void board_init(void);
void SystemClock_Config(void);
#ifdef __cplusplus
}
#endif
#endif /*__ __MCU_INIT_H */