12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #ifndef __STM32xxx_HAL_H
- #define __STM32xxx_HAL_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #ifdef STM32F401xE
- #include "stm32f4xx_hal.h"
- #endif
- #ifdef STM32L053xx
- #include "stm32l0xx_hal.h"
- #endif
- #ifdef STM32L476xx
- #include "stm32l4xx_hal.h"
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif
|