46 lines
693 B
C
46 lines
693 B
C
#ifndef _bsp_H
|
|
#define _bsp_H
|
|
|
|
#include "STM32L1xx_PWR.h"
|
|
#include "stm32l1xx_exti.h"
|
|
#include "stm32l1xx_tim.h"
|
|
#include "stm32l1xx_syscfg.h"
|
|
#include "misc.h"
|
|
#include "stm32l1xx_flash.h"
|
|
#include "delay.h"
|
|
#include "usart.h"
|
|
//#include "usart3.h"
|
|
//#include "usart1_sdi.h"
|
|
//#include "usart2.h"
|
|
//#include "usart4.h"
|
|
#include "usart5.h"
|
|
#include "iap.h"
|
|
#include "pwr_ctrl.h"
|
|
#include "eeprom.h"
|
|
#include "spi.h"
|
|
#include "flash.h"
|
|
|
|
#include "SPI_SD_driver.h"
|
|
|
|
#include "ff.h"
|
|
#include "ffconf.h"
|
|
#include "data_handle.h"
|
|
#include "stdint.h"
|
|
|
|
|
|
|
|
#include "bsp_dwt.h"
|
|
|
|
|
|
#include "stdio.h"
|
|
#include "stdarg.h"
|
|
#include "string.h"
|
|
|
|
|
|
void bsp_init(void);
|
|
void bsp_init_wakeup(void);
|
|
|
|
|
|
|
|
#endif
|