Add NUCLEO_STM32L496ZG Keil And IAR Project

Signed-off-by: squallbest <squall@live0415.com>
This commit is contained in:
squallbest
2019-10-16 05:59:31 +08:00
parent 9cac7fa9bb
commit 881435a2a9
26 changed files with 7404 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 "stm32l4xx_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 */