-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathairyyxx_hal_tim.c
More file actions
44 lines (43 loc) · 1 KB
/
airyyxx_hal_tim.c
File metadata and controls
44 lines (43 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* HAL raised several warnings, ignore them */
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-parameter"
#ifdef AIRC0xx
#include "airc0xx_hal_tim.c"
#elif AIR001xx
#include "air001xx_hal_tim.c"
#elif AIR401xx
#include "air401xx_hal_tim.c"
#elif AIR32F1xx
#include "air32f1xx_hal_tim.c"
#elif AIRF2xx
#include "airf2xx_hal_tim.c"
#elif AIRF3xx
#include "airf3xx_hal_tim.c"
#elif AIRF4xx
#include "airf4xx_hal_tim.c"
#elif AIRF7xx
#include "airf7xx_hal_tim.c"
#elif AIRG0xx
#include "airg0xx_hal_tim.c"
#elif AIRG4xx
#include "airg4xx_hal_tim.c"
#elif AIRH7xx
#include "airh7xx_hal_tim.c"
#elif AIRL0xx
#include "airl0xx_hal_tim.c"
#elif AIRL1xx
#include "airl1xx_hal_tim.c"
#elif AIRL4xx
#include "airl4xx_hal_tim.c"
#elif AIRL5xx
#include "airl5xx_hal_tim.c"
#elif AIRMP1xx
#include "airmp1xx_hal_tim.c"
#elif AIRU5xx
#include "airu5xx_hal_tim.c"
#elif AIRWBxx
#include "airwbxx_hal_tim.c"
#elif AIRWLxx
#include "airwlxx_hal_tim.c"
#endif
#pragma GCC diagnostic pop