1 /***************************************************************************//**
2  * @file
3  * @brief CMSIS Cortex-M Peripheral Access Layer for Silicon Laboratories
4  *        microcontroller devices
5  *
6  * This is a convenience header file for defining the part number on the
7  * build command line, instead of specifying the part specific header file.
8  *
9  * @verbatim
10  * Example: Add "-DEFM32G890F128" to your build options, to define part
11  *          Add "#include "em_device.h" to your source files
12  * @endverbatim
13  *
14  *******************************************************************************
15  * # License
16  * <b>Copyright 2022 Silicon Laboratories Inc. www.silabs.com</b>
17  *******************************************************************************
18  *
19  * SPDX-License-Identifier: Zlib
20  *
21  * The licensor of this software is Silicon Laboratories Inc.
22  *
23  * This software is provided 'as-is', without any express or implied
24  * warranty. In no event will the authors be held liable for any damages
25  * arising from the use of this software.
26  *
27  * Permission is granted to anyone to use this software for any purpose,
28  * including commercial applications, and to alter it and redistribute it
29  * freely, subject to the following restrictions:
30  *
31  * 1. The origin of this software must not be misrepresented; you must not
32  *    claim that you wrote the original software. If you use this software
33  *    in a product, an acknowledgment in the product documentation would be
34  *    appreciated but is not required.
35  * 2. Altered source versions must be plainly marked as such, and must not be
36  *    misrepresented as being the original software.
37  * 3. This notice may not be removed or altered from any source distribution.
38  *
39  ******************************************************************************/
40 
41 #ifndef EM_DEVICE_H
42 #define EM_DEVICE_H
43 
44 #if defined(EFR32MG12P132F1024GL125)
45 #include "efr32mg12p132f1024gl125.h"
46 
47 #elif defined(EFR32MG12P132F1024GM48)
48 #include "efr32mg12p132f1024gm48.h"
49 
50 #elif defined(EFR32MG12P132F512GM68)
51 #include "efr32mg12p132f512gm68.h"
52 
53 #elif defined(EFR32MG12P231F1024GM48)
54 #include "efr32mg12p231f1024gm48.h"
55 
56 #elif defined(EFR32MG12P231F1024GM68)
57 #include "efr32mg12p231f1024gm68.h"
58 
59 #elif defined(EFR32MG12P232F1024GL125)
60 #include "efr32mg12p232f1024gl125.h"
61 
62 #elif defined(EFR32MG12P232F1024GM48)
63 #include "efr32mg12p232f1024gm48.h"
64 
65 #elif defined(EFR32MG12P232F1024GM68)
66 #include "efr32mg12p232f1024gm68.h"
67 
68 #elif defined(EFR32MG12P232F512GM68)
69 #include "efr32mg12p232f512gm68.h"
70 
71 #elif defined(EFR32MG12P332F1024GL125)
72 #include "efr32mg12p332f1024gl125.h"
73 
74 #elif defined(EFR32MG12P332F1024GM48)
75 #include "efr32mg12p332f1024gm48.h"
76 
77 #elif defined(EFR32MG12P332F1024IM48)
78 #include "efr32mg12p332f1024im48.h"
79 
80 #elif defined(EFR32MG12P431F1024GM48)
81 #include "efr32mg12p431f1024gm48.h"
82 
83 #elif defined(EFR32MG12P431F1024GM68)
84 #include "efr32mg12p431f1024gm68.h"
85 
86 #elif defined(EFR32MG12P432F1024GL125)
87 #include "efr32mg12p432f1024gl125.h"
88 
89 #elif defined(EFR32MG12P432F1024GM48)
90 #include "efr32mg12p432f1024gm48.h"
91 
92 #elif defined(EFR32MG12P432F1024GM68)
93 #include "efr32mg12p432f1024gm68.h"
94 
95 #elif defined(EFR32MG12P432F1024IM48)
96 #include "efr32mg12p432f1024im48.h"
97 
98 #elif defined(EFR32MG12P433F1024GL125)
99 #include "efr32mg12p433f1024gl125.h"
100 
101 #elif defined(EFR32MG12P433F1024GM48)
102 #include "efr32mg12p433f1024gm48.h"
103 
104 #elif defined(EFR32MG12P433F1024GM68)
105 #include "efr32mg12p433f1024gm68.h"
106 
107 #elif defined(EFR32MG12P433F1024IL125)
108 #include "efr32mg12p433f1024il125.h"
109 
110 #elif defined(EFR32MG12P433F1024IM48)
111 #include "efr32mg12p433f1024im48.h"
112 
113 #else
114 #error "em_device.h: PART NUMBER undefined"
115 #endif
116 #endif /* EM_DEVICE_H */
117