add stm32f4 discovery and fix m4 fpu bug

This commit is contained in:
supowang
2019-10-09 12:08:06 +08:00
parent f666ae3131
commit 45c18c896c
29 changed files with 7688 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
#ifndef __MCU_INIT_H
#define __MCU_INIT_H
#ifdef __cplusplus
extern "C" {
#endif
#include "main.h"
#include "stm32f4xx_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 */