24 lines
374 B
C
24 lines
374 B
C
#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 "oled.h"
|
|
#include "i2c.h"
|
|
#include "bh1750.h"
|
|
#include "DHT11_BUS.h"
|
|
#include "tos_k.h"
|
|
|
|
void board_init(void);
|
|
void SystemClock_Config(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /*__ __MCU_INIT_H */
|