Fork of the official mbed C/C SDK provides the software platform and libraries to build your applications for RenBED.

Dependents:   1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB

Fork of mbed by mbed official

Committer:
elijahorr
Date:
Thu Apr 14 07:28:54 2016 +0000
Revision:
121:672067c3ada4
Parent:
111:4336505e4b1c
.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 111:4336505e4b1c 1 /**
Kojto 111:4336505e4b1c 2 * \file
Kojto 111:4336505e4b1c 3 *
Kojto 111:4336505e4b1c 4 * \brief Header file for SAMD21E16L
Kojto 111:4336505e4b1c 5 *
Kojto 111:4336505e4b1c 6 * Copyright (c) 2014-2015 Atmel Corporation. All rights reserved.
Kojto 111:4336505e4b1c 7 *
Kojto 111:4336505e4b1c 8 * \asf_license_start
Kojto 111:4336505e4b1c 9 *
Kojto 111:4336505e4b1c 10 * \page License
Kojto 111:4336505e4b1c 11 *
Kojto 111:4336505e4b1c 12 * Redistribution and use in source and binary forms, with or without
Kojto 111:4336505e4b1c 13 * modification, are permitted provided that the following conditions are met:
Kojto 111:4336505e4b1c 14 *
Kojto 111:4336505e4b1c 15 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 111:4336505e4b1c 16 * this list of conditions and the following disclaimer.
Kojto 111:4336505e4b1c 17 *
Kojto 111:4336505e4b1c 18 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 111:4336505e4b1c 19 * this list of conditions and the following disclaimer in the documentation
Kojto 111:4336505e4b1c 20 * and/or other materials provided with the distribution.
Kojto 111:4336505e4b1c 21 *
Kojto 111:4336505e4b1c 22 * 3. The name of Atmel may not be used to endorse or promote products derived
Kojto 111:4336505e4b1c 23 * from this software without specific prior written permission.
Kojto 111:4336505e4b1c 24 *
Kojto 111:4336505e4b1c 25 * 4. This software may only be redistributed and used in connection with an
Kojto 111:4336505e4b1c 26 * Atmel microcontroller product.
Kojto 111:4336505e4b1c 27 *
Kojto 111:4336505e4b1c 28 * THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR IMPLIED
Kojto 111:4336505e4b1c 29 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
Kojto 111:4336505e4b1c 30 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE
Kojto 111:4336505e4b1c 31 * EXPRESSLY AND SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR
Kojto 111:4336505e4b1c 32 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 111:4336505e4b1c 33 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
Kojto 111:4336505e4b1c 34 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
Kojto 111:4336505e4b1c 35 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
Kojto 111:4336505e4b1c 36 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
Kojto 111:4336505e4b1c 37 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Kojto 111:4336505e4b1c 38 * POSSIBILITY OF SUCH DAMAGE.
Kojto 111:4336505e4b1c 39 *
Kojto 111:4336505e4b1c 40 * \asf_license_stop
Kojto 111:4336505e4b1c 41 *
Kojto 111:4336505e4b1c 42 */
Kojto 111:4336505e4b1c 43
Kojto 111:4336505e4b1c 44 #ifndef _SAMD21E16L_
Kojto 111:4336505e4b1c 45 #define _SAMD21E16L_
Kojto 111:4336505e4b1c 46
Kojto 111:4336505e4b1c 47 /**
Kojto 111:4336505e4b1c 48 * \ingroup SAMD21_definitions
Kojto 111:4336505e4b1c 49 * \addtogroup SAMD21E16L_definitions SAMD21E16L definitions
Kojto 111:4336505e4b1c 50 * This file defines all structures and symbols for SAMD21E16L:
Kojto 111:4336505e4b1c 51 * - registers and bitfields
Kojto 111:4336505e4b1c 52 * - peripheral base address
Kojto 111:4336505e4b1c 53 * - peripheral ID
Kojto 111:4336505e4b1c 54 * - PIO definitions
Kojto 111:4336505e4b1c 55 */
Kojto 111:4336505e4b1c 56 /*@{*/
Kojto 111:4336505e4b1c 57
Kojto 111:4336505e4b1c 58 #ifdef __cplusplus
Kojto 111:4336505e4b1c 59 extern "C" {
Kojto 111:4336505e4b1c 60 #endif
Kojto 111:4336505e4b1c 61
Kojto 111:4336505e4b1c 62 #if !(defined(__ASSEMBLY__) || defined(__IAR_SYSTEMS_ASM__))
Kojto 111:4336505e4b1c 63 #include <stdint.h>
Kojto 111:4336505e4b1c 64 #ifndef __cplusplus
Kojto 111:4336505e4b1c 65 typedef volatile const uint32_t RoReg; /**< Read only 32-bit register (volatile const unsigned int) */
Kojto 111:4336505e4b1c 66 typedef volatile const uint16_t RoReg16; /**< Read only 16-bit register (volatile const unsigned int) */
Kojto 111:4336505e4b1c 67 typedef volatile const uint8_t RoReg8; /**< Read only 8-bit register (volatile const unsigned int) */
Kojto 111:4336505e4b1c 68 #else
Kojto 111:4336505e4b1c 69 typedef volatile uint32_t RoReg; /**< Read only 32-bit register (volatile const unsigned int) */
Kojto 111:4336505e4b1c 70 typedef volatile uint16_t RoReg16; /**< Read only 16-bit register (volatile const unsigned int) */
Kojto 111:4336505e4b1c 71 typedef volatile uint8_t RoReg8; /**< Read only 8-bit register (volatile const unsigned int) */
Kojto 111:4336505e4b1c 72 #endif
Kojto 111:4336505e4b1c 73 typedef volatile uint32_t WoReg; /**< Write only 32-bit register (volatile unsigned int) */
Kojto 111:4336505e4b1c 74 typedef volatile uint16_t WoReg16; /**< Write only 16-bit register (volatile unsigned int) */
Kojto 111:4336505e4b1c 75 typedef volatile uint32_t WoReg8; /**< Write only 8-bit register (volatile unsigned int) */
Kojto 111:4336505e4b1c 76 typedef volatile uint32_t RwReg; /**< Read-Write 32-bit register (volatile unsigned int) */
Kojto 111:4336505e4b1c 77 typedef volatile uint16_t RwReg16; /**< Read-Write 16-bit register (volatile unsigned int) */
Kojto 111:4336505e4b1c 78 typedef volatile uint8_t RwReg8; /**< Read-Write 8-bit register (volatile unsigned int) */
Kojto 111:4336505e4b1c 79 #define CAST(type, value) ((type *)(value))
Kojto 111:4336505e4b1c 80 #define REG_ACCESS(type, address) (*(type*)(address)) /**< C code: Register value */
Kojto 111:4336505e4b1c 81 #else
Kojto 111:4336505e4b1c 82 #define CAST(type, value) (value)
Kojto 111:4336505e4b1c 83 #define REG_ACCESS(type, address) (address) /**< Assembly code: Register address */
Kojto 111:4336505e4b1c 84 #endif
Kojto 111:4336505e4b1c 85
Kojto 111:4336505e4b1c 86 /* ************************************************************************** */
Kojto 111:4336505e4b1c 87 /** CMSIS DEFINITIONS FOR SAMD21E16L */
Kojto 111:4336505e4b1c 88 /* ************************************************************************** */
Kojto 111:4336505e4b1c 89 /** \defgroup SAMD21E16L_cmsis CMSIS Definitions */
Kojto 111:4336505e4b1c 90 /*@{*/
Kojto 111:4336505e4b1c 91
Kojto 111:4336505e4b1c 92 /** Interrupt Number Definition */
Kojto 111:4336505e4b1c 93 typedef enum IRQn {
Kojto 111:4336505e4b1c 94 /****** Cortex-M0+ Processor Exceptions Numbers ******************************/
Kojto 111:4336505e4b1c 95 NonMaskableInt_IRQn = -14,/**< 2 Non Maskable Interrupt */
Kojto 111:4336505e4b1c 96 HardFault_IRQn = -13,/**< 3 Cortex-M0+ Hard Fault Interrupt */
Kojto 111:4336505e4b1c 97 SVCall_IRQn = -5, /**< 11 Cortex-M0+ SV Call Interrupt */
Kojto 111:4336505e4b1c 98 PendSV_IRQn = -2, /**< 14 Cortex-M0+ Pend SV Interrupt */
Kojto 111:4336505e4b1c 99 SysTick_IRQn = -1, /**< 15 Cortex-M0+ System Tick Interrupt */
Kojto 111:4336505e4b1c 100 /****** SAMD21E16L-specific Interrupt Numbers ***********************/
Kojto 111:4336505e4b1c 101 PM_IRQn = 0, /**< 0 SAMD21E16L Power Manager (PM) */
Kojto 111:4336505e4b1c 102 SYSCTRL_IRQn = 1, /**< 1 SAMD21E16L System Control (SYSCTRL) */
Kojto 111:4336505e4b1c 103 WDT_IRQn = 2, /**< 2 SAMD21E16L Watchdog Timer (WDT) */
Kojto 111:4336505e4b1c 104 RTC_IRQn = 3, /**< 3 SAMD21E16L Real-Time Counter (RTC) */
Kojto 111:4336505e4b1c 105 EIC_IRQn = 4, /**< 4 SAMD21E16L External Interrupt Controller (EIC) */
Kojto 111:4336505e4b1c 106 NVMCTRL_IRQn = 5, /**< 5 SAMD21E16L Non-Volatile Memory Controller (NVMCTRL) */
Kojto 111:4336505e4b1c 107 DMAC_IRQn = 6, /**< 6 SAMD21E16L Direct Memory Access Controller (DMAC) */
Kojto 111:4336505e4b1c 108 EVSYS_IRQn = 8, /**< 8 SAMD21E16L Event System Interface (EVSYS) */
Kojto 111:4336505e4b1c 109 SERCOM0_IRQn = 9, /**< 9 SAMD21E16L Serial Communication Interface 0 (SERCOM0) */
Kojto 111:4336505e4b1c 110 SERCOM1_IRQn = 10, /**< 10 SAMD21E16L Serial Communication Interface 1 (SERCOM1) */
Kojto 111:4336505e4b1c 111 SERCOM2_IRQn = 11, /**< 11 SAMD21E16L Serial Communication Interface 2 (SERCOM2) */
Kojto 111:4336505e4b1c 112 SERCOM3_IRQn = 12, /**< 12 SAMD21E16L Serial Communication Interface 3 (SERCOM3) */
Kojto 111:4336505e4b1c 113 TCC0_IRQn = 15, /**< 15 SAMD21E16L Timer Counter Control 0 (TCC0) */
Kojto 111:4336505e4b1c 114 TCC1_IRQn = 16, /**< 16 SAMD21E16L Timer Counter Control 1 (TCC1) */
Kojto 111:4336505e4b1c 115 TCC2_IRQn = 17, /**< 17 SAMD21E16L Timer Counter Control 2 (TCC2) */
Kojto 111:4336505e4b1c 116 TC3_IRQn = 18, /**< 18 SAMD21E16L Basic Timer Counter 3 (TC3) */
Kojto 111:4336505e4b1c 117 TC4_IRQn = 19, /**< 19 SAMD21E16L Basic Timer Counter 4 (TC4) */
Kojto 111:4336505e4b1c 118 TC5_IRQn = 20, /**< 20 SAMD21E16L Basic Timer Counter 5 (TC5) */
Kojto 111:4336505e4b1c 119 ADC_IRQn = 23, /**< 23 SAMD21E16L Analog Digital Converter (ADC) */
Kojto 111:4336505e4b1c 120 AC_IRQn = 24, /**< 24 SAMD21E16L Analog Comparators (AC) */
Kojto 111:4336505e4b1c 121 DAC_IRQn = 25, /**< 25 SAMD21E16L Digital Analog Converter (DAC) */
Kojto 111:4336505e4b1c 122 AC1_IRQn = 28, /**< 28 SAMD21E16L Analog Comparators 1 (AC1) */
Kojto 111:4336505e4b1c 123
Kojto 111:4336505e4b1c 124 PERIPH_COUNT_IRQn = 29 /**< Number of peripheral IDs */
Kojto 111:4336505e4b1c 125 } IRQn_Type;
Kojto 111:4336505e4b1c 126
Kojto 111:4336505e4b1c 127 typedef struct _DeviceVectors {
Kojto 111:4336505e4b1c 128 /* Stack pointer */
Kojto 111:4336505e4b1c 129 void* pvStack;
Kojto 111:4336505e4b1c 130
Kojto 111:4336505e4b1c 131 /* Cortex-M handlers */
Kojto 111:4336505e4b1c 132 void* pfnReset_Handler;
Kojto 111:4336505e4b1c 133 void* pfnNMI_Handler;
Kojto 111:4336505e4b1c 134 void* pfnHardFault_Handler;
Kojto 111:4336505e4b1c 135 void* pfnReservedM12;
Kojto 111:4336505e4b1c 136 void* pfnReservedM11;
Kojto 111:4336505e4b1c 137 void* pfnReservedM10;
Kojto 111:4336505e4b1c 138 void* pfnReservedM9;
Kojto 111:4336505e4b1c 139 void* pfnReservedM8;
Kojto 111:4336505e4b1c 140 void* pfnReservedM7;
Kojto 111:4336505e4b1c 141 void* pfnReservedM6;
Kojto 111:4336505e4b1c 142 void* pfnSVC_Handler;
Kojto 111:4336505e4b1c 143 void* pfnReservedM4;
Kojto 111:4336505e4b1c 144 void* pfnReservedM3;
Kojto 111:4336505e4b1c 145 void* pfnPendSV_Handler;
Kojto 111:4336505e4b1c 146 void* pfnSysTick_Handler;
Kojto 111:4336505e4b1c 147
Kojto 111:4336505e4b1c 148 /* Peripheral handlers */
Kojto 111:4336505e4b1c 149 void* pfnPM_Handler; /* 0 Power Manager */
Kojto 111:4336505e4b1c 150 void* pfnSYSCTRL_Handler; /* 1 System Control */
Kojto 111:4336505e4b1c 151 void* pfnWDT_Handler; /* 2 Watchdog Timer */
Kojto 111:4336505e4b1c 152 void* pfnRTC_Handler; /* 3 Real-Time Counter */
Kojto 111:4336505e4b1c 153 void* pfnEIC_Handler; /* 4 External Interrupt Controller */
Kojto 111:4336505e4b1c 154 void* pfnNVMCTRL_Handler; /* 5 Non-Volatile Memory Controller */
Kojto 111:4336505e4b1c 155 void* pfnDMAC_Handler; /* 6 Direct Memory Access Controller */
Kojto 111:4336505e4b1c 156 void* pfnReserved7;
Kojto 111:4336505e4b1c 157 void* pfnEVSYS_Handler; /* 8 Event System Interface */
Kojto 111:4336505e4b1c 158 void* pfnSERCOM0_Handler; /* 9 Serial Communication Interface 0 */
Kojto 111:4336505e4b1c 159 void* pfnSERCOM1_Handler; /* 10 Serial Communication Interface 1 */
Kojto 111:4336505e4b1c 160 void* pfnSERCOM2_Handler; /* 11 Serial Communication Interface 2 */
Kojto 111:4336505e4b1c 161 void* pfnSERCOM3_Handler; /* 12 Serial Communication Interface 3 */
Kojto 111:4336505e4b1c 162 void* pfnReserved13;
Kojto 111:4336505e4b1c 163 void* pfnReserved14;
Kojto 111:4336505e4b1c 164 void* pfnTCC0_Handler; /* 15 Timer Counter Control 0 */
Kojto 111:4336505e4b1c 165 void* pfnTCC1_Handler; /* 16 Timer Counter Control 1 */
Kojto 111:4336505e4b1c 166 void* pfnTCC2_Handler; /* 17 Timer Counter Control 2 */
Kojto 111:4336505e4b1c 167 void* pfnTC3_Handler; /* 18 Basic Timer Counter 3 */
Kojto 111:4336505e4b1c 168 void* pfnTC4_Handler; /* 19 Basic Timer Counter 4 */
Kojto 111:4336505e4b1c 169 void* pfnTC5_Handler; /* 20 Basic Timer Counter 5 */
Kojto 111:4336505e4b1c 170 void* pfnReserved21;
Kojto 111:4336505e4b1c 171 void* pfnReserved22;
Kojto 111:4336505e4b1c 172 void* pfnADC_Handler; /* 23 Analog Digital Converter */
Kojto 111:4336505e4b1c 173 void* pfnAC_Handler; /* 24 Analog Comparators */
Kojto 111:4336505e4b1c 174 void* pfnDAC_Handler; /* 25 Digital Analog Converter */
Kojto 111:4336505e4b1c 175 void* pfnReserved26;
Kojto 111:4336505e4b1c 176 void* pfnReserved27;
Kojto 111:4336505e4b1c 177 void* pfnAC1_Handler; /* 28 Analog Comparators 1 */
Kojto 111:4336505e4b1c 178 } DeviceVectors;
Kojto 111:4336505e4b1c 179
Kojto 111:4336505e4b1c 180 /* Cortex-M0+ processor handlers */
Kojto 111:4336505e4b1c 181 void Reset_Handler ( void );
Kojto 111:4336505e4b1c 182 void NMI_Handler ( void );
Kojto 111:4336505e4b1c 183 void HardFault_Handler ( void );
Kojto 111:4336505e4b1c 184 void SVC_Handler ( void );
Kojto 111:4336505e4b1c 185 void PendSV_Handler ( void );
Kojto 111:4336505e4b1c 186 void SysTick_Handler ( void );
Kojto 111:4336505e4b1c 187
Kojto 111:4336505e4b1c 188 /* Peripherals handlers */
Kojto 111:4336505e4b1c 189 void PM_Handler ( void );
Kojto 111:4336505e4b1c 190 void SYSCTRL_Handler ( void );
Kojto 111:4336505e4b1c 191 void WDT_Handler ( void );
Kojto 111:4336505e4b1c 192 void RTC_Handler ( void );
Kojto 111:4336505e4b1c 193 void EIC_Handler ( void );
Kojto 111:4336505e4b1c 194 void NVMCTRL_Handler ( void );
Kojto 111:4336505e4b1c 195 void DMAC_Handler ( void );
Kojto 111:4336505e4b1c 196 void EVSYS_Handler ( void );
Kojto 111:4336505e4b1c 197 void SERCOM0_Handler ( void );
Kojto 111:4336505e4b1c 198 void SERCOM1_Handler ( void );
Kojto 111:4336505e4b1c 199 void SERCOM2_Handler ( void );
Kojto 111:4336505e4b1c 200 void SERCOM3_Handler ( void );
Kojto 111:4336505e4b1c 201 void TCC0_Handler ( void );
Kojto 111:4336505e4b1c 202 void TCC1_Handler ( void );
Kojto 111:4336505e4b1c 203 void TCC2_Handler ( void );
Kojto 111:4336505e4b1c 204 void TC3_Handler ( void );
Kojto 111:4336505e4b1c 205 void TC4_Handler ( void );
Kojto 111:4336505e4b1c 206 void TC5_Handler ( void );
Kojto 111:4336505e4b1c 207 void ADC_Handler ( void );
Kojto 111:4336505e4b1c 208 void AC_Handler ( void );
Kojto 111:4336505e4b1c 209 void DAC_Handler ( void );
Kojto 111:4336505e4b1c 210 void AC1_Handler ( void );
Kojto 111:4336505e4b1c 211
Kojto 111:4336505e4b1c 212 /*
Kojto 111:4336505e4b1c 213 * \brief Configuration of the Cortex-M0+ Processor and Core Peripherals
Kojto 111:4336505e4b1c 214 */
Kojto 111:4336505e4b1c 215
Kojto 111:4336505e4b1c 216 #define LITTLE_ENDIAN 1
Kojto 111:4336505e4b1c 217 #define __CM0PLUS_REV 1 /*!< Core revision r0p1 */
Kojto 111:4336505e4b1c 218 #define __MPU_PRESENT 0 /*!< MPU present or not */
Kojto 111:4336505e4b1c 219 #define __NVIC_PRIO_BITS 2 /*!< Number of bits used for Priority Levels */
Kojto 111:4336505e4b1c 220 #define __VTOR_PRESENT 1 /*!< VTOR present or not */
Kojto 111:4336505e4b1c 221 #define __Vendor_SysTickConfig 0 /*!< Set to 1 if different SysTick Config is used */
Kojto 111:4336505e4b1c 222
Kojto 111:4336505e4b1c 223 /**
Kojto 111:4336505e4b1c 224 * \brief CMSIS includes
Kojto 111:4336505e4b1c 225 */
Kojto 111:4336505e4b1c 226
Kojto 111:4336505e4b1c 227 #include <core_cm0plus.h>
Kojto 111:4336505e4b1c 228 #if !defined DONT_USE_CMSIS_INIT
Kojto 111:4336505e4b1c 229 #include "system_samd21.h"
Kojto 111:4336505e4b1c 230 #endif /* DONT_USE_CMSIS_INIT */
Kojto 111:4336505e4b1c 231
Kojto 111:4336505e4b1c 232 /*@}*/
Kojto 111:4336505e4b1c 233
Kojto 111:4336505e4b1c 234 /* ************************************************************************** */
Kojto 111:4336505e4b1c 235 /** SOFTWARE PERIPHERAL API DEFINITION FOR SAMD21E16L */
Kojto 111:4336505e4b1c 236 /* ************************************************************************** */
Kojto 111:4336505e4b1c 237 /** \defgroup SAMD21E16L_api Peripheral Software API */
Kojto 111:4336505e4b1c 238 /*@{*/
Kojto 111:4336505e4b1c 239
Kojto 111:4336505e4b1c 240 #include "comp_ac.h"
Kojto 111:4336505e4b1c 241 #include "comp_adc.h"
Kojto 111:4336505e4b1c 242 #include "comp_dac.h"
Kojto 111:4336505e4b1c 243 #include "comp_dmac.h"
Kojto 111:4336505e4b1c 244 #include "comp_dsu.h"
Kojto 111:4336505e4b1c 245 #include "comp_eic.h"
Kojto 111:4336505e4b1c 246 #include "comp_evsys.h"
Kojto 111:4336505e4b1c 247 #include "comp_gclk.h"
Kojto 111:4336505e4b1c 248 #include "comp_hmatrixb.h"
Kojto 111:4336505e4b1c 249 #include "comp_mtb.h"
Kojto 111:4336505e4b1c 250 #include "comp_nvmctrl.h"
Kojto 111:4336505e4b1c 251 #include "comp_pac.h"
Kojto 111:4336505e4b1c 252 #include "comp_pm.h"
Kojto 111:4336505e4b1c 253 #include "comp_port.h"
Kojto 111:4336505e4b1c 254 #include "comp_rtc.h"
Kojto 111:4336505e4b1c 255 #include "comp_sercom.h"
Kojto 111:4336505e4b1c 256 #include "comp_sysctrl.h"
Kojto 111:4336505e4b1c 257 #include "comp_tc.h"
Kojto 111:4336505e4b1c 258 #include "comp_tcc_lighting.h"
Kojto 111:4336505e4b1c 259 #include "comp_wdt.h"
Kojto 111:4336505e4b1c 260 /*@}*/
Kojto 111:4336505e4b1c 261
Kojto 111:4336505e4b1c 262 /* ************************************************************************** */
Kojto 111:4336505e4b1c 263 /** REGISTERS ACCESS DEFINITIONS FOR SAMD21E16L */
Kojto 111:4336505e4b1c 264 /* ************************************************************************** */
Kojto 111:4336505e4b1c 265 /** \defgroup SAMD21E16L_reg Registers Access Definitions */
Kojto 111:4336505e4b1c 266 /*@{*/
Kojto 111:4336505e4b1c 267
Kojto 111:4336505e4b1c 268 #include "ins_ac.h"
Kojto 111:4336505e4b1c 269 #include "ins_ac1.h"
Kojto 111:4336505e4b1c 270 #include "ins_adc.h"
Kojto 111:4336505e4b1c 271 #include "ins_dac.h"
Kojto 111:4336505e4b1c 272 #include "ins_dmac.h"
Kojto 111:4336505e4b1c 273 #include "ins_dsu.h"
Kojto 111:4336505e4b1c 274 #include "ins_eic.h"
Kojto 111:4336505e4b1c 275 #include "ins_evsys.h"
Kojto 111:4336505e4b1c 276 #include "ins_gclk.h"
Kojto 111:4336505e4b1c 277 #include "ins_sbmatrix.h"
Kojto 111:4336505e4b1c 278 #include "ins_mtb.h"
Kojto 111:4336505e4b1c 279 #include "ins_nvmctrl.h"
Kojto 111:4336505e4b1c 280 #include "ins_pac0.h"
Kojto 111:4336505e4b1c 281 #include "ins_pac1.h"
Kojto 111:4336505e4b1c 282 #include "ins_pac2.h"
Kojto 111:4336505e4b1c 283 #include "ins_pm.h"
Kojto 111:4336505e4b1c 284 #include "ins_port.h"
Kojto 111:4336505e4b1c 285 #include "ins_rtc.h"
Kojto 111:4336505e4b1c 286 #include "ins_sercom0.h"
Kojto 111:4336505e4b1c 287 #include "ins_sercom1.h"
Kojto 111:4336505e4b1c 288 #include "ins_sercom2.h"
Kojto 111:4336505e4b1c 289 #include "ins_sercom3.h"
Kojto 111:4336505e4b1c 290 #include "ins_sysctrl.h"
Kojto 111:4336505e4b1c 291 #include "ins_tc3.h"
Kojto 111:4336505e4b1c 292 #include "ins_tc4.h"
Kojto 111:4336505e4b1c 293 #include "ins_tc5.h"
Kojto 111:4336505e4b1c 294 #include "ins_tcc0.h"
Kojto 111:4336505e4b1c 295 #include "ins_tcc1.h"
Kojto 111:4336505e4b1c 296 #include "ins_tcc2.h"
Kojto 111:4336505e4b1c 297 #include "ins_wdt.h"
Kojto 111:4336505e4b1c 298 /*@}*/
Kojto 111:4336505e4b1c 299
Kojto 111:4336505e4b1c 300 /* ************************************************************************** */
Kojto 111:4336505e4b1c 301 /** PERIPHERAL ID DEFINITIONS FOR SAMD21E16L */
Kojto 111:4336505e4b1c 302 /* ************************************************************************** */
Kojto 111:4336505e4b1c 303 /** \defgroup SAMD21E16L_id Peripheral Ids Definitions */
Kojto 111:4336505e4b1c 304 /*@{*/
Kojto 111:4336505e4b1c 305
Kojto 111:4336505e4b1c 306 // Peripheral instances on HPB0 bridge
Kojto 111:4336505e4b1c 307 #define ID_PAC0 0 /**< \brief Peripheral Access Controller 0 (PAC0) */
Kojto 111:4336505e4b1c 308 #define ID_PM 1 /**< \brief Power Manager (PM) */
Kojto 111:4336505e4b1c 309 #define ID_SYSCTRL 2 /**< \brief System Control (SYSCTRL) */
Kojto 111:4336505e4b1c 310 #define ID_GCLK 3 /**< \brief Generic Clock Generator (GCLK) */
Kojto 111:4336505e4b1c 311 #define ID_WDT 4 /**< \brief Watchdog Timer (WDT) */
Kojto 111:4336505e4b1c 312 #define ID_RTC 5 /**< \brief Real-Time Counter (RTC) */
Kojto 111:4336505e4b1c 313 #define ID_EIC 6 /**< \brief External Interrupt Controller (EIC) */
Kojto 111:4336505e4b1c 314
Kojto 111:4336505e4b1c 315 // Peripheral instances on HPB1 bridge
Kojto 111:4336505e4b1c 316 #define ID_PAC1 32 /**< \brief Peripheral Access Controller 1 (PAC1) */
Kojto 111:4336505e4b1c 317 #define ID_DSU 33 /**< \brief Device Service Unit (DSU) */
Kojto 111:4336505e4b1c 318 #define ID_NVMCTRL 34 /**< \brief Non-Volatile Memory Controller (NVMCTRL) */
Kojto 111:4336505e4b1c 319 #define ID_PORT 35 /**< \brief Port Module (PORT) */
Kojto 111:4336505e4b1c 320 #define ID_DMAC 36 /**< \brief Direct Memory Access Controller (DMAC) */
Kojto 111:4336505e4b1c 321 #define ID_MTB 38 /**< \brief Cortex-M0+ Micro-Trace Buffer (MTB) */
Kojto 111:4336505e4b1c 322 #define ID_SBMATRIX 39 /**< \brief HSB Matrix (SBMATRIX) */
Kojto 111:4336505e4b1c 323
Kojto 111:4336505e4b1c 324 // Peripheral instances on HPB2 bridge
Kojto 111:4336505e4b1c 325 #define ID_PAC2 64 /**< \brief Peripheral Access Controller 2 (PAC2) */
Kojto 111:4336505e4b1c 326 #define ID_EVSYS 65 /**< \brief Event System Interface (EVSYS) */
Kojto 111:4336505e4b1c 327 #define ID_SERCOM0 66 /**< \brief Serial Communication Interface 0 (SERCOM0) */
Kojto 111:4336505e4b1c 328 #define ID_SERCOM1 67 /**< \brief Serial Communication Interface 1 (SERCOM1) */
Kojto 111:4336505e4b1c 329 #define ID_SERCOM2 68 /**< \brief Serial Communication Interface 2 (SERCOM2) */
Kojto 111:4336505e4b1c 330 #define ID_SERCOM3 69 /**< \brief Serial Communication Interface 3 (SERCOM3) */
Kojto 111:4336505e4b1c 331 #define ID_TCC0 72 /**< \brief Timer Counter Control 0 (TCC0) */
Kojto 111:4336505e4b1c 332 #define ID_TCC1 73 /**< \brief Timer Counter Control 1 (TCC1) */
Kojto 111:4336505e4b1c 333 #define ID_TCC2 74 /**< \brief Timer Counter Control 2 (TCC2) */
Kojto 111:4336505e4b1c 334 #define ID_TC3 75 /**< \brief Basic Timer Counter 3 (TC3) */
Kojto 111:4336505e4b1c 335 #define ID_TC4 76 /**< \brief Basic Timer Counter 4 (TC4) */
Kojto 111:4336505e4b1c 336 #define ID_TC5 77 /**< \brief Basic Timer Counter 5 (TC5) */
Kojto 111:4336505e4b1c 337 #define ID_ADC 80 /**< \brief Analog Digital Converter (ADC) */
Kojto 111:4336505e4b1c 338 #define ID_AC 81 /**< \brief Analog Comparators (AC) */
Kojto 111:4336505e4b1c 339 #define ID_DAC 82 /**< \brief Digital Analog Converter (DAC) */
Kojto 111:4336505e4b1c 340 #define ID_AC1 85 /**< \brief Analog Comparators 1 (AC1) */
Kojto 111:4336505e4b1c 341
Kojto 111:4336505e4b1c 342 #define ID_PERIPH_COUNT 86 /**< \brief Number of peripheral IDs */
Kojto 111:4336505e4b1c 343 /*@}*/
Kojto 111:4336505e4b1c 344
Kojto 111:4336505e4b1c 345 /* ************************************************************************** */
Kojto 111:4336505e4b1c 346 /** BASE ADDRESS DEFINITIONS FOR SAMD21E16L */
Kojto 111:4336505e4b1c 347 /* ************************************************************************** */
Kojto 111:4336505e4b1c 348 /** \defgroup SAMD21E16L_base Peripheral Base Address Definitions */
Kojto 111:4336505e4b1c 349 /*@{*/
Kojto 111:4336505e4b1c 350
Kojto 111:4336505e4b1c 351 #if defined(__ASSEMBLY__) || defined(__IAR_SYSTEMS_ASM__)
Kojto 111:4336505e4b1c 352 #define AC (0x42004400UL) /**< \brief (AC) APB Base Address */
Kojto 111:4336505e4b1c 353 #define AC1 (0x42005400UL) /**< \brief (AC1) APB Base Address */
Kojto 111:4336505e4b1c 354 #define ADC (0x42004000UL) /**< \brief (ADC) APB Base Address */
Kojto 111:4336505e4b1c 355 #define DAC (0x42004800UL) /**< \brief (DAC) APB Base Address */
Kojto 111:4336505e4b1c 356 #define DMAC (0x41004800UL) /**< \brief (DMAC) APB Base Address */
Kojto 111:4336505e4b1c 357 #define DSU (0x41002000UL) /**< \brief (DSU) APB Base Address */
Kojto 111:4336505e4b1c 358 #define EIC (0x40001800UL) /**< \brief (EIC) APB Base Address */
Kojto 111:4336505e4b1c 359 #define EVSYS (0x42000400UL) /**< \brief (EVSYS) APB Base Address */
Kojto 111:4336505e4b1c 360 #define GCLK (0x40000C00UL) /**< \brief (GCLK) APB Base Address */
Kojto 111:4336505e4b1c 361 #define SBMATRIX (0x41007000UL) /**< \brief (SBMATRIX) APB Base Address */
Kojto 111:4336505e4b1c 362 #define MTB (0x41006000UL) /**< \brief (MTB) APB Base Address */
Kojto 111:4336505e4b1c 363 #define NVMCTRL (0x41004000UL) /**< \brief (NVMCTRL) APB Base Address */
Kojto 111:4336505e4b1c 364 #define NVMCTRL_CAL (0x00800000UL) /**< \brief (NVMCTRL) CAL Base Address */
Kojto 111:4336505e4b1c 365 #define NVMCTRL_LOCKBIT (0x00802000UL) /**< \brief (NVMCTRL) LOCKBIT Base Address */
Kojto 111:4336505e4b1c 366 #define NVMCTRL_OTP1 (0x00806000UL) /**< \brief (NVMCTRL) OTP1 Base Address */
Kojto 111:4336505e4b1c 367 #define NVMCTRL_OTP2 (0x00806008UL) /**< \brief (NVMCTRL) OTP2 Base Address */
Kojto 111:4336505e4b1c 368 #define NVMCTRL_OTP4 (0x00806020UL) /**< \brief (NVMCTRL) OTP4 Base Address */
Kojto 111:4336505e4b1c 369 #define NVMCTRL_TEMP_LOG (0x00806030UL) /**< \brief (NVMCTRL) TEMP_LOG Base Address */
Kojto 111:4336505e4b1c 370 #define NVMCTRL_USER (0x00804000UL) /**< \brief (NVMCTRL) USER Base Address */
Kojto 111:4336505e4b1c 371 #define PAC0 (0x40000000UL) /**< \brief (PAC0) APB Base Address */
Kojto 111:4336505e4b1c 372 #define PAC1 (0x41000000UL) /**< \brief (PAC1) APB Base Address */
Kojto 111:4336505e4b1c 373 #define PAC2 (0x42000000UL) /**< \brief (PAC2) APB Base Address */
Kojto 111:4336505e4b1c 374 #define PM (0x40000400UL) /**< \brief (PM) APB Base Address */
Kojto 111:4336505e4b1c 375 #define PORT (0x41004400UL) /**< \brief (PORT) APB Base Address */
Kojto 111:4336505e4b1c 376 #define PORT_IOBUS (0x60000000UL) /**< \brief (PORT) IOBUS Base Address */
Kojto 111:4336505e4b1c 377 #define RTC (0x40001400UL) /**< \brief (RTC) APB Base Address */
Kojto 111:4336505e4b1c 378 #define SERCOM0 (0x42000800UL) /**< \brief (SERCOM0) APB Base Address */
Kojto 111:4336505e4b1c 379 #define SERCOM1 (0x42000C00UL) /**< \brief (SERCOM1) APB Base Address */
Kojto 111:4336505e4b1c 380 #define SERCOM2 (0x42001000UL) /**< \brief (SERCOM2) APB Base Address */
Kojto 111:4336505e4b1c 381 #define SERCOM3 (0x42001400UL) /**< \brief (SERCOM3) APB Base Address */
Kojto 111:4336505e4b1c 382 #define SYSCTRL (0x40000800UL) /**< \brief (SYSCTRL) APB Base Address */
Kojto 111:4336505e4b1c 383 #define TC3 (0x42002C00UL) /**< \brief (TC3) APB Base Address */
Kojto 111:4336505e4b1c 384 #define TC4 (0x42003000UL) /**< \brief (TC4) APB Base Address */
Kojto 111:4336505e4b1c 385 #define TC5 (0x42003400UL) /**< \brief (TC5) APB Base Address */
Kojto 111:4336505e4b1c 386 #define TCC0 (0x42002000UL) /**< \brief (TCC0) APB Base Address */
Kojto 111:4336505e4b1c 387 #define TCC1 (0x42002400UL) /**< \brief (TCC1) APB Base Address */
Kojto 111:4336505e4b1c 388 #define TCC2 (0x42002800UL) /**< \brief (TCC2) APB Base Address */
Kojto 111:4336505e4b1c 389 #define WDT (0x40001000UL) /**< \brief (WDT) APB Base Address */
Kojto 111:4336505e4b1c 390 #else
Kojto 111:4336505e4b1c 391 #define AC ((Ac *)0x42004400UL) /**< \brief (AC) APB Base Address */
Kojto 111:4336505e4b1c 392 #define AC1 ((Ac *)0x42005400UL) /**< \brief (AC1) APB Base Address */
Kojto 111:4336505e4b1c 393 #define AC_INST_NUM 2 /**< \brief (AC) Number of instances */
Kojto 111:4336505e4b1c 394 #define AC_INSTS { AC, AC1 } /**< \brief (AC) Instances List */
Kojto 111:4336505e4b1c 395
Kojto 111:4336505e4b1c 396 #define ADC ((Adc *)0x42004000UL) /**< \brief (ADC) APB Base Address */
Kojto 111:4336505e4b1c 397 #define ADC_INST_NUM 1 /**< \brief (ADC) Number of instances */
Kojto 111:4336505e4b1c 398 #define ADC_INSTS { ADC } /**< \brief (ADC) Instances List */
Kojto 111:4336505e4b1c 399
Kojto 111:4336505e4b1c 400 #define DAC ((Dac *)0x42004800UL) /**< \brief (DAC) APB Base Address */
Kojto 111:4336505e4b1c 401 #define DAC_INST_NUM 1 /**< \brief (DAC) Number of instances */
Kojto 111:4336505e4b1c 402 #define DAC_INSTS { DAC } /**< \brief (DAC) Instances List */
Kojto 111:4336505e4b1c 403
Kojto 111:4336505e4b1c 404 #define DMAC ((Dmac *)0x41004800UL) /**< \brief (DMAC) APB Base Address */
Kojto 111:4336505e4b1c 405 #define DMAC_INST_NUM 1 /**< \brief (DMAC) Number of instances */
Kojto 111:4336505e4b1c 406 #define DMAC_INSTS { DMAC } /**< \brief (DMAC) Instances List */
Kojto 111:4336505e4b1c 407
Kojto 111:4336505e4b1c 408 #define DSU ((Dsu *)0x41002000UL) /**< \brief (DSU) APB Base Address */
Kojto 111:4336505e4b1c 409 #define DSU_INST_NUM 1 /**< \brief (DSU) Number of instances */
Kojto 111:4336505e4b1c 410 #define DSU_INSTS { DSU } /**< \brief (DSU) Instances List */
Kojto 111:4336505e4b1c 411
Kojto 111:4336505e4b1c 412 #define EIC ((Eic *)0x40001800UL) /**< \brief (EIC) APB Base Address */
Kojto 111:4336505e4b1c 413 #define EIC_INST_NUM 1 /**< \brief (EIC) Number of instances */
Kojto 111:4336505e4b1c 414 #define EIC_INSTS { EIC } /**< \brief (EIC) Instances List */
Kojto 111:4336505e4b1c 415
Kojto 111:4336505e4b1c 416 #define EVSYS ((Evsys *)0x42000400UL) /**< \brief (EVSYS) APB Base Address */
Kojto 111:4336505e4b1c 417 #define EVSYS_INST_NUM 1 /**< \brief (EVSYS) Number of instances */
Kojto 111:4336505e4b1c 418 #define EVSYS_INSTS { EVSYS } /**< \brief (EVSYS) Instances List */
Kojto 111:4336505e4b1c 419
Kojto 111:4336505e4b1c 420 #define GCLK ((Gclk *)0x40000C00UL) /**< \brief (GCLK) APB Base Address */
Kojto 111:4336505e4b1c 421 #define GCLK_INST_NUM 1 /**< \brief (GCLK) Number of instances */
Kojto 111:4336505e4b1c 422 #define GCLK_INSTS { GCLK } /**< \brief (GCLK) Instances List */
Kojto 111:4336505e4b1c 423
Kojto 111:4336505e4b1c 424 #define SBMATRIX ((Hmatrixb *)0x41007000UL) /**< \brief (SBMATRIX) APB Base Address */
Kojto 111:4336505e4b1c 425 #define HMATRIXB_INST_NUM 1 /**< \brief (HMATRIXB) Number of instances */
Kojto 111:4336505e4b1c 426 #define HMATRIXB_INSTS { SBMATRIX } /**< \brief (HMATRIXB) Instances List */
Kojto 111:4336505e4b1c 427
Kojto 111:4336505e4b1c 428 #define MTB ((Mtb *)0x41006000UL) /**< \brief (MTB) APB Base Address */
Kojto 111:4336505e4b1c 429 #define MTB_INST_NUM 1 /**< \brief (MTB) Number of instances */
Kojto 111:4336505e4b1c 430 #define MTB_INSTS { MTB } /**< \brief (MTB) Instances List */
Kojto 111:4336505e4b1c 431
Kojto 111:4336505e4b1c 432 #define NVMCTRL ((Nvmctrl *)0x41004000UL) /**< \brief (NVMCTRL) APB Base Address */
Kojto 111:4336505e4b1c 433 #define NVMCTRL_CAL (0x00800000UL) /**< \brief (NVMCTRL) CAL Base Address */
Kojto 111:4336505e4b1c 434 #define NVMCTRL_LOCKBIT (0x00802000UL) /**< \brief (NVMCTRL) LOCKBIT Base Address */
Kojto 111:4336505e4b1c 435 #define NVMCTRL_OTP1 (0x00806000UL) /**< \brief (NVMCTRL) OTP1 Base Address */
Kojto 111:4336505e4b1c 436 #define NVMCTRL_OTP2 (0x00806008UL) /**< \brief (NVMCTRL) OTP2 Base Address */
Kojto 111:4336505e4b1c 437 #define NVMCTRL_OTP4 (0x00806020UL) /**< \brief (NVMCTRL) OTP4 Base Address */
Kojto 111:4336505e4b1c 438 #define NVMCTRL_TEMP_LOG (0x00806030UL) /**< \brief (NVMCTRL) TEMP_LOG Base Address */
Kojto 111:4336505e4b1c 439 #define NVMCTRL_USER (0x00804000UL) /**< \brief (NVMCTRL) USER Base Address */
Kojto 111:4336505e4b1c 440 #define NVMCTRL_INST_NUM 1 /**< \brief (NVMCTRL) Number of instances */
Kojto 111:4336505e4b1c 441 #define NVMCTRL_INSTS { NVMCTRL } /**< \brief (NVMCTRL) Instances List */
Kojto 111:4336505e4b1c 442
Kojto 111:4336505e4b1c 443 #define PAC0 ((Pac *)0x40000000UL) /**< \brief (PAC0) APB Base Address */
Kojto 111:4336505e4b1c 444 #define PAC1 ((Pac *)0x41000000UL) /**< \brief (PAC1) APB Base Address */
Kojto 111:4336505e4b1c 445 #define PAC2 ((Pac *)0x42000000UL) /**< \brief (PAC2) APB Base Address */
Kojto 111:4336505e4b1c 446 #define PAC_INST_NUM 3 /**< \brief (PAC) Number of instances */
Kojto 111:4336505e4b1c 447 #define PAC_INSTS { PAC0, PAC1, PAC2 } /**< \brief (PAC) Instances List */
Kojto 111:4336505e4b1c 448
Kojto 111:4336505e4b1c 449 #define PM ((Pm *)0x40000400UL) /**< \brief (PM) APB Base Address */
Kojto 111:4336505e4b1c 450 #define PM_INST_NUM 1 /**< \brief (PM) Number of instances */
Kojto 111:4336505e4b1c 451 #define PM_INSTS { PM } /**< \brief (PM) Instances List */
Kojto 111:4336505e4b1c 452
Kojto 111:4336505e4b1c 453 #define PORT ((Port *)0x41004400UL) /**< \brief (PORT) APB Base Address */
Kojto 111:4336505e4b1c 454 #define PORT_IOBUS ((Port *)0x60000000UL) /**< \brief (PORT) IOBUS Base Address */
Kojto 111:4336505e4b1c 455 #define PORT_INST_NUM 1 /**< \brief (PORT) Number of instances */
Kojto 111:4336505e4b1c 456 #define PORT_INSTS { PORT } /**< \brief (PORT) Instances List */
Kojto 111:4336505e4b1c 457
Kojto 111:4336505e4b1c 458 #define RTC ((Rtc *)0x40001400UL) /**< \brief (RTC) APB Base Address */
Kojto 111:4336505e4b1c 459 #define RTC_INST_NUM 1 /**< \brief (RTC) Number of instances */
Kojto 111:4336505e4b1c 460 #define RTC_INSTS { RTC } /**< \brief (RTC) Instances List */
Kojto 111:4336505e4b1c 461
Kojto 111:4336505e4b1c 462 #define SERCOM0 ((Sercom *)0x42000800UL) /**< \brief (SERCOM0) APB Base Address */
Kojto 111:4336505e4b1c 463 #define SERCOM1 ((Sercom *)0x42000C00UL) /**< \brief (SERCOM1) APB Base Address */
Kojto 111:4336505e4b1c 464 #define SERCOM2 ((Sercom *)0x42001000UL) /**< \brief (SERCOM2) APB Base Address */
Kojto 111:4336505e4b1c 465 #define SERCOM3 ((Sercom *)0x42001400UL) /**< \brief (SERCOM3) APB Base Address */
Kojto 111:4336505e4b1c 466 #define SERCOM_INST_NUM 4 /**< \brief (SERCOM) Number of instances */
Kojto 111:4336505e4b1c 467 #define SERCOM_INSTS { SERCOM0, SERCOM1, SERCOM2, SERCOM3 } /**< \brief (SERCOM) Instances List */
Kojto 111:4336505e4b1c 468
Kojto 111:4336505e4b1c 469 #define SYSCTRL ((Sysctrl *)0x40000800UL) /**< \brief (SYSCTRL) APB Base Address */
Kojto 111:4336505e4b1c 470 #define SYSCTRL_INST_NUM 1 /**< \brief (SYSCTRL) Number of instances */
Kojto 111:4336505e4b1c 471 #define SYSCTRL_INSTS { SYSCTRL } /**< \brief (SYSCTRL) Instances List */
Kojto 111:4336505e4b1c 472
Kojto 111:4336505e4b1c 473 #define TC3 ((Tc *)0x42002C00UL) /**< \brief (TC3) APB Base Address */
Kojto 111:4336505e4b1c 474 #define TC4 ((Tc *)0x42003000UL) /**< \brief (TC4) APB Base Address */
Kojto 111:4336505e4b1c 475 #define TC5 ((Tc *)0x42003400UL) /**< \brief (TC5) APB Base Address */
Kojto 111:4336505e4b1c 476 #define TC_INST_NUM 3 /**< \brief (TC) Number of instances */
Kojto 111:4336505e4b1c 477 #define TC_INSTS { TC3, TC4, TC5 } /**< \brief (TC) Instances List */
Kojto 111:4336505e4b1c 478
Kojto 111:4336505e4b1c 479 #define TCC0 ((Tcc *)0x42002000UL) /**< \brief (TCC0) APB Base Address */
Kojto 111:4336505e4b1c 480 #define TCC1 ((Tcc *)0x42002400UL) /**< \brief (TCC1) APB Base Address */
Kojto 111:4336505e4b1c 481 #define TCC2 ((Tcc *)0x42002800UL) /**< \brief (TCC2) APB Base Address */
Kojto 111:4336505e4b1c 482 #define TCC_INST_NUM 3 /**< \brief (TCC) Number of instances */
Kojto 111:4336505e4b1c 483 #define TCC_INSTS { TCC0, TCC1, TCC2 } /**< \brief (TCC) Instances List */
Kojto 111:4336505e4b1c 484
Kojto 111:4336505e4b1c 485 #define WDT ((Wdt *)0x40001000UL) /**< \brief (WDT) APB Base Address */
Kojto 111:4336505e4b1c 486 #define WDT_INST_NUM 1 /**< \brief (WDT) Number of instances */
Kojto 111:4336505e4b1c 487 #define WDT_INSTS { WDT } /**< \brief (WDT) Instances List */
Kojto 111:4336505e4b1c 488
Kojto 111:4336505e4b1c 489 #endif /* (defined(__ASSEMBLY__) || defined(__IAR_SYSTEMS_ASM__)) */
Kojto 111:4336505e4b1c 490 /*@}*/
Kojto 111:4336505e4b1c 491
Kojto 111:4336505e4b1c 492 /* ************************************************************************** */
Kojto 111:4336505e4b1c 493 /** PORT DEFINITIONS FOR SAMD21E16L */
Kojto 111:4336505e4b1c 494 /* ************************************************************************** */
Kojto 111:4336505e4b1c 495 /** \defgroup SAMD21E16L_port PORT Definitions */
Kojto 111:4336505e4b1c 496 /*@{*/
Kojto 111:4336505e4b1c 497
Kojto 111:4336505e4b1c 498 #include "pio_samd21e16l.h"
Kojto 111:4336505e4b1c 499 /*@}*/
Kojto 111:4336505e4b1c 500
Kojto 111:4336505e4b1c 501 /* ************************************************************************** */
Kojto 111:4336505e4b1c 502 /** MEMORY MAPPING DEFINITIONS FOR SAMD21E16L */
Kojto 111:4336505e4b1c 503 /* ************************************************************************** */
Kojto 111:4336505e4b1c 504
Kojto 111:4336505e4b1c 505 #define FLASH_SIZE 0x10000UL /* 64 kB */
Kojto 111:4336505e4b1c 506 #define FLASH_PAGE_SIZE 64
Kojto 111:4336505e4b1c 507 #define FLASH_NB_OF_PAGES 1024
Kojto 111:4336505e4b1c 508 #define FLASH_USER_PAGE_SIZE 64
Kojto 111:4336505e4b1c 509 #define HMCRAMC0_SIZE 0x2000UL /* 8 kB */
Kojto 111:4336505e4b1c 510 #define FLASH_ADDR (0x00000000UL) /**< FLASH base address */
Kojto 111:4336505e4b1c 511 #define FLASH_USER_PAGE_ADDR (0x00800000UL) /**< FLASH_USER_PAGE base address */
Kojto 111:4336505e4b1c 512 #define HMCRAMC0_ADDR (0x20000000UL) /**< HMCRAMC0 base address */
Kojto 111:4336505e4b1c 513
Kojto 111:4336505e4b1c 514 #define DSU_DID_RESETVALUE 0x1001143EUL
Kojto 111:4336505e4b1c 515 #define EIC_EXTINT_NUM 16
Kojto 111:4336505e4b1c 516 #define NVMCTRL_RWW_EEPROM_SIZE 0x800UL /* 2 kB */
Kojto 111:4336505e4b1c 517 #define PORT_GROUPS 2
Kojto 111:4336505e4b1c 518 #define USB_HOST 0
Kojto 111:4336505e4b1c 519
Kojto 111:4336505e4b1c 520 /* ************************************************************************** */
Kojto 111:4336505e4b1c 521 /** ELECTRICAL DEFINITIONS FOR SAMD21E16L */
Kojto 111:4336505e4b1c 522 /* ************************************************************************** */
Kojto 111:4336505e4b1c 523
Kojto 111:4336505e4b1c 524
Kojto 111:4336505e4b1c 525 #ifdef __cplusplus
Kojto 111:4336505e4b1c 526 }
Kojto 111:4336505e4b1c 527 #endif
Kojto 111:4336505e4b1c 528
Kojto 111:4336505e4b1c 529 /*@}*/
Kojto 111:4336505e4b1c 530
Kojto 111:4336505e4b1c 531 #endif /* SAMD21E16L_H */