| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507 |
- /**
- * \file
- *
- * \brief Header file for SAMD11C14A
- *
- * Copyright (c) 2018 Microchip Technology Inc.
- *
- * \asf_license_start
- *
- * \page License
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * 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 _SAMD11C14A_
- #define _SAMD11C14A_
- /**
- * \ingroup SAMD11_definitions
- * \addtogroup SAMD11C14A_definitions SAMD11C14A definitions
- * This file defines all structures and symbols for SAMD11C14A:
- * - registers and bitfields
- * - peripheral base address
- * - peripheral ID
- * - PIO definitions
- */
- /*@{*/
- #ifdef __cplusplus
- extern "C" {
- #endif
- #if !(defined(__ASSEMBLY__) || defined(__IAR_SYSTEMS_ASM__))
- #include <stdint.h>
- #ifndef __cplusplus
- typedef volatile const uint32_t RoReg; /**< Read only 32-bit register (volatile const unsigned int) */
- typedef volatile const uint16_t RoReg16; /**< Read only 16-bit register (volatile const unsigned int) */
- typedef volatile const uint8_t RoReg8; /**< Read only 8-bit register (volatile const unsigned int) */
- #else
- typedef volatile uint32_t RoReg; /**< Read only 32-bit register (volatile const unsigned int) */
- typedef volatile uint16_t RoReg16; /**< Read only 16-bit register (volatile const unsigned int) */
- typedef volatile uint8_t RoReg8; /**< Read only 8-bit register (volatile const unsigned int) */
- #endif
- typedef volatile uint32_t WoReg; /**< Write only 32-bit register (volatile unsigned int) */
- typedef volatile uint16_t WoReg16; /**< Write only 16-bit register (volatile unsigned int) */
- typedef volatile uint8_t WoReg8; /**< Write only 8-bit register (volatile unsigned int) */
- typedef volatile uint32_t RwReg; /**< Read-Write 32-bit register (volatile unsigned int) */
- typedef volatile uint16_t RwReg16; /**< Read-Write 16-bit register (volatile unsigned int) */
- typedef volatile uint8_t RwReg8; /**< Read-Write 8-bit register (volatile unsigned int) */
- #endif
- #if !defined(SKIP_INTEGER_LITERALS)
- #if defined(_U_) || defined(_L_) || defined(_UL_)
- #error "Integer Literals macros already defined elsewhere"
- #endif
- #if !(defined(__ASSEMBLY__) || defined(__IAR_SYSTEMS_ASM__))
- /* Macros that deal with adding suffixes to integer literal constants for C/C++ */
- #define _U_(x) x ## U /**< C code: Unsigned integer literal constant value */
- #define _L_(x) x ## L /**< C code: Long integer literal constant value */
- #define _UL_(x) x ## UL /**< C code: Unsigned Long integer literal constant value */
- #else /* Assembler */
- #define _U_(x) x /**< Assembler: Unsigned integer literal constant value */
- #define _L_(x) x /**< Assembler: Long integer literal constant value */
- #define _UL_(x) x /**< Assembler: Unsigned Long integer literal constant value */
- #endif /* !(defined(__ASSEMBLY__) || defined(__IAR_SYSTEMS_ASM__)) */
- #endif /* SKIP_INTEGER_LITERALS */
- /* ************************************************************************** */
- /** CMSIS DEFINITIONS FOR SAMD11C14A */
- /* ************************************************************************** */
- /** \defgroup SAMD11C14A_cmsis CMSIS Definitions */
- /*@{*/
- /** Interrupt Number Definition */
- typedef enum IRQn
- {
- /****** Cortex-M0+ Processor Exceptions Numbers *******************/
- NonMaskableInt_IRQn = -14,/**< 2 Non Maskable Interrupt */
- HardFault_IRQn = -13,/**< 3 Hard Fault Interrupt */
- SVCall_IRQn = -5, /**< 11 SV Call Interrupt */
- PendSV_IRQn = -2, /**< 14 Pend SV Interrupt */
- SysTick_IRQn = -1, /**< 15 System Tick Interrupt */
- /****** SAMD11C14A-specific Interrupt Numbers *********************/
- PM_IRQn = 0, /**< 0 SAMD11C14A Power Manager (PM) */
- SYSCTRL_IRQn = 1, /**< 1 SAMD11C14A System Control (SYSCTRL) */
- WDT_IRQn = 2, /**< 2 SAMD11C14A Watchdog Timer (WDT) */
- RTC_IRQn = 3, /**< 3 SAMD11C14A Real-Time Counter (RTC) */
- EIC_IRQn = 4, /**< 4 SAMD11C14A External Interrupt Controller (EIC) */
- NVMCTRL_IRQn = 5, /**< 5 SAMD11C14A Non-Volatile Memory Controller (NVMCTRL) */
- DMAC_IRQn = 6, /**< 6 SAMD11C14A Direct Memory Access Controller (DMAC) */
- USB_IRQn = 7, /**< 7 SAMD11C14A Universal Serial Bus (USB) */
- EVSYS_IRQn = 8, /**< 8 SAMD11C14A Event System Interface (EVSYS) */
- SERCOM0_IRQn = 9, /**< 9 SAMD11C14A Serial Communication Interface 0 (SERCOM0) */
- SERCOM1_IRQn = 10, /**< 10 SAMD11C14A Serial Communication Interface 1 (SERCOM1) */
- TCC0_IRQn = 12, /**< 12 SAMD11C14A Timer Counter Control (TCC0) */
- TC1_IRQn = 13, /**< 13 SAMD11C14A Basic Timer Counter 1 (TC1) */
- TC2_IRQn = 14, /**< 14 SAMD11C14A Basic Timer Counter 2 (TC2) */
- ADC_IRQn = 15, /**< 15 SAMD11C14A Analog Digital Converter (ADC) */
- AC_IRQn = 16, /**< 16 SAMD11C14A Analog Comparators (AC) */
- DAC_IRQn = 17, /**< 17 SAMD11C14A Digital Analog Converter (DAC) */
- PTC_IRQn = 18, /**< 18 SAMD11C14A Peripheral Touch Controller (PTC) */
- PERIPH_COUNT_IRQn = 19 /**< Number of peripheral IDs */
- } IRQn_Type;
- typedef struct _DeviceVectors
- {
- /* Stack pointer */
- void* pvStack;
- /* Cortex-M handlers */
- void* pfnReset_Handler;
- void* pfnNonMaskableInt_Handler;
- void* pfnHardFault_Handler;
- void* pvReservedM12;
- void* pvReservedM11;
- void* pvReservedM10;
- void* pvReservedM9;
- void* pvReservedM8;
- void* pvReservedM7;
- void* pvReservedM6;
- void* pfnSVCall_Handler;
- void* pvReservedM4;
- void* pvReservedM3;
- void* pfnPendSV_Handler;
- void* pfnSysTick_Handler;
- /* Peripheral handlers */
- void* pfnPM_Handler; /* 0 Power Manager */
- void* pfnSYSCTRL_Handler; /* 1 System Control */
- void* pfnWDT_Handler; /* 2 Watchdog Timer */
- void* pfnRTC_Handler; /* 3 Real-Time Counter */
- void* pfnEIC_Handler; /* 4 External Interrupt Controller */
- void* pfnNVMCTRL_Handler; /* 5 Non-Volatile Memory Controller */
- void* pfnDMAC_Handler; /* 6 Direct Memory Access Controller */
- void* pfnUSB_Handler; /* 7 Universal Serial Bus */
- void* pfnEVSYS_Handler; /* 8 Event System Interface */
- void* pfnSERCOM0_Handler; /* 9 Serial Communication Interface 0 */
- void* pfnSERCOM1_Handler; /* 10 Serial Communication Interface 1 */
- void* pvReserved11;
- void* pfnTCC0_Handler; /* 12 Timer Counter Control */
- void* pfnTC1_Handler; /* 13 Basic Timer Counter 1 */
- void* pfnTC2_Handler; /* 14 Basic Timer Counter 2 */
- void* pfnADC_Handler; /* 15 Analog Digital Converter */
- void* pfnAC_Handler; /* 16 Analog Comparators */
- void* pfnDAC_Handler; /* 17 Digital Analog Converter */
- void* pfnPTC_Handler; /* 18 Peripheral Touch Controller */
- } DeviceVectors;
- /* Cortex-M0+ processor handlers */
- void Reset_Handler ( void );
- void NonMaskableInt_Handler ( void );
- void HardFault_Handler ( void );
- void SVCall_Handler ( void );
- void PendSV_Handler ( void );
- void SysTick_Handler ( void );
- /* Peripherals handlers */
- void PM_Handler ( void );
- void SYSCTRL_Handler ( void );
- void WDT_Handler ( void );
- void RTC_Handler ( void );
- void EIC_Handler ( void );
- void NVMCTRL_Handler ( void );
- void DMAC_Handler ( void );
- void USB_Handler ( void );
- void EVSYS_Handler ( void );
- void SERCOM0_Handler ( void );
- void SERCOM1_Handler ( void );
- void TCC0_Handler ( void );
- void TC1_Handler ( void );
- void TC2_Handler ( void );
- void ADC_Handler ( void );
- void AC_Handler ( void );
- void DAC_Handler ( void );
- void PTC_Handler ( void );
- /*
- * \brief Configuration of the Cortex-M0+ Processor and Core Peripherals
- */
- #define __CM0PLUS_REV 1 /*!< Core revision r0p1 */
- #define __MPU_PRESENT 0 /*!< MPU present or not */
- #define __NVIC_PRIO_BITS 2 /*!< Number of bits used for Priority Levels */
- #define __VTOR_PRESENT 1 /*!< VTOR present or not */
- #define __Vendor_SysTickConfig 0 /*!< Set to 1 if different SysTick Config is used */
- /**
- * \brief CMSIS includes
- */
- #include <core_cm0plus.h>
- #if !defined DONT_USE_CMSIS_INIT
- #include "system_samd11.h"
- #endif /* DONT_USE_CMSIS_INIT */
- /*@}*/
- /* ************************************************************************** */
- /** SOFTWARE PERIPHERAL API DEFINITION FOR SAMD11C14A */
- /* ************************************************************************** */
- /** \defgroup SAMD11C14A_api Peripheral Software API */
- /*@{*/
- #include "component/ac.h"
- #include "component/adc.h"
- #include "component/dac.h"
- #include "component/dmac.h"
- #include "component/dsu.h"
- #include "component/eic.h"
- #include "component/evsys.h"
- #include "component/gclk.h"
- #include "component/hmatrixb.h"
- #include "component/mtb.h"
- #include "component/nvmctrl.h"
- #include "component/pac.h"
- #include "component/pm.h"
- #include "component/port.h"
- #include "component/rtc.h"
- #include "component/sercom.h"
- #include "component/sysctrl.h"
- #include "component/tc.h"
- #include "component/tcc.h"
- #include "component/usb.h"
- #include "component/wdt.h"
- /*@}*/
- /* ************************************************************************** */
- /** REGISTERS ACCESS DEFINITIONS FOR SAMD11C14A */
- /* ************************************************************************** */
- /** \defgroup SAMD11C14A_reg Registers Access Definitions */
- /*@{*/
- #include "instance/ac.h"
- #include "instance/adc.h"
- #include "instance/dac.h"
- #include "instance/dmac.h"
- #include "instance/dsu.h"
- #include "instance/eic.h"
- #include "instance/evsys.h"
- #include "instance/gclk.h"
- #include "instance/sbmatrix.h"
- #include "instance/mtb.h"
- #include "instance/nvmctrl.h"
- #include "instance/pac0.h"
- #include "instance/pac1.h"
- #include "instance/pac2.h"
- #include "instance/pm.h"
- #include "instance/port.h"
- #include "instance/ptc.h"
- #include "instance/rtc.h"
- #include "instance/sercom0.h"
- #include "instance/sercom1.h"
- #include "instance/sysctrl.h"
- #include "instance/tc1.h"
- #include "instance/tc2.h"
- #include "instance/tcc0.h"
- #include "instance/usb.h"
- #include "instance/wdt.h"
- /*@}*/
- /* ************************************************************************** */
- /** PERIPHERAL ID DEFINITIONS FOR SAMD11C14A */
- /* ************************************************************************** */
- /** \defgroup SAMD11C14A_id Peripheral Ids Definitions */
- /*@{*/
- // Peripheral instances on HPB0 bridge
- #define ID_PAC0 0 /**< \brief Peripheral Access Controller 0 (PAC0) */
- #define ID_PM 1 /**< \brief Power Manager (PM) */
- #define ID_SYSCTRL 2 /**< \brief System Control (SYSCTRL) */
- #define ID_GCLK 3 /**< \brief Generic Clock Generator (GCLK) */
- #define ID_WDT 4 /**< \brief Watchdog Timer (WDT) */
- #define ID_RTC 5 /**< \brief Real-Time Counter (RTC) */
- #define ID_EIC 6 /**< \brief External Interrupt Controller (EIC) */
- // Peripheral instances on HPB1 bridge
- #define ID_PAC1 32 /**< \brief Peripheral Access Controller 1 (PAC1) */
- #define ID_DSU 33 /**< \brief Device Service Unit (DSU) */
- #define ID_NVMCTRL 34 /**< \brief Non-Volatile Memory Controller (NVMCTRL) */
- #define ID_PORT 35 /**< \brief Port Module (PORT) */
- #define ID_DMAC 36 /**< \brief Direct Memory Access Controller (DMAC) */
- #define ID_USB 37 /**< \brief Universal Serial Bus (USB) */
- #define ID_MTB 38 /**< \brief Cortex-M0+ Micro-Trace Buffer (MTB) */
- #define ID_SBMATRIX 39 /**< \brief HSB Matrix (SBMATRIX) */
- // Peripheral instances on HPB2 bridge
- #define ID_PAC2 64 /**< \brief Peripheral Access Controller 2 (PAC2) */
- #define ID_EVSYS 65 /**< \brief Event System Interface (EVSYS) */
- #define ID_SERCOM0 66 /**< \brief Serial Communication Interface 0 (SERCOM0) */
- #define ID_SERCOM1 67 /**< \brief Serial Communication Interface 1 (SERCOM1) */
- #define ID_TCC0 69 /**< \brief Timer Counter Control (TCC0) */
- #define ID_TC1 70 /**< \brief Basic Timer Counter 1 (TC1) */
- #define ID_TC2 71 /**< \brief Basic Timer Counter 2 (TC2) */
- #define ID_ADC 72 /**< \brief Analog Digital Converter (ADC) */
- #define ID_AC 73 /**< \brief Analog Comparators (AC) */
- #define ID_DAC 74 /**< \brief Digital Analog Converter (DAC) */
- #define ID_PTC 75 /**< \brief Peripheral Touch Controller (PTC) */
- #define ID_PERIPH_COUNT 76 /**< \brief Max number of peripheral IDs */
- /*@}*/
- /* ************************************************************************** */
- /** BASE ADDRESS DEFINITIONS FOR SAMD11C14A */
- /* ************************************************************************** */
- /** \defgroup SAMD11C14A_base Peripheral Base Address Definitions */
- /*@{*/
- #if defined(__ASSEMBLY__) || defined(__IAR_SYSTEMS_ASM__)
- #define AC (0x42002400) /**< \brief (AC) APB Base Address */
- #define ADC (0x42002000) /**< \brief (ADC) APB Base Address */
- #define DAC (0x42002800) /**< \brief (DAC) APB Base Address */
- #define DMAC (0x41004800) /**< \brief (DMAC) APB Base Address */
- #define DSU (0x41002000) /**< \brief (DSU) APB Base Address */
- #define EIC (0x40001800) /**< \brief (EIC) APB Base Address */
- #define EVSYS (0x42000400) /**< \brief (EVSYS) APB Base Address */
- #define GCLK (0x40000C00) /**< \brief (GCLK) APB Base Address */
- #define SBMATRIX (0x41007000) /**< \brief (SBMATRIX) APB Base Address */
- #define MTB (0x41006000) /**< \brief (MTB) APB Base Address */
- #define NVMCTRL (0x41004000) /**< \brief (NVMCTRL) APB Base Address */
- #define NVMCTRL_CAL (0x00800000) /**< \brief (NVMCTRL) CAL Base Address */
- #define NVMCTRL_LOCKBIT (0x00802000) /**< \brief (NVMCTRL) LOCKBIT Base Address */
- #define NVMCTRL_OTP1 (0x00806000) /**< \brief (NVMCTRL) OTP1 Base Address */
- #define NVMCTRL_OTP2 (0x00806008) /**< \brief (NVMCTRL) OTP2 Base Address */
- #define NVMCTRL_OTP4 (0x00806020) /**< \brief (NVMCTRL) OTP4 Base Address */
- #define NVMCTRL_TEMP_LOG (0x00806030) /**< \brief (NVMCTRL) TEMP_LOG Base Address */
- #define NVMCTRL_USER (0x00804000) /**< \brief (NVMCTRL) USER Base Address */
- #define PAC0 (0x40000000) /**< \brief (PAC0) APB Base Address */
- #define PAC1 (0x41000000) /**< \brief (PAC1) APB Base Address */
- #define PAC2 (0x42000000) /**< \brief (PAC2) APB Base Address */
- #define PM (0x40000400) /**< \brief (PM) APB Base Address */
- #define PORT (0x41004400) /**< \brief (PORT) APB Base Address */
- #define PORT_IOBUS (0x60000000) /**< \brief (PORT) IOBUS Base Address */
- #define PTC (0x42002C00) /**< \brief (PTC) APB Base Address */
- #define RTC (0x40001400) /**< \brief (RTC) APB Base Address */
- #define SERCOM0 (0x42000800) /**< \brief (SERCOM0) APB Base Address */
- #define SERCOM1 (0x42000C00) /**< \brief (SERCOM1) APB Base Address */
- #define SYSCTRL (0x40000800) /**< \brief (SYSCTRL) APB Base Address */
- #define TC1 (0x42001800) /**< \brief (TC1) APB Base Address */
- #define TC2 (0x42001C00) /**< \brief (TC2) APB Base Address */
- #define TCC0 (0x42001400) /**< \brief (TCC0) APB Base Address */
- #define USB (0x41005000) /**< \brief (USB) APB Base Address */
- #define WDT (0x40001000) /**< \brief (WDT) APB Base Address */
- #else
- #define AC ((Ac *)0x42002400UL) /**< \brief (AC) APB Base Address */
- #define AC_INST_NUM 1 /**< \brief (AC) Number of instances */
- #define AC_INSTS { AC } /**< \brief (AC) Instances List */
- #define ADC ((Adc *)0x42002000UL) /**< \brief (ADC) APB Base Address */
- #define ADC_INST_NUM 1 /**< \brief (ADC) Number of instances */
- #define ADC_INSTS { ADC } /**< \brief (ADC) Instances List */
- #define DAC ((Dac *)0x42002800UL) /**< \brief (DAC) APB Base Address */
- #define DAC_INST_NUM 1 /**< \brief (DAC) Number of instances */
- #define DAC_INSTS { DAC } /**< \brief (DAC) Instances List */
- #define DMAC ((Dmac *)0x41004800UL) /**< \brief (DMAC) APB Base Address */
- #define DMAC_INST_NUM 1 /**< \brief (DMAC) Number of instances */
- #define DMAC_INSTS { DMAC } /**< \brief (DMAC) Instances List */
- #define DSU ((Dsu *)0x41002000UL) /**< \brief (DSU) APB Base Address */
- #define DSU_INST_NUM 1 /**< \brief (DSU) Number of instances */
- #define DSU_INSTS { DSU } /**< \brief (DSU) Instances List */
- #define EIC ((Eic *)0x40001800UL) /**< \brief (EIC) APB Base Address */
- #define EIC_INST_NUM 1 /**< \brief (EIC) Number of instances */
- #define EIC_INSTS { EIC } /**< \brief (EIC) Instances List */
- #define EVSYS ((Evsys *)0x42000400UL) /**< \brief (EVSYS) APB Base Address */
- #define EVSYS_INST_NUM 1 /**< \brief (EVSYS) Number of instances */
- #define EVSYS_INSTS { EVSYS } /**< \brief (EVSYS) Instances List */
- #define GCLK ((Gclk *)0x40000C00UL) /**< \brief (GCLK) APB Base Address */
- #define GCLK_INST_NUM 1 /**< \brief (GCLK) Number of instances */
- #define GCLK_INSTS { GCLK } /**< \brief (GCLK) Instances List */
- #define SBMATRIX ((Hmatrixb *)0x41007000UL) /**< \brief (SBMATRIX) APB Base Address */
- #define HMATRIXB_INST_NUM 1 /**< \brief (HMATRIXB) Number of instances */
- #define HMATRIXB_INSTS { SBMATRIX } /**< \brief (HMATRIXB) Instances List */
- #define MTB ((Mtb *)0x41006000UL) /**< \brief (MTB) APB Base Address */
- #define MTB_INST_NUM 1 /**< \brief (MTB) Number of instances */
- #define MTB_INSTS { MTB } /**< \brief (MTB) Instances List */
- #define NVMCTRL ((Nvmctrl *)0x41004000UL) /**< \brief (NVMCTRL) APB Base Address */
- #define NVMCTRL_CAL (0x00800000UL) /**< \brief (NVMCTRL) CAL Base Address */
- #define NVMCTRL_LOCKBIT (0x00802000UL) /**< \brief (NVMCTRL) LOCKBIT Base Address */
- #define NVMCTRL_OTP1 (0x00806000UL) /**< \brief (NVMCTRL) OTP1 Base Address */
- #define NVMCTRL_OTP2 (0x00806008UL) /**< \brief (NVMCTRL) OTP2 Base Address */
- #define NVMCTRL_OTP4 (0x00806020UL) /**< \brief (NVMCTRL) OTP4 Base Address */
- #define NVMCTRL_TEMP_LOG (0x00806030UL) /**< \brief (NVMCTRL) TEMP_LOG Base Address */
- #define NVMCTRL_USER (0x00804000UL) /**< \brief (NVMCTRL) USER Base Address */
- #define NVMCTRL_INST_NUM 1 /**< \brief (NVMCTRL) Number of instances */
- #define NVMCTRL_INSTS { NVMCTRL } /**< \brief (NVMCTRL) Instances List */
- #define PAC0 ((Pac *)0x40000000UL) /**< \brief (PAC0) APB Base Address */
- #define PAC1 ((Pac *)0x41000000UL) /**< \brief (PAC1) APB Base Address */
- #define PAC2 ((Pac *)0x42000000UL) /**< \brief (PAC2) APB Base Address */
- #define PAC_INST_NUM 3 /**< \brief (PAC) Number of instances */
- #define PAC_INSTS { PAC0, PAC1, PAC2 } /**< \brief (PAC) Instances List */
- #define PM ((Pm *)0x40000400UL) /**< \brief (PM) APB Base Address */
- #define PM_INST_NUM 1 /**< \brief (PM) Number of instances */
- #define PM_INSTS { PM } /**< \brief (PM) Instances List */
- #define PORT ((Port *)0x41004400UL) /**< \brief (PORT) APB Base Address */
- #define PORT_IOBUS ((Port *)0x60000000UL) /**< \brief (PORT) IOBUS Base Address */
- #define PORT_INST_NUM 1 /**< \brief (PORT) Number of instances */
- #define PORT_INSTS { PORT } /**< \brief (PORT) Instances List */
- #define PORT_IOBUS_INST_NUM 1 /**< \brief (PORT) Number of instances */
- #define PORT_IOBUS_INSTS { PORT_IOBUS } /**< \brief (PORT) Instances List */
- #define PTC ((void *)0x42002C00UL) /**< \brief (PTC) APB Base Address */
- #define PTC_GCLK_ID 23
- #define PTC_INST_NUM 1 /**< \brief (PTC) Number of instances */
- #define PTC_INSTS { PTC } /**< \brief (PTC) Instances List */
- #define RTC ((Rtc *)0x40001400UL) /**< \brief (RTC) APB Base Address */
- #define RTC_INST_NUM 1 /**< \brief (RTC) Number of instances */
- #define RTC_INSTS { RTC } /**< \brief (RTC) Instances List */
- #define SERCOM0 ((Sercom *)0x42000800UL) /**< \brief (SERCOM0) APB Base Address */
- #define SERCOM1 ((Sercom *)0x42000C00UL) /**< \brief (SERCOM1) APB Base Address */
- #define SERCOM_INST_NUM 2 /**< \brief (SERCOM) Number of instances */
- #define SERCOM_INSTS { SERCOM0, SERCOM1 } /**< \brief (SERCOM) Instances List */
- #define SYSCTRL ((Sysctrl *)0x40000800UL) /**< \brief (SYSCTRL) APB Base Address */
- #define SYSCTRL_INST_NUM 1 /**< \brief (SYSCTRL) Number of instances */
- #define SYSCTRL_INSTS { SYSCTRL } /**< \brief (SYSCTRL) Instances List */
- #define TC1 ((Tc *)0x42001800UL) /**< \brief (TC1) APB Base Address */
- #define TC2 ((Tc *)0x42001C00UL) /**< \brief (TC2) APB Base Address */
- #define TC_INST_NUM 2 /**< \brief (TC) Number of instances */
- #define TC_INSTS { TC1, TC2 } /**< \brief (TC) Instances List */
- #define TCC0 ((Tcc *)0x42001400UL) /**< \brief (TCC0) APB Base Address */
- #define TCC_INST_NUM 1 /**< \brief (TCC) Number of instances */
- #define TCC_INSTS { TCC0 } /**< \brief (TCC) Instances List */
- #define USB ((Usb *)0x41005000UL) /**< \brief (USB) APB Base Address */
- #define USB_INST_NUM 1 /**< \brief (USB) Number of instances */
- #define USB_INSTS { USB } /**< \brief (USB) Instances List */
- #define WDT ((Wdt *)0x40001000UL) /**< \brief (WDT) APB Base Address */
- #define WDT_INST_NUM 1 /**< \brief (WDT) Number of instances */
- #define WDT_INSTS { WDT } /**< \brief (WDT) Instances List */
- #endif /* (defined(__ASSEMBLY__) || defined(__IAR_SYSTEMS_ASM__)) */
- /*@}*/
- /* ************************************************************************** */
- /** PORT DEFINITIONS FOR SAMD11C14A */
- /* ************************************************************************** */
- /** \defgroup SAMD11C14A_port PORT Definitions */
- /*@{*/
- #include "pio/samd11c14a.h"
- /*@}*/
- /* ************************************************************************** */
- /** MEMORY MAPPING DEFINITIONS FOR SAMD11C14A */
- /* ************************************************************************** */
- #define FLASH_SIZE _UL_(0x00004000) /* 16 kB */
- #define FLASH_PAGE_SIZE 64
- #define FLASH_NB_OF_PAGES 256
- #define FLASH_USER_PAGE_SIZE 64
- #define HMCRAMC0_SIZE _UL_(0x00001000) /* 4 kB */
- #define FLASH_ADDR _UL_(0x00000000) /**< FLASH base address */
- #define FLASH_USER_PAGE_ADDR _UL_(0x00800000) /**< FLASH_USER_PAGE base address */
- #define HMCRAMC0_ADDR _UL_(0x20000000) /**< HMCRAMC0 base address */
- #define HPB0_ADDR _UL_(0x40000000) /**< HPB0 base address */
- #define HPB1_ADDR _UL_(0x41000000) /**< HPB1 base address */
- #define HPB2_ADDR _UL_(0x42000000) /**< HPB2 base address */
- #define PPB_ADDR _UL_(0xE0000000) /**< PPB base address */
- #define DSU_DID_RESETVALUE _UL_(0x10030106)
- /* ************************************************************************** */
- /** ELECTRICAL DEFINITIONS FOR SAMD11C14A */
- /* ************************************************************************** */
- #ifdef __cplusplus
- }
- #endif
- /*@}*/
- #endif /* SAMD11C14A_H */
|