mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-07 17:23:32 +01:00
56 lines
1.6 KiB
C
Executable file
56 lines
1.6 KiB
C
Executable file
/**
|
|
* \file
|
|
*
|
|
* \brief Top header file for SAMR21
|
|
*
|
|
* Copyright (c) 2016 Atmel Corporation,
|
|
* a wholly owned subsidiary of Microchip Technology Inc.
|
|
*
|
|
* \asf_license_start
|
|
*
|
|
* \page License
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the Licence at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
* \asf_license_stop
|
|
*
|
|
*/
|
|
|
|
#ifndef _SAMR21_
|
|
#define _SAMR21_
|
|
|
|
/**
|
|
* \defgroup SAMR21_definitions SAMR21 Device Definitions
|
|
* \brief SAMR21 CMSIS Definitions.
|
|
*/
|
|
|
|
#if defined(__SAMR21E16A__) || defined(__ATSAMR21E16A__)
|
|
#include "samr21e16a.h"
|
|
#elif defined(__SAMR21E17A__) || defined(__ATSAMR21E17A__)
|
|
#include "samr21e17a.h"
|
|
#elif defined(__SAMR21E18A__) || defined(__ATSAMR21E18A__)
|
|
#include "samr21e18a.h"
|
|
#elif defined(__SAMR21E19A__) || defined(__ATSAMR21E19A__)
|
|
#include "samr21e19a.h"
|
|
#elif defined(__SAMR21G16A__) || defined(__ATSAMR21G16A__)
|
|
#include "samr21g16a.h"
|
|
#elif defined(__SAMR21G17A__) || defined(__ATSAMR21G17A__)
|
|
#include "samr21g17a.h"
|
|
#elif defined(__SAMR21G18A__) || defined(__ATSAMR21G18A__)
|
|
#include "samr21g18a.h"
|
|
#else
|
|
#error Library does not support the specified device.
|
|
#endif
|
|
|
|
#endif /* _SAMR21_ */
|