Appiko
cube_hal.h
Go to the documentation of this file.
1 
38 #ifndef _CUBE_HAL_H_
39 #define _CUBE_HAL_H_
40 
41 #if !defined(USE_STM32L1XX_NUCLEO) && !defined(USE_STM32F4XX_NUCLEO) && !defined(USE_STM32L0XX_NUCLEO)
42 #define USE_STM32L1XX_NUCLEO
43 #endif
44 
45 /* Includes ------------------------------------------------------------------*/
46 #ifdef USE_STM32F4XX_NUCLEO
47 #include "stm32f4xx_hal.h"
48 #include "stm32f4xx.h"
49 #include "stm32xx_it.h"
50 #include "stm32f4xx_nucleo.h"
51 #endif
52 
53 #ifdef USE_STM32L1XX_NUCLEO
54 #include "stm32l1xx_hal.h"
55 #include "stm32l1xx.h"
56 #include "stm32l1xx_it.h"
57 #include "stm32l1xx_nucleo.h"
58 #endif
59 
60 #ifdef USE_STM32L0XX_NUCLEO
61 #include "stm32l0xx_hal.h"
62 #include "stm32l0xx.h"
63 #include "stm32l0xx_it.h"
64 #include "stm32l0xx_nucleo.h"
65 #endif
66 
67 
68 void SystemClock_Config(void);
69 
70 //#ifdef LPM_ENABLE
71 //void SystemClockConfig_STOP(void);
72 //#endif
73 
74 #endif //_CUBE_HAL_H_