-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathairyyxx_ll_dac.c
More file actions
36 lines (35 loc) · 828 Bytes
/
airyyxx_ll_dac.c
File metadata and controls
36 lines (35 loc) · 828 Bytes
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
/* LL raised several warnings, ignore them */
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-parameter"
#ifdef AIR001xx
#include "air001xx_ll_dac.c"
#elif AIR32F1xx
#include "air32f1xx_ll_dac.c"
#elif AIRF2xx
#include "airf2xx_ll_dac.c"
#elif AIRF3xx
#include "airf3xx_ll_dac.c"
#elif AIRF4xx
#include "airf4xx_ll_dac.c"
#elif AIRF7xx
#include "airf7xx_ll_dac.c"
#elif AIRG0xx
#include "airg0xx_ll_dac.c"
#elif AIRG4xx
#include "airg4xx_ll_dac.c"
#elif AIRH7xx
#include "airh7xx_ll_dac.c"
#elif AIRL0xx
#include "airl0xx_ll_dac.c"
#elif AIRL1xx
#include "airl1xx_ll_dac.c"
#elif AIRL4xx
#include "airl4xx_ll_dac.c"
#elif AIRL5xx
#include "airl5xx_ll_dac.c"
#elif AIRU5xx
#include "airu5xx_ll_dac.c"
#elif AIRWLxx
#include "airwlxx_ll_dac.c"
#endif
#pragma GCC diagnostic pop