fix the floder name bug

This commit is contained in:
mculover666
2019-09-21 21:19:15 +08:00
parent ea3a97b152
commit ccdefc11ec
44 changed files with 0 additions and 0 deletions

View File

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