1 /**
2  * \file
3  *
4  * \brief Top header file for SAML21
5  *
6  * Copyright (c) 2016 Atmel Corporation,
7  *                    a wholly owned subsidiary of Microchip Technology Inc.
8  *
9  * \asf_license_start
10  *
11  * \page License
12  *
13  * Licensed under the Apache License, Version 2.0 (the "License");
14  * you may not use this file except in compliance with the License.
15  * You may obtain a copy of the Licence at
16  *
17  *     http://www.apache.org/licenses/LICENSE-2.0
18  *
19  * Unless required by applicable law or agreed to in writing, software
20  * distributed under the License is distributed on an "AS IS" BASIS,
21  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22  * See the License for the specific language governing permissions and
23  * limitations under the License.
24  *
25  * \asf_license_stop
26  *
27  */
28 
29 #ifndef _SAML21_
30 #define _SAML21_
31 
32 /**
33  * \defgroup SAML21_definitions SAML21 Device Definitions
34  * \brief SAML21 CMSIS Definitions.
35  */
36 
37 #if   defined(__SAML21E15B__) || defined(__ATSAML21E15B__)
38   #include "saml21e15b.h"
39 #elif defined(__SAML21E16B__) || defined(__ATSAML21E16B__)
40   #include "saml21e16b.h"
41 #elif defined(__SAML21E17B__) || defined(__ATSAML21E17B__)
42   #include "saml21e17b.h"
43 #elif defined(__SAML21E18B__) || defined(__ATSAML21E18B__)
44   #include "saml21e18b.h"
45 #elif defined(__SAML21G16B__) || defined(__ATSAML21G16B__)
46   #include "saml21g16b.h"
47 #elif defined(__SAML21G17B__) || defined(__ATSAML21G17B__)
48   #include "saml21g17b.h"
49 #elif defined(__SAML21G18B__) || defined(__ATSAML21G18B__)
50   #include "saml21g18b.h"
51 #elif defined(__SAML21J16B__) || defined(__ATSAML21J16B__)
52   #include "saml21j16b.h"
53 #elif defined(__SAML21J17B__) || defined(__ATSAML21J17B__)
54   #include "saml21j17b.h"
55 #elif defined(__SAML21J18B__) || defined(__ATSAML21J18B__)
56   #include "saml21j18b.h"
57 #elif defined(__SAML21J18BU__) || defined(__ATSAML21J18BU__)
58   #include "saml21j18bu.h"
59 #else
60   #error Library does not support the specified device.
61 #endif
62 
63 #endif /* _SAML21_ */
64