Koduino
chip.h
1 
20 #ifndef chip_h
21 #define chip_h
22 
23 // Include the CMSIS, HAL based on chip
24 #if defined(SERIES_STM32F37x)
25 #include "stm32f37x.h"
26 #elif defined(SERIES_STM32F30x)
27 #include "stm32f30x.h"
28 #elif defined(SERIES_STM32F4xx)
29 #include "stm32f4xx.h"
30 #elif defined(SERIES_STM32F10x)
31 #include "stm32f10x.h"
32 #endif
33 
34 // #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__))
35 
36 #endif