MCUXpresso_LPC804/devices/LPC804/LPC804.h

7425 lines
423 KiB
C

/*
** ###################################################################
** Processors: LPC804M101JDH20
** LPC804M101JDH24
** LPC804M101JHI33
** LPC804M111JDH24
** LPC804UK
**
** Compilers: GNU C Compiler
** IAR ANSI C/C++ Compiler for ARM
** Keil ARM C/C++ Compiler
** MCUXpresso Compiler
**
** Reference manual: LPC804 User manual Rev.1.0 24 Jan 2018
** Version: rev. 1.0, 2018-01-09
** Build: b200521
**
** Abstract:
** CMSIS Peripheral Access Layer for LPC804
**
** Copyright 1997-2016 Freescale Semiconductor, Inc.
** Copyright 2016-2020 NXP
** All rights reserved.
**
** SPDX-License-Identifier: BSD-3-Clause
**
** http: www.nxp.com
** mail: support@nxp.com
**
** Revisions:
** - rev. 1.0 (2018-01-09)
** Initial version.
**
** ###################################################################
*/
/*!
* @file LPC804.h
* @version 1.0
* @date 2018-01-09
* @brief CMSIS Peripheral Access Layer for LPC804
*
* CMSIS Peripheral Access Layer for LPC804
*/
#ifndef _LPC804_H_
#define _LPC804_H_ /**< Symbol preventing repeated inclusion */
/** Memory map major version (memory maps with equal major version number are
* compatible) */
#define MCU_MEM_MAP_VERSION 0x0100U
/** Memory map minor version */
#define MCU_MEM_MAP_VERSION_MINOR 0x0000U
/* ----------------------------------------------------------------------------
-- Interrupt vector numbers
---------------------------------------------------------------------------- */
/*!
* @addtogroup Interrupt_vector_numbers Interrupt vector numbers
* @{
*/
/** Interrupt Number Definitions */
#define NUMBER_OF_INT_VECTORS 48 /**< Number of interrupts in the Vector table */
typedef enum IRQn {
/* Auxiliary constants */
NotAvail_IRQn = -128, /**< Not available device specific interrupt */
/* Core interrupts */
NonMaskableInt_IRQn = -14, /**< Non Maskable Interrupt */
HardFault_IRQn = -13, /**< Cortex-M0 SV Hard Fault Interrupt */
SVCall_IRQn = -5, /**< Cortex-M0 SV Call Interrupt */
PendSV_IRQn = -2, /**< Cortex-M0 Pend SV Interrupt */
SysTick_IRQn = -1, /**< Cortex-M0 System Tick Interrupt */
/* Device specific interrupts */
SPI0_IRQn = 0, /**< SPI0 interrupt */
Reserved17_IRQn = 1, /**< Reserved interrupt */
DAC0_IRQn = 2, /**< DAC0 interrupt */
USART0_IRQn = 3, /**< USART0 interrupt */
USART1_IRQn = 4, /**< USART1 interrupt */
Reserved21_IRQn = 5, /**< Reserved interrupt */
Reserved22_IRQn = 6, /**< Reserved interrupt */
I2C1_IRQn = 7, /**< I2C1 interrupt */
I2C0_IRQn = 8, /**< I2C0 interrupt */
Reserved25_IRQn = 9, /**< Reserved interrupt */
MRT0_IRQn = 10, /**< Multi-rate timer interrupt */
CMP_CAPT_IRQn = 11, /**< Analog comparator interrupt or Capacitive Touch interrupt */
WDT_IRQn = 12, /**< Windowed watchdog timer interrupt */
BOD_IRQn = 13, /**< BOD interrupts */
FLASH_IRQn = 14, /**< flash interrupt */
WKT_IRQn = 15, /**< Self-wake-up timer interrupt */
ADC_SEQA_IRQn = 16, /**< ADC sequence A completion. */
ADC_SEQB_IRQn = 17, /**< ADC sequence B completion. */
ADC_THCMP_IRQn = 18, /**< ADC threshold compare and error. */
ADC_OVR_IRQn = 19, /**< ADC overrun */
Reserved36_IRQn = 20, /**< Reserved interrupt */
Reserved37_IRQn = 21, /**< Reserved interrupt */
Reserved38_IRQn = 22, /**< Reserved interrupt */
CTIMER0_IRQn = 23, /**< Timer interrupt */
PIN_INT0_IRQn = 24, /**< Pin interrupt 0 or pattern match engine slice 0 interrupt */
PIN_INT1_IRQn = 25, /**< Pin interrupt 1 or pattern match engine slice 1 interrupt */
PIN_INT2_IRQn = 26, /**< Pin interrupt 2 or pattern match engine slice 2 interrupt */
PIN_INT3_IRQn = 27, /**< Pin interrupt 3 or pattern match engine slice 3 interrupt */
PIN_INT4_IRQn = 28, /**< Pin interrupt 4 or pattern match engine slice 4 interrupt */
PIN_INT5_IRQn = 29, /**< Pin interrupt 5 or pattern match engine slice 5 interrupt */
PIN_INT6_IRQn = 30, /**< Pin interrupt 6 or pattern match engine slice 6 interrupt */
PIN_INT7_IRQn = 31 /**< Pin interrupt 7 or pattern match engine slice 7 interrupt */
} IRQn_Type;
/*!
* @}
*/ /* end of group Interrupt_vector_numbers */
/* ----------------------------------------------------------------------------
-- Cortex M0 Core Configuration
---------------------------------------------------------------------------- */
/*!
* @addtogroup Cortex_Core_Configuration Cortex M0 Core Configuration
* @{
*/
#define __CM0PLUS_REV 0x0000 /**< Core revision r0p0 */
#define __MPU_PRESENT 0 /**< Defines if an MPU is present or not */
#define __VTOR_PRESENT 1 /**< Defines if VTOR is present or not */
#define __NVIC_PRIO_BITS 2 /**< Number of priority bits implemented in the NVIC */
#define __Vendor_SysTickConfig 0 /**< Vendor specific implementation of SysTickConfig is defined */
#include "core_cm0plus.h" /* Core Peripheral Access Layer */
#include "system_LPC804.h" /* Device specific configuration file */
/*!
* @}
*/ /* end of group Cortex_Core_Configuration */
/* ----------------------------------------------------------------------------
-- Device Peripheral Access Layer
---------------------------------------------------------------------------- */
/*!
* @addtogroup Peripheral_access_layer Device Peripheral Access Layer
* @{
*/
/*
** Start of section using anonymous unions
*/
#if defined(__ARMCC_VERSION)
#if (__ARMCC_VERSION >= 6010050)
#pragma clang diagnostic push
#else
#pragma push
#pragma anon_unions
#endif
#elif defined(__GNUC__)
/* anonymous unions are enabled by default */
#elif defined(__IAR_SYSTEMS_ICC__)
#pragma language=extended
#else
#error Not supported compiler type
#endif
/* ----------------------------------------------------------------------------
-- ACOMP Peripheral Access Layer
---------------------------------------------------------------------------- */
/*!
* @addtogroup ACOMP_Peripheral_Access_Layer ACOMP Peripheral Access Layer
* @{
*/
/** ACOMP - Register Layout Typedef */
typedef struct {
__IO uint32_t CTRL; /**< Comparator control register, offset: 0x0 */
__IO uint32_t LAD; /**< Voltage ladder register, offset: 0x4 */
} ACOMP_Type;
/* ----------------------------------------------------------------------------
-- ACOMP Register Masks
---------------------------------------------------------------------------- */
/*!
* @addtogroup ACOMP_Register_Masks ACOMP Register Masks
* @{
*/
/*! @name CTRL - Comparator control register */
/*! @{ */
#define ACOMP_CTRL_EDGESEL_MASK (0x18U)
#define ACOMP_CTRL_EDGESEL_SHIFT (3U)
/*! EDGESEL - This field controls which edges on the comparator output set the COMPEDGE bit (bit 23 below):
* 0b00..Falling edges
* 0b01..Rising edges
* 0b10..Both edges
* 0b11..Both edges
*/
#define ACOMP_CTRL_EDGESEL(x) (((uint32_t)(((uint32_t)(x)) << ACOMP_CTRL_EDGESEL_SHIFT)) & ACOMP_CTRL_EDGESEL_MASK)
#define ACOMP_CTRL_COMPSA_MASK (0x40U)
#define ACOMP_CTRL_COMPSA_SHIFT (6U)
/*! COMPSA - Comparator output control
* 0b0..Comparator output is used directly.
* 0b1..Comparator output is synchronized to the bus clock for output to other modules.
*/
#define ACOMP_CTRL_COMPSA(x) (((uint32_t)(((uint32_t)(x)) << ACOMP_CTRL_COMPSA_SHIFT)) & ACOMP_CTRL_COMPSA_MASK)
#define ACOMP_CTRL_COMP_VP_SEL_MASK (0x700U)
#define ACOMP_CTRL_COMP_VP_SEL_SHIFT (8U)
/*! COMP_VP_SEL - Selects positive voltage input
* 0b000..VOLTAGE_LADDER_OUTPUT
* 0b001..ACMP_I1
* 0b010..ACMP_I2
* 0b011..ACMP_I3
* 0b100..ACMP_I4
* 0b101..ACMP_I5
* 0b110..Band gap. Internal reference voltage.
* 0b111..DAC0 output
*/
#define ACOMP_CTRL_COMP_VP_SEL(x) (((uint32_t)(((uint32_t)(x)) << ACOMP_CTRL_COMP_VP_SEL_SHIFT)) & ACOMP_CTRL_COMP_VP_SEL_MASK)
#define ACOMP_CTRL_COMP_VM_SEL_MASK (0x3800U)
#define ACOMP_CTRL_COMP_VM_SEL_SHIFT (11U)
/*! COMP_VM_SEL - Selects negative voltage input
* 0b000..VOLTAGE_LADDER_OUTPUT
* 0b001..ACMP_I1
* 0b010..ACMP_I2
* 0b011..ACMP_I3
* 0b100..ACMP_I4
* 0b101..ACMP_I5
* 0b110..Band gap. Internal reference voltage.
* 0b111..DAC0 output
*/
#define ACOMP_CTRL_COMP_VM_SEL(x) (((uint32_t)(((uint32_t)(x)) << ACOMP_CTRL_COMP_VM_SEL_SHIFT)) & ACOMP_CTRL_COMP_VM_SEL_MASK)
#define ACOMP_CTRL_EDGECLR_MASK (0x100000U)
#define ACOMP_CTRL_EDGECLR_SHIFT (20U)
/*! EDGECLR - Interrupt clear bit. To clear the COMPEDGE bit and thus negate the interrupt request,
* toggle the EDGECLR bit by first writing a 1 and then a 0.
*/
#define ACOMP_CTRL_EDGECLR(x) (((uint32_t)(((uint32_t)(x)) << ACOMP_CTRL_EDGECLR_SHIFT)) & ACOMP_CTRL_EDGECLR_MASK)
#define ACOMP_CTRL_COMPSTAT_MASK (0x200000U)
#define ACOMP_CTRL_COMPSTAT_SHIFT (21U)
/*! COMPSTAT - Comparator status. This bit reflects the state of the comparator output.
*/
#define ACOMP_CTRL_COMPSTAT(x) (((uint32_t)(((uint32_t)(x)) << ACOMP_CTRL_COMPSTAT_SHIFT)) & ACOMP_CTRL_COMPSTAT_MASK)
#define ACOMP_CTRL_COMPEDGE_MASK (0x800000U)
#define ACOMP_CTRL_COMPEDGE_SHIFT (23U)
/*! COMPEDGE - Comparator edge-detect status.
*/
#define ACOMP_CTRL_COMPEDGE(x) (((uint32_t)(((uint32_t)(x)) << ACOMP_CTRL_COMPEDGE_SHIFT)) & ACOMP_CTRL_COMPEDGE_MASK)
#define ACOMP_CTRL_INTENA_MASK (0x1000000U)
#define ACOMP_CTRL_INTENA_SHIFT (24U)
/*! INTENA - Must be set to generate interrupts.
*/
#define ACOMP_CTRL_INTENA(x) (((uint32_t)(((uint32_t)(x)) << ACOMP_CTRL_INTENA_SHIFT)) & ACOMP_CTRL_INTENA_MASK)
#define ACOMP_CTRL_HYS_MASK (0x6000000U)
#define ACOMP_CTRL_HYS_SHIFT (25U)
/*! HYS - Controls the hysteresis of the comparator. When the comparator is outputting a certain
* state, this is the difference between the selected signals, in the opposite direction from the
* state being output, that will switch the output.
* 0b00..None (the output will switch as the voltages cross)
* 0b01..5 mv
* 0b10..10 mv
* 0b11..20 mv
*/
#define ACOMP_CTRL_HYS(x) (((uint32_t)(((uint32_t)(x)) << ACOMP_CTRL_HYS_SHIFT)) & ACOMP_CTRL_HYS_MASK)
/*! @} */
/*! @name LAD - Voltage ladder register */
/*! @{ */
#define ACOMP_LAD_LADEN_MASK (0x1U)
#define ACOMP_LAD_LADEN_SHIFT (0U)
/*! LADEN - Voltage ladder enable
*/
#define ACOMP_LAD_LADEN(x) (((uint32_t)(((uint32_t)(x)) << ACOMP_LAD_LADEN_SHIFT)) & ACOMP_LAD_LADEN_MASK)
#define ACOMP_LAD_LADSEL_MASK (0x3EU)
#define ACOMP_LAD_LADSEL_SHIFT (1U)
/*! LADSEL - Voltage ladder value. The reference voltage Vref depends on the LADREF bit below. 00000
* = VSS 00001 = 1 x Vref/31 00010 = 2 x Vref/31 ... 11111 = Vref
*/
#define ACOMP_LAD_LADSEL(x) (((uint32_t)(((uint32_t)(x)) << ACOMP_LAD_LADSEL_SHIFT)) & ACOMP_LAD_LADSEL_MASK)
#define ACOMP_LAD_LADREF_MASK (0x40U)
#define ACOMP_LAD_LADREF_SHIFT (6U)
/*! LADREF - Selects the reference voltage Vref for the voltage ladder.
* 0b0..Supply pin VDD
* 0b1..VDDCMP pin
*/
#define ACOMP_LAD_LADREF(x) (((uint32_t)(((uint32_t)(x)) << ACOMP_LAD_LADREF_SHIFT)) & ACOMP_LAD_LADREF_MASK)
/*! @} */
/*!
* @}
*/ /* end of group ACOMP_Register_Masks */
/* ACOMP - Peripheral instance base addresses */
/** Peripheral ACOMP base address */
#define ACOMP_BASE (0x40024000u)
/** Peripheral ACOMP base pointer */
#define ACOMP ((ACOMP_Type *)ACOMP_BASE)
/** Array initializer of ACOMP peripheral base addresses */
#define ACOMP_BASE_ADDRS { ACOMP_BASE }
/** Array initializer of ACOMP peripheral base pointers */
#define ACOMP_BASE_PTRS { ACOMP }
/*!
* @}
*/ /* end of group ACOMP_Peripheral_Access_Layer */
/* ----------------------------------------------------------------------------
-- ADC Peripheral Access Layer
---------------------------------------------------------------------------- */
/*!
* @addtogroup ADC_Peripheral_Access_Layer ADC Peripheral Access Layer
* @{
*/
/** ADC - Register Layout Typedef */
typedef struct {
__IO uint32_t CTRL; /**< ADC Control register. Contains the clock divide value, resolution selection, sampling time selection, and mode controls., offset: 0x0 */
uint8_t RESERVED_0[4];
__IO uint32_t SEQ_CTRL[2]; /**< ADC Conversion Sequence-n control register: Controls triggering and channel selection for conversion sequence-n. Also specifies interrupt mode for sequence-n., array offset: 0x8, array step: 0x4 */
__I uint32_t SEQ_GDAT[2]; /**< ADC Sequence-n Global Data register. This register contains the result of the most recent ADC conversion performed under sequence-n., array offset: 0x10, array step: 0x4 */
uint8_t RESERVED_1[8];
__I uint32_t DAT[12]; /**< ADC Channel N Data register. This register contains the result of the most recent conversion completed on channel N., array offset: 0x20, array step: 0x4 */
__IO uint32_t THR0_LOW; /**< ADC Low Compare Threshold register 0: Contains the lower threshold level for automatic threshold comparison for any channels linked to threshold pair 0., offset: 0x50 */
__IO uint32_t THR1_LOW; /**< ADC Low Compare Threshold register 1: Contains the lower threshold level for automatic threshold comparison for any channels linked to threshold pair 1., offset: 0x54 */
__IO uint32_t THR0_HIGH; /**< ADC High Compare Threshold register 0: Contains the upper threshold level for automatic threshold comparison for any channels linked to threshold pair 0., offset: 0x58 */
__IO uint32_t THR1_HIGH; /**< ADC High Compare Threshold register 1: Contains the upper threshold level for automatic threshold comparison for any channels linked to threshold pair 1., offset: 0x5C */
__IO uint32_t CHAN_THRSEL; /**< ADC Channel-Threshold Select register. Specifies which set of threshold compare registers are to be used for each channel, offset: 0x60 */
__IO uint32_t INTEN; /**< ADC Interrupt Enable register. This register contains enable bits that enable the sequence-A, sequence-B, threshold compare and data overrun interrupts to be generated., offset: 0x64 */
__IO uint32_t FLAGS; /**< ADC Flags register. Contains the four interrupt/DMA trigger flags and the individual component overrun and threshold-compare flags. (The overrun bits replicate information stored in the result registers)., offset: 0x68 */
} ADC_Type;
/* ----------------------------------------------------------------------------
-- ADC Register Masks
---------------------------------------------------------------------------- */
/*!
* @addtogroup ADC_Register_Masks ADC Register Masks
* @{
*/
/*! @name CTRL - ADC Control register. Contains the clock divide value, resolution selection, sampling time selection, and mode controls. */
/*! @{ */
#define ADC_CTRL_CLKDIV_MASK (0xFFU)
#define ADC_CTRL_CLKDIV_SHIFT (0U)
/*! CLKDIV - In synchronous mode only, the system clock is divided by this value plus one to produce
* the clock for the ADC converter, which should be less than or equal to 72 MHz. Typically,
* software should program the smallest value in this field that yields this maximum clock rate or
* slightly less, but in certain cases (such as a high-impedance analog source) a slower clock may
* be desirable. This field is ignored in the asynchronous operating mode.
*/
#define ADC_CTRL_CLKDIV(x) (((uint32_t)(((uint32_t)(x)) << ADC_CTRL_CLKDIV_SHIFT)) & ADC_CTRL_CLKDIV_MASK)
#define ADC_CTRL_LPWRMODE_MASK (0x400U)
#define ADC_CTRL_LPWRMODE_SHIFT (10U)
/*! LPWRMODE - The low-power ADC mode
* 0b0..The low-power ADC mode is disabled. The analog circuitry remains activated even when no conversions are requested.
* 0b1..The low-power ADC mode is enabled. The analog circuitry is automatically powered-down when no conversions
* are taking place. When any (hardware or software) triggering event is detected, the analog circuitry is
* enabled. After the required start-up time, the requested conversion will be launched. Once the conversion
* completes, the analog-circuitry will again be powered-down provided no further conversions are pending.
* Using this mode can save an appreciable amount of current (approximately 2.5 mA) when conversions are
* required relatively infrequently. The penalty for using this mode is an approximately FIFTEEN ADC CLOCK delay (30
* clocks in 10-bit mode), based on the frequency specified in the CLKDIV field, from the time the trigger
* event occurs until sampling of the A/D input commences. Note: This mode will NOT power-up the A/D if the
* ADC_ENA bit is low.
*/
#define ADC_CTRL_LPWRMODE(x) (((uint32_t)(((uint32_t)(x)) << ADC_CTRL_LPWRMODE_SHIFT)) & ADC_CTRL_LPWRMODE_MASK)
/*! @} */
/*! @name SEQ_CTRL - ADC Conversion Sequence-n control register: Controls triggering and channel selection for conversion sequence-n. Also specifies interrupt mode for sequence-n. */
/*! @{ */
#define ADC_SEQ_CTRL_CHANNELS_MASK (0xFFFU)
#define ADC_SEQ_CTRL_CHANNELS_SHIFT (0U)
/*! CHANNELS - Selects which one or more of the ADC channels will be sampled and converted when this
* sequence is launched. A 1 in any bit of this field will cause the corresponding channel to be
* included in the conversion sequence, where bit 0 corresponds to channel 0, bit 1 to channel 1
* and so forth. When this conversion sequence is triggered, either by a hardware trigger or via
* software command, ADC conversions will be performed on each enabled channel, in sequence,
* beginning with the lowest-ordered channel. This field can ONLY be changed while SEQA_ENA (bit 31)
* is LOW. It is allowed to change this field and set bit 31 in the same write.
*/
#define ADC_SEQ_CTRL_CHANNELS(x) (((uint32_t)(((uint32_t)(x)) << ADC_SEQ_CTRL_CHANNELS_SHIFT)) & ADC_SEQ_CTRL_CHANNELS_MASK)
#define ADC_SEQ_CTRL_TRIGGER_MASK (0x7000U)
#define ADC_SEQ_CTRL_TRIGGER_SHIFT (12U)
/*! TRIGGER - Selects which of the available hardware trigger sources will cause this conversion
* sequence to be initiated. Program the trigger input number in this field. See Table 476. In order
* to avoid generating a spurious trigger, it is recommended writing to this field only when
* SEQA_ENA (bit 31) is low. It is safe to change this field and set bit 31 in the same write.
*/
#define ADC_SEQ_CTRL_TRIGGER(x) (((uint32_t)(((uint32_t)(x)) << ADC_SEQ_CTRL_TRIGGER_SHIFT)) & ADC_SEQ_CTRL_TRIGGER_MASK)
#define ADC_SEQ_CTRL_TRIGPOL_MASK (0x40000U)
#define ADC_SEQ_CTRL_TRIGPOL_SHIFT (18U)
/*! TRIGPOL - Select the polarity of the selected input trigger for this conversion sequence. In
* order to avoid generating a spurious trigger, it is recommended writing to this field only when
* SEQA_ENA (bit 31) is low. It is safe to change this field and set bit 31 in the same write.
* 0b0..Negative edge. A negative edge launches the conversion sequence on the selected trigger input.
* 0b1..Positive edge. A positive edge launches the conversion sequence on the selected trigger input.
*/
#define ADC_SEQ_CTRL_TRIGPOL(x) (((uint32_t)(((uint32_t)(x)) << ADC_SEQ_CTRL_TRIGPOL_SHIFT)) & ADC_SEQ_CTRL_TRIGPOL_MASK)
#define ADC_SEQ_CTRL_SYNCBYPASS_MASK (0x80000U)
#define ADC_SEQ_CTRL_SYNCBYPASS_SHIFT (19U)
/*! SYNCBYPASS - Setting this bit allows the hardware trigger input to bypass synchronization
* flip-flop stages and therefore shorten the time between the trigger input signal and the start of a
* conversion. There are slightly different criteria for whether or not this bit can be set
* depending on the clock operating mode: Synchronous mode (the ASYNMODE in the CTRL register = 0):
* Synchronization may be bypassed (this bit may be set) if the selected trigger source is already
* synchronous with the main system clock (eg. coming from an on-chip, system-clock-based timer).
* Whether this bit is set or not, a trigger pulse must be maintained for at least one system
* clock period. Asynchronous mode (the ASYNMODE in the CTRL register = 1): Synchronization may be
* bypassed (this bit may be set) if it is certain that the duration of a trigger input pulse
* will be at least one cycle of the ADC clock (regardless of whether the trigger comes from and
* on-chip or off-chip source). If this bit is NOT set, the trigger pulse must at least be
* maintained for one system clock period.
* 0b0..Enable trigger synchronization. The hardware trigger bypass is not enabled.
* 0b1..Bypass trigger synchronization. The hardware trigger bypass is enabled.
*/
#define ADC_SEQ_CTRL_SYNCBYPASS(x) (((uint32_t)(((uint32_t)(x)) << ADC_SEQ_CTRL_SYNCBYPASS_SHIFT)) & ADC_SEQ_CTRL_SYNCBYPASS_MASK)
#define ADC_SEQ_CTRL_TSAMP_MASK (0x1F00000U)
#define ADC_SEQ_CTRL_TSAMP_SHIFT (20U)
/*! TSAMP - Sample Time The default sample period (TSAMP = "00000") at the beginning of each new
* conversion is 6.5 ADC clock periods. Depending on a variety of factors including ADC clock rate,
* output impedance of the analog source driver, ADC resolution, and the selection of channels,
* the sample time may need to be increased. The value programmed into the TSAMP fields dictates
* the number of additional ADC clock cycles (beyond 6.5) that the sample period will be extended
* by. Note that any additional clocks of sample time inserted will add directly to the overall
* number of clocks required for a conversion, effectively reducing the overall conversion
* throughput rate.
*/
#define ADC_SEQ_CTRL_TSAMP(x) (((uint32_t)(((uint32_t)(x)) << ADC_SEQ_CTRL_TSAMP_SHIFT)) & ADC_SEQ_CTRL_TSAMP_MASK)
#define ADC_SEQ_CTRL_START_MASK (0x4000000U)
#define ADC_SEQ_CTRL_START_SHIFT (26U)
/*! START - Writing a 1 to this field will launch one pass through this conversion sequence. The
* behavior will be identical to a sequence triggered by a hardware trigger. Do not write 1 to this
* bit if the BURST bit is set. This bit is only set to a 1 momentarily when written to launch a
* conversion sequence. It will consequently always read back as a zero.
*/
#define ADC_SEQ_CTRL_START(x) (((uint32_t)(((uint32_t)(x)) << ADC_SEQ_CTRL_START_SHIFT)) & ADC_SEQ_CTRL_START_MASK)
#define ADC_SEQ_CTRL_BURST_MASK (0x8000000U)
#define ADC_SEQ_CTRL_BURST_SHIFT (27U)
/*! BURST - Writing a 1 to this bit will cause this conversion sequence to be continuously cycled
* through. Other sequence A triggers will be ignored while this bit is set. Repeated conversions
* can be halted by clearing this bit. The sequence currently in progress will be completed before
* conversions are terminated. Note that a new sequence could begin just before BURST is cleared.
*/
#define ADC_SEQ_CTRL_BURST(x) (((uint32_t)(((uint32_t)(x)) << ADC_SEQ_CTRL_BURST_SHIFT)) & ADC_SEQ_CTRL_BURST_MASK)
#define ADC_SEQ_CTRL_SINGLESTEP_MASK (0x10000000U)
#define ADC_SEQ_CTRL_SINGLESTEP_SHIFT (28U)
/*! SINGLESTEP - When this bit is set, a hardware trigger or a write to the START bit will launch a
* single conversion on the next channel in the sequence instead of the default response of
* launching an entire sequence of conversions. Once all of the channels comprising a sequence have
* been converted, a subsequent trigger will repeat the sequence beginning with the first enabled
* channel. Interrupt generation will still occur either after each individual conversion or at
* the end of the entire sequence, depending on the state of the MODE bit.
*/
#define ADC_SEQ_CTRL_SINGLESTEP(x) (((uint32_t)(((uint32_t)(x)) << ADC_SEQ_CTRL_SINGLESTEP_SHIFT)) & ADC_SEQ_CTRL_SINGLESTEP_MASK)
#define ADC_SEQ_CTRL_LOWPRIO_MASK (0x20000000U)
#define ADC_SEQ_CTRL_LOWPRIO_SHIFT (29U)
/*! LOWPRIO - Set priority for sequence A.
* 0b0..Low priority. Any B trigger which occurs while an A conversion sequence is active will be ignored and lost.
* 0b1..High priority. Setting this bit to a 1 will permit any enabled B sequence trigger (including a B sequence
* software start) to immediately interrupt sequence A and launch a B sequence in it's place. The conversion
* currently in progress will be terminated. The A sequence that was interrupted will automatically resume
* after the B sequence completes. The channel whose conversion was terminated will be re-sampled and the
* conversion sequence will resume from that point.
*/
#define ADC_SEQ_CTRL_LOWPRIO(x) (((uint32_t)(((uint32_t)(x)) << ADC_SEQ_CTRL_LOWPRIO_SHIFT)) & ADC_SEQ_CTRL_LOWPRIO_MASK)
#define ADC_SEQ_CTRL_MODE_MASK (0x40000000U)
#define ADC_SEQ_CTRL_MODE_SHIFT (30U)
/*! MODE - Indicates whether the primary method for retrieving conversion results for this sequence
* will be accomplished via reading the global data register (SEQA_GDAT) at the end of each
* conversion, or the individual channel result registers at the end of the entire sequence. Impacts
* when conversion-complete interrupt/DMA trigger for sequence-A will be generated and which
* overrun conditions contribute to an overrun interrupt as described below.
* 0b0..End of conversion. The sequence A interrupt/DMA trigger will be set at the end of each individual ADC
* conversion performed under sequence A. This flag will mirror the DATAVALID bit in the SEQA_GDAT register. The
* OVERRUN bit in the SEQA_GDAT register will contribute to generation of an overrun interrupt/DMA trigger
* if enabled.
* 0b1..End of sequence. The sequence A interrupt/DMA trigger will be set when the entire set of sequence-A
* conversions completes. This flag will need to be explicitly cleared by software or by the DMA-clear signal in
* this mode. The OVERRUN bit in the SEQA_GDAT register will NOT contribute to generation of an overrun
* interrupt/DMA trigger since it is assumed this register may not be utilized in this mode.
*/
#define ADC_SEQ_CTRL_MODE(x) (((uint32_t)(((uint32_t)(x)) << ADC_SEQ_CTRL_MODE_SHIFT)) & ADC_SEQ_CTRL_MODE_MASK)
#define ADC_SEQ_CTRL_SEQ_ENA_MASK (0x80000000U)
#define ADC_SEQ_CTRL_SEQ_ENA_SHIFT (31U)
/*! SEQ_ENA - Sequence Enable. In order to avoid spuriously triggering the sequence, care should be
* taken to only set the SEQn_ENA bit when the selected trigger input is in its INACTIVE state
* (as defined by the TRIGPOL bit). If this condition is not met, the sequence will be triggered
* immediately upon being enabled. In order to avoid spuriously triggering the sequence, care
* should be taken to only set the SEQn_ENA bit when the selected trigger input is in its INACTIVE
* state (as defined by the TRIGPOL bit). If this condition is not met, the sequence will be
* triggered immediately upon being enabled.
* 0b0..Disabled. Sequence n is disabled. Sequence n triggers are ignored. If this bit is cleared while sequence
* n is in progress, the sequence will be halted at the end of the current conversion. After the sequence is
* re-enabled, a new trigger will be required to restart the sequence beginning with the next enabled channel.
* 0b1..Enabled. Sequence n is enabled.
*/
#define ADC_SEQ_CTRL_SEQ_ENA(x) (((uint32_t)(((uint32_t)(x)) << ADC_SEQ_CTRL_SEQ_ENA_SHIFT)) & ADC_SEQ_CTRL_SEQ_ENA_MASK)
/*! @} */
/* The count of ADC_SEQ_CTRL */
#define ADC_SEQ_CTRL_COUNT (2U)
/*! @name SEQ_GDAT - ADC Sequence-n Global Data register. This register contains the result of the most recent ADC conversion performed under sequence-n. */
/*! @{ */
#define ADC_SEQ_GDAT_RESULT_MASK (0xFFF0U)
#define ADC_SEQ_GDAT_RESULT_SHIFT (4U)
/*! RESULT - This field contains the 12-bit ADC conversion result from the most recent conversion
* performed under conversion sequence associated with this register. The result is a binary
* fraction representing the voltage on the currently-selected input channel as it falls within the
* range of VREFP to VREFN. Zero in the field indicates that the voltage on the input pin was less
* than, equal to, or close to that on VREFN, while 0xFFF indicates that the voltage on the input
* was close to, equal to, or greater than that on VREFP. DATAVALID = 1 indicates that this
* result has not yet been read.
*/
#define ADC_SEQ_GDAT_RESULT(x) (((uint32_t)(((uint32_t)(x)) << ADC_SEQ_GDAT_RESULT_SHIFT)) & ADC_SEQ_GDAT_RESULT_MASK)
#define ADC_SEQ_GDAT_THCMPRANGE_MASK (0x30000U)
#define ADC_SEQ_GDAT_THCMPRANGE_SHIFT (16U)
/*! THCMPRANGE - Indicates whether the result of the last conversion performed was above, below or
* within the range established by the designated threshold comparison registers (THRn_LOW and
* THRn_HIGH).
*/
#define ADC_SEQ_GDAT_THCMPRANGE(x) (((uint32_t)(((uint32_t)(x)) << ADC_SEQ_GDAT_THCMPRANGE_SHIFT)) & ADC_SEQ_GDAT_THCMPRANGE_MASK)
#define ADC_SEQ_GDAT_THCMPCROSS_MASK (0xC0000U)
#define ADC_SEQ_GDAT_THCMPCROSS_SHIFT (18U)
/*! THCMPCROSS - Indicates whether the result of the last conversion performed represented a
* crossing of the threshold level established by the designated LOW threshold comparison register
* (THRn_LOW) and, if so, in what direction the crossing occurred.
*/
#define ADC_SEQ_GDAT_THCMPCROSS(x) (((uint32_t)(((uint32_t)(x)) << ADC_SEQ_GDAT_THCMPCROSS_SHIFT)) & ADC_SEQ_GDAT_THCMPCROSS_MASK)
#define ADC_SEQ_GDAT_CHN_MASK (0x3C000000U)
#define ADC_SEQ_GDAT_CHN_SHIFT (26U)
/*! CHN - These bits contain the channel from which the RESULT bits were converted (e.g. 0000
* identifies channel 0, 0001 channel 1, etc.).
*/
#define ADC_SEQ_GDAT_CHN(x) (((uint32_t)(((uint32_t)(x)) << ADC_SEQ_GDAT_CHN_SHIFT)) & ADC_SEQ_GDAT_CHN_MASK)
#define ADC_SEQ_GDAT_OVERRUN_MASK (0x40000000U)
#define ADC_SEQ_GDAT_OVERRUN_SHIFT (30U)
/*! OVERRUN - This bit is set if a new conversion result is loaded into the RESULT field before a
* previous result has been read - i.e. while the DATAVALID bit is set. This bit is cleared, along
* with the DATAVALID bit, whenever this register is read. This bit will contribute to an overrun
* interrupt/DMA trigger if the MODE bit (in SEQAA_CTRL) for the corresponding sequence is set
* to '0' (and if the overrun interrupt is enabled).
*/
#define ADC_SEQ_GDAT_OVERRUN(x) (((uint32_t)(((uint32_t)(x)) << ADC_SEQ_GDAT_OVERRUN_SHIFT)) & ADC_SEQ_GDAT_OVERRUN_MASK)
#define ADC_SEQ_GDAT_DATAVALID_MASK (0x80000000U)
#define ADC_SEQ_GDAT_DATAVALID_SHIFT (31U)
/*! DATAVALID - This bit is set to '1' at the end of each conversion when a new result is loaded
* into the RESULT field. It is cleared whenever this register is read. This bit will cause a
* conversion-complete interrupt for the corresponding sequence if the MODE bit (in SEQA_CTRL) for that
* sequence is set to 0 (and if the interrupt is enabled).
*/
#define ADC_SEQ_GDAT_DATAVALID(x) (((uint32_t)(((uint32_t)(x)) << ADC_SEQ_GDAT_DATAVALID_SHIFT)) & ADC_SEQ_GDAT_DATAVALID_MASK)
/*! @} */
/* The count of ADC_SEQ_GDAT */
#define ADC_SEQ_GDAT_COUNT (2U)
/*! @name DAT - ADC Channel N Data register. This register contains the result of the most recent conversion completed on channel N. */
/*! @{ */
#define ADC_DAT_RESULT_MASK (0xFFF0U)
#define ADC_DAT_RESULT_SHIFT (4U)
/*! RESULT - This field contains the 12-bit ADC conversion result from the last conversion performed
* on this channel. This will be a binary fraction representing the voltage on the AD0[n] pin,
* as it falls within the range of VREFP to VREFN. Zero in the field indicates that the voltage on
* the input pin was less than, equal to, or close to that on VREFN, while 0xFFF indicates that
* the voltage on the input was close to, equal to, or greater than that on VREFP.
*/
#define ADC_DAT_RESULT(x) (((uint32_t)(((uint32_t)(x)) << ADC_DAT_RESULT_SHIFT)) & ADC_DAT_RESULT_MASK)
#define ADC_DAT_THCMPRANGE_MASK (0x30000U)
#define ADC_DAT_THCMPRANGE_SHIFT (16U)
/*! THCMPRANGE - Threshold Range Comparison result. 0x0 = In Range: The last completed conversion
* was greater than or equal to the value programmed into the designated LOW threshold register
* (THRn_LOW) but less than or equal to the value programmed into the designated HIGH threshold
* register (THRn_HIGH). 0x1 = Below Range: The last completed conversion on was less than the value
* programmed into the designated LOW threshold register (THRn_LOW). 0x2 = Above Range: The last
* completed conversion was greater than the value programmed into the designated HIGH threshold
* register (THRn_HIGH). 0x3 = Reserved.
*/
#define ADC_DAT_THCMPRANGE(x) (((uint32_t)(((uint32_t)(x)) << ADC_DAT_THCMPRANGE_SHIFT)) & ADC_DAT_THCMPRANGE_MASK)
#define ADC_DAT_THCMPCROSS_MASK (0xC0000U)
#define ADC_DAT_THCMPCROSS_SHIFT (18U)
/*! THCMPCROSS - Threshold Crossing Comparison result. 0x0 = No threshold Crossing detected: The
* most recent completed conversion on this channel had the same relationship (above or below) to
* the threshold value established by the designated LOW threshold register (THRn_LOW) as did the
* previous conversion on this channel. 0x1 = Reserved. 0x2 = Downward Threshold Crossing
* Detected. Indicates that a threshold crossing in the downward direction has occurred - i.e. the
* previous sample on this channel was above the threshold value established by the designated LOW
* threshold register (THRn_LOW) and the current sample is below that threshold. 0x3 = Upward
* Threshold Crossing Detected. Indicates that a threshold crossing in the upward direction has occurred
* - i.e. the previous sample on this channel was below the threshold value established by the
* designated LOW threshold register (THRn_LOW) and the current sample is above that threshold.
*/
#define ADC_DAT_THCMPCROSS(x) (((uint32_t)(((uint32_t)(x)) << ADC_DAT_THCMPCROSS_SHIFT)) & ADC_DAT_THCMPCROSS_MASK)
#define ADC_DAT_CHANNEL_MASK (0x3C000000U)
#define ADC_DAT_CHANNEL_SHIFT (26U)
/*! CHANNEL - This field is hard-coded to contain the channel number that this particular register
* relates to (i.e. this field will contain 0b0000 for the DAT0 register, 0b0001 for the DAT1
* register, etc)
*/
#define ADC_DAT_CHANNEL(x) (((uint32_t)(((uint32_t)(x)) << ADC_DAT_CHANNEL_SHIFT)) & ADC_DAT_CHANNEL_MASK)
#define ADC_DAT_OVERRUN_MASK (0x40000000U)
#define ADC_DAT_OVERRUN_SHIFT (30U)
/*! OVERRUN - This bit will be set to a 1 if a new conversion on this channel completes and
* overwrites the previous contents of the RESULT field before it has been read - i.e. while the DONE bit
* is set. This bit is cleared, along with the DONE bit, whenever this register is read or when
* the data related to this channel is read from either of the global SEQn_GDAT registers. This
* bit (in any of the 12 registers) will cause an overrun interrupt/DMA trigger to be asserted if
* the overrun interrupt is enabled. While it is allowed to include the same channels in both
* conversion sequences, doing so may cause erratic behavior of the DONE and OVERRUN bits in the
* data registers associated with any of the channels that are shared between the two sequences. Any
* erratic OVERRUN behavior will also affect overrun interrupt generation, if enabled.
*/
#define ADC_DAT_OVERRUN(x) (((uint32_t)(((uint32_t)(x)) << ADC_DAT_OVERRUN_SHIFT)) & ADC_DAT_OVERRUN_MASK)
#define ADC_DAT_DATAVALID_MASK (0x80000000U)
#define ADC_DAT_DATAVALID_SHIFT (31U)
/*! DATAVALID - This bit is set to 1 when an ADC conversion on this channel completes. This bit is
* cleared whenever this register is read or when the data related to this channel is read from
* either of the global SEQn_GDAT registers. While it is allowed to include the same channels in
* both conversion sequences, doing so may cause erratic behavior of the DONE and OVERRUN bits in
* the data registers associated with any of the channels that are shared between the two
* sequences. Any erratic OVERRUN behavior will also affect overrun interrupt generation, if enabled.
*/
#define ADC_DAT_DATAVALID(x) (((uint32_t)(((uint32_t)(x)) << ADC_DAT_DATAVALID_SHIFT)) & ADC_DAT_DATAVALID_MASK)
/*! @} */
/* The count of ADC_DAT */
#define ADC_DAT_COUNT (12U)
/*! @name THR0_LOW - ADC Low Compare Threshold register 0: Contains the lower threshold level for automatic threshold comparison for any channels linked to threshold pair 0. */
/*! @{ */
#define ADC_THR0_LOW_THRLOW_MASK (0xFFF0U)
#define ADC_THR0_LOW_THRLOW_SHIFT (4U)
/*! THRLOW - Low threshold value against which ADC results will be compared
*/
#define ADC_THR0_LOW_THRLOW(x) (((uint32_t)(((uint32_t)(x)) << ADC_THR0_LOW_THRLOW_SHIFT)) & ADC_THR0_LOW_THRLOW_MASK)
/*! @} */
/*! @name THR1_LOW - ADC Low Compare Threshold register 1: Contains the lower threshold level for automatic threshold comparison for any channels linked to threshold pair 1. */
/*! @{ */
#define ADC_THR1_LOW_THRLOW_MASK (0xFFF0U)
#define ADC_THR1_LOW_THRLOW_SHIFT (4U)
/*! THRLOW - Low threshold value against which ADC results will be compared
*/
#define ADC_THR1_LOW_THRLOW(x) (((uint32_t)(((uint32_t)(x)) << ADC_THR1_LOW_THRLOW_SHIFT)) & ADC_THR1_LOW_THRLOW_MASK)
/*! @} */
/*! @name THR0_HIGH - ADC High Compare Threshold register 0: Contains the upper threshold level for automatic threshold comparison for any channels linked to threshold pair 0. */
/*! @{ */
#define ADC_THR0_HIGH_THRHIGH_MASK (0xFFF0U)
#define ADC_THR0_HIGH_THRHIGH_SHIFT (4U)
/*! THRHIGH - High threshold value against which ADC results will be compared
*/
#define ADC_THR0_HIGH_THRHIGH(x) (((uint32_t)(((uint32_t)(x)) << ADC_THR0_HIGH_THRHIGH_SHIFT)) & ADC_THR0_HIGH_THRHIGH_MASK)
/*! @} */
/*! @name THR1_HIGH - ADC High Compare Threshold register 1: Contains the upper threshold level for automatic threshold comparison for any channels linked to threshold pair 1. */
/*! @{ */
#define ADC_THR1_HIGH_THRHIGH_MASK (0xFFF0U)
#define ADC_THR1_HIGH_THRHIGH_SHIFT (4U)
/*! THRHIGH - High threshold value against which ADC results will be compared
*/
#define ADC_THR1_HIGH_THRHIGH(x) (((uint32_t)(((uint32_t)(x)) << ADC_THR1_HIGH_THRHIGH_SHIFT)) & ADC_THR1_HIGH_THRHIGH_MASK)
/*! @} */
/*! @name CHAN_THRSEL - ADC Channel-Threshold Select register. Specifies which set of threshold compare registers are to be used for each channel */
/*! @{ */
#define ADC_CHAN_THRSEL_CH0_THRSEL_MASK (0x1U)
#define ADC_CHAN_THRSEL_CH0_THRSEL_SHIFT (0U)
/*! CH0_THRSEL - Threshold select for channel 0.
* 0b0..Threshold 0. Results for this channel will be compared against the threshold levels indicated in the THR0_LOW and THR0_HIGH registers.
* 0b1..Threshold 1. Results for this channel will be compared against the threshold levels indicated in the THR1_LOW and THR1_HIGH registers.
*/
#define ADC_CHAN_THRSEL_CH0_THRSEL(x) (((uint32_t)(((uint32_t)(x)) << ADC_CHAN_THRSEL_CH0_THRSEL_SHIFT)) & ADC_CHAN_THRSEL_CH0_THRSEL_MASK)
#define ADC_CHAN_THRSEL_CH1_THRSEL_MASK (0x2U)
#define ADC_CHAN_THRSEL_CH1_THRSEL_SHIFT (1U)
/*! CH1_THRSEL - Threshold select for channel 1. See description for channel 0.
*/
#define ADC_CHAN_THRSEL_CH1_THRSEL(x) (((uint32_t)(((uint32_t)(x)) << ADC_CHAN_THRSEL_CH1_THRSEL_SHIFT)) & ADC_CHAN_THRSEL_CH1_THRSEL_MASK)
#define ADC_CHAN_THRSEL_CH2_THRSEL_MASK (0x4U)
#define ADC_CHAN_THRSEL_CH2_THRSEL_SHIFT (2U)
/*! CH2_THRSEL - Threshold select for channel 2. See description for channel 0.
*/
#define ADC_CHAN_THRSEL_CH2_THRSEL(x) (((uint32_t)(((uint32_t)(x)) << ADC_CHAN_THRSEL_CH2_THRSEL_SHIFT)) & ADC_CHAN_THRSEL_CH2_THRSEL_MASK)
#define ADC_CHAN_THRSEL_CH3_THRSEL_MASK (0x8U)
#define ADC_CHAN_THRSEL_CH3_THRSEL_SHIFT (3U)
/*! CH3_THRSEL - Threshold select for channel 3. See description for channel 0.
*/
#define ADC_CHAN_THRSEL_CH3_THRSEL(x) (((uint32_t)(((uint32_t)(x)) << ADC_CHAN_THRSEL_CH3_THRSEL_SHIFT)) & ADC_CHAN_THRSEL_CH3_THRSEL_MASK)
#define ADC_CHAN_THRSEL_CH4_THRSEL_MASK (0x10U)
#define ADC_CHAN_THRSEL_CH4_THRSEL_SHIFT (4U)
/*! CH4_THRSEL - Threshold select for channel 4. See description for channel 0.
*/
#define ADC_CHAN_THRSEL_CH4_THRSEL(x) (((uint32_t)(((uint32_t)(x)) << ADC_CHAN_THRSEL_CH4_THRSEL_SHIFT)) & ADC_CHAN_THRSEL_CH4_THRSEL_MASK)
#define ADC_CHAN_THRSEL_CH5_THRSEL_MASK (0x20U)
#define ADC_CHAN_THRSEL_CH5_THRSEL_SHIFT (5U)
/*! CH5_THRSEL - Threshold select for channel 5. See description for channel 0.
*/
#define ADC_CHAN_THRSEL_CH5_THRSEL(x) (((uint32_t)(((uint32_t)(x)) << ADC_CHAN_THRSEL_CH5_THRSEL_SHIFT)) & ADC_CHAN_THRSEL_CH5_THRSEL_MASK)
#define ADC_CHAN_THRSEL_CH6_THRSEL_MASK (0x40U)
#define ADC_CHAN_THRSEL_CH6_THRSEL_SHIFT (6U)
/*! CH6_THRSEL - Threshold select for channel 6. See description for channel 0.
*/
#define ADC_CHAN_THRSEL_CH6_THRSEL(x) (((uint32_t)(((uint32_t)(x)) << ADC_CHAN_THRSEL_CH6_THRSEL_SHIFT)) & ADC_CHAN_THRSEL_CH6_THRSEL_MASK)
#define ADC_CHAN_THRSEL_CH7_THRSEL_MASK (0x80U)
#define ADC_CHAN_THRSEL_CH7_THRSEL_SHIFT (7U)
/*! CH7_THRSEL - Threshold select for channel 7. See description for channel 0.
*/
#define ADC_CHAN_THRSEL_CH7_THRSEL(x) (((uint32_t)(((uint32_t)(x)) << ADC_CHAN_THRSEL_CH7_THRSEL_SHIFT)) & ADC_CHAN_THRSEL_CH7_THRSEL_MASK)
#define ADC_CHAN_THRSEL_CH8_THRSEL_MASK (0x100U)
#define ADC_CHAN_THRSEL_CH8_THRSEL_SHIFT (8U)
/*! CH8_THRSEL - Threshold select for channel 8. See description for channel 0.
*/
#define ADC_CHAN_THRSEL_CH8_THRSEL(x) (((uint32_t)(((uint32_t)(x)) << ADC_CHAN_THRSEL_CH8_THRSEL_SHIFT)) & ADC_CHAN_THRSEL_CH8_THRSEL_MASK)
#define ADC_CHAN_THRSEL_CH9_THRSEL_MASK (0x200U)
#define ADC_CHAN_THRSEL_CH9_THRSEL_SHIFT (9U)
/*! CH9_THRSEL - Threshold select for channel 9. See description for channel 0.
*/
#define ADC_CHAN_THRSEL_CH9_THRSEL(x) (((uint32_t)(((uint32_t)(x)) << ADC_CHAN_THRSEL_CH9_THRSEL_SHIFT)) & ADC_CHAN_THRSEL_CH9_THRSEL_MASK)
#define ADC_CHAN_THRSEL_CH10_THRSEL_MASK (0x400U)
#define ADC_CHAN_THRSEL_CH10_THRSEL_SHIFT (10U)
/*! CH10_THRSEL - Threshold select for channel 10. See description for channel 0.
*/
#define ADC_CHAN_THRSEL_CH10_THRSEL(x) (((uint32_t)(((uint32_t)(x)) << ADC_CHAN_THRSEL_CH10_THRSEL_SHIFT)) & ADC_CHAN_THRSEL_CH10_THRSEL_MASK)
#define ADC_CHAN_THRSEL_CH11_THRSEL_MASK (0x800U)
#define ADC_CHAN_THRSEL_CH11_THRSEL_SHIFT (11U)
/*! CH11_THRSEL - Threshold select for channel 11. See description for channel 0.
*/
#define ADC_CHAN_THRSEL_CH11_THRSEL(x) (((uint32_t)(((uint32_t)(x)) << ADC_CHAN_THRSEL_CH11_THRSEL_SHIFT)) & ADC_CHAN_THRSEL_CH11_THRSEL_MASK)
/*! @} */
/*! @name INTEN - ADC Interrupt Enable register. This register contains enable bits that enable the sequence-A, sequence-B, threshold compare and data overrun interrupts to be generated. */
/*! @{ */
#define ADC_INTEN_SEQA_INTEN_MASK (0x1U)
#define ADC_INTEN_SEQA_INTEN_SHIFT (0U)
/*! SEQA_INTEN - Sequence A interrupt enable.
* 0b0..Disabled. The sequence A interrupt/DMA trigger is disabled.
* 0b1..Enabled. The sequence A interrupt/DMA trigger is enabled and will be asserted either upon completion of
* each individual conversion performed as part of sequence A, or upon completion of the entire A sequence of
* conversions, depending on the MODE bit in the SEQA_CTRL register.
*/
#define ADC_INTEN_SEQA_INTEN(x) (((uint32_t)(((uint32_t)(x)) << ADC_INTEN_SEQA_INTEN_SHIFT)) & ADC_INTEN_SEQA_INTEN_MASK)
#define ADC_INTEN_SEQB_INTEN_MASK (0x2U)
#define ADC_INTEN_SEQB_INTEN_SHIFT (1U)
/*! SEQB_INTEN - Sequence B interrupt enable.
* 0b0..Disabled. The sequence B interrupt/DMA trigger is disabled.
* 0b1..Enabled. The sequence B interrupt/DMA trigger is enabled and will be asserted either upon completion of
* each individual conversion performed as part of sequence B, or upon completion of the entire B sequence of
* conversions, depending on the MODE bit in the SEQB_CTRL register.
*/
#define ADC_INTEN_SEQB_INTEN(x) (((uint32_t)(((uint32_t)(x)) << ADC_INTEN_SEQB_INTEN_SHIFT)) & ADC_INTEN_SEQB_INTEN_MASK)
#define ADC_INTEN_OVR_INTEN_MASK (0x4U)
#define ADC_INTEN_OVR_INTEN_SHIFT (2U)
/*! OVR_INTEN - Overrun interrupt enable.
* 0b0..Disabled. The overrun interrupt is disabled.
* 0b1..Enabled. The overrun interrupt is enabled. Detection of an overrun condition on any of the 12 channel
* data registers will cause an overrun interrupt/DMA trigger. In addition, if the MODE bit for a particular
* sequence is 0, then an overrun in the global data register for that sequence will also cause this
* interrupt/DMA trigger to be asserted.
*/
#define ADC_INTEN_OVR_INTEN(x) (((uint32_t)(((uint32_t)(x)) << ADC_INTEN_OVR_INTEN_SHIFT)) & ADC_INTEN_OVR_INTEN_MASK)
#define ADC_INTEN_ADCMPINTEN0_MASK (0x18U)
#define ADC_INTEN_ADCMPINTEN0_SHIFT (3U)
/*! ADCMPINTEN0 - Threshold comparison interrupt enable for channel 0.
* 0b00..Disabled.
* 0b01..Outside threshold.
* 0b10..Crossing threshold.
* 0b11..Reserved
*/
#define ADC_INTEN_ADCMPINTEN0(x) (((uint32_t)(((uint32_t)(x)) << ADC_INTEN_ADCMPINTEN0_SHIFT)) & ADC_INTEN_ADCMPINTEN0_MASK)
#define ADC_INTEN_ADCMPINTEN1_MASK (0x60U)
#define ADC_INTEN_ADCMPINTEN1_SHIFT (5U)
/*! ADCMPINTEN1 - Channel 1 threshold comparison interrupt enable. See description for channel 0.
*/
#define ADC_INTEN_ADCMPINTEN1(x) (((uint32_t)(((uint32_t)(x)) << ADC_INTEN_ADCMPINTEN1_SHIFT)) & ADC_INTEN_ADCMPINTEN1_MASK)
#define ADC_INTEN_ADCMPINTEN2_MASK (0x180U)
#define ADC_INTEN_ADCMPINTEN2_SHIFT (7U)
/*! ADCMPINTEN2 - Channel 2 threshold comparison interrupt enable. See description for channel 0.
*/
#define ADC_INTEN_ADCMPINTEN2(x) (((uint32_t)(((uint32_t)(x)) << ADC_INTEN_ADCMPINTEN2_SHIFT)) & ADC_INTEN_ADCMPINTEN2_MASK)
#define ADC_INTEN_ADCMPINTEN3_MASK (0x600U)
#define ADC_INTEN_ADCMPINTEN3_SHIFT (9U)
/*! ADCMPINTEN3 - Channel 3 threshold comparison interrupt enable. See description for channel 0.
*/
#define ADC_INTEN_ADCMPINTEN3(x) (((uint32_t)(((uint32_t)(x)) << ADC_INTEN_ADCMPINTEN3_SHIFT)) & ADC_INTEN_ADCMPINTEN3_MASK)
#define ADC_INTEN_ADCMPINTEN4_MASK (0x1800U)
#define ADC_INTEN_ADCMPINTEN4_SHIFT (11U)
/*! ADCMPINTEN4 - Channel 4 threshold comparison interrupt enable. See description for channel 0.
*/
#define ADC_INTEN_ADCMPINTEN4(x) (((uint32_t)(((uint32_t)(x)) << ADC_INTEN_ADCMPINTEN4_SHIFT)) & ADC_INTEN_ADCMPINTEN4_MASK)
#define ADC_INTEN_ADCMPINTEN5_MASK (0x6000U)
#define ADC_INTEN_ADCMPINTEN5_SHIFT (13U)
/*! ADCMPINTEN5 - Channel 5 threshold comparison interrupt enable. See description for channel 0.
*/
#define ADC_INTEN_ADCMPINTEN5(x) (((uint32_t)(((uint32_t)(x)) << ADC_INTEN_ADCMPINTEN5_SHIFT)) & ADC_INTEN_ADCMPINTEN5_MASK)
#define ADC_INTEN_ADCMPINTEN6_MASK (0x18000U)
#define ADC_INTEN_ADCMPINTEN6_SHIFT (15U)
/*! ADCMPINTEN6 - Channel 6 threshold comparison interrupt enable. See description for channel 0.
*/
#define ADC_INTEN_ADCMPINTEN6(x) (((uint32_t)(((uint32_t)(x)) << ADC_INTEN_ADCMPINTEN6_SHIFT)) & ADC_INTEN_ADCMPINTEN6_MASK)
#define ADC_INTEN_ADCMPINTEN7_MASK (0x60000U)
#define ADC_INTEN_ADCMPINTEN7_SHIFT (17U)
/*! ADCMPINTEN7 - Channel 7 threshold comparison interrupt enable. See description for channel 0.
*/
#define ADC_INTEN_ADCMPINTEN7(x) (((uint32_t)(((uint32_t)(x)) << ADC_INTEN_ADCMPINTEN7_SHIFT)) & ADC_INTEN_ADCMPINTEN7_MASK)
#define ADC_INTEN_ADCMPINTEN8_MASK (0x180000U)
#define ADC_INTEN_ADCMPINTEN8_SHIFT (19U)
/*! ADCMPINTEN8 - Channel 8 threshold comparison interrupt enable. See description for channel 0.
*/
#define ADC_INTEN_ADCMPINTEN8(x) (((uint32_t)(((uint32_t)(x)) << ADC_INTEN_ADCMPINTEN8_SHIFT)) & ADC_INTEN_ADCMPINTEN8_MASK)
#define ADC_INTEN_ADCMPINTEN9_MASK (0x600000U)
#define ADC_INTEN_ADCMPINTEN9_SHIFT (21U)
/*! ADCMPINTEN9 - Channel 9 threshold comparison interrupt enable. See description for channel 0.
*/
#define ADC_INTEN_ADCMPINTEN9(x) (((uint32_t)(((uint32_t)(x)) << ADC_INTEN_ADCMPINTEN9_SHIFT)) & ADC_INTEN_ADCMPINTEN9_MASK)
#define ADC_INTEN_ADCMPINTEN10_MASK (0x1800000U)
#define ADC_INTEN_ADCMPINTEN10_SHIFT (23U)
/*! ADCMPINTEN10 - Channel 10 threshold comparison interrupt enable. See description for channel 0.
*/
#define ADC_INTEN_ADCMPINTEN10(x) (((uint32_t)(((uint32_t)(x)) << ADC_INTEN_ADCMPINTEN10_SHIFT)) & ADC_INTEN_ADCMPINTEN10_MASK)
#define ADC_INTEN_ADCMPINTEN11_MASK (0x6000000U)
#define ADC_INTEN_ADCMPINTEN11_SHIFT (25U)
/*! ADCMPINTEN11 - Channel 21 threshold comparison interrupt enable. See description for channel 0.
*/
#define ADC_INTEN_ADCMPINTEN11(x) (((uint32_t)(((uint32_t)(x)) << ADC_INTEN_ADCMPINTEN11_SHIFT)) & ADC_INTEN_ADCMPINTEN11_MASK)
/*! @} */
/*! @name FLAGS - ADC Flags register. Contains the four interrupt/DMA trigger flags and the individual component overrun and threshold-compare flags. (The overrun bits replicate information stored in the result registers). */
/*! @{ */
#define ADC_FLAGS_THCMP0_MASK (0x1U)
#define ADC_FLAGS_THCMP0_SHIFT (0U)
/*! THCMP0 - Threshold comparison event on Channel 0. Set to 1 upon either an out-of-range result or
* a threshold-crossing result if enabled to do so in the INTEN register. This bit is cleared by
* writing a 1.
*/
#define ADC_FLAGS_THCMP0(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_THCMP0_SHIFT)) & ADC_FLAGS_THCMP0_MASK)
#define ADC_FLAGS_THCMP1_MASK (0x2U)
#define ADC_FLAGS_THCMP1_SHIFT (1U)
/*! THCMP1 - Threshold comparison event on Channel 1. See description for channel 0.
*/
#define ADC_FLAGS_THCMP1(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_THCMP1_SHIFT)) & ADC_FLAGS_THCMP1_MASK)
#define ADC_FLAGS_THCMP2_MASK (0x4U)
#define ADC_FLAGS_THCMP2_SHIFT (2U)
/*! THCMP2 - Threshold comparison event on Channel 2. See description for channel 0.
*/
#define ADC_FLAGS_THCMP2(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_THCMP2_SHIFT)) & ADC_FLAGS_THCMP2_MASK)
#define ADC_FLAGS_THCMP3_MASK (0x8U)
#define ADC_FLAGS_THCMP3_SHIFT (3U)
/*! THCMP3 - Threshold comparison event on Channel 3. See description for channel 0.
*/
#define ADC_FLAGS_THCMP3(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_THCMP3_SHIFT)) & ADC_FLAGS_THCMP3_MASK)
#define ADC_FLAGS_THCMP4_MASK (0x10U)
#define ADC_FLAGS_THCMP4_SHIFT (4U)
/*! THCMP4 - Threshold comparison event on Channel 4. See description for channel 0.
*/
#define ADC_FLAGS_THCMP4(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_THCMP4_SHIFT)) & ADC_FLAGS_THCMP4_MASK)
#define ADC_FLAGS_THCMP5_MASK (0x20U)
#define ADC_FLAGS_THCMP5_SHIFT (5U)
/*! THCMP5 - Threshold comparison event on Channel 5. See description for channel 0.
*/
#define ADC_FLAGS_THCMP5(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_THCMP5_SHIFT)) & ADC_FLAGS_THCMP5_MASK)
#define ADC_FLAGS_THCMP6_MASK (0x40U)
#define ADC_FLAGS_THCMP6_SHIFT (6U)
/*! THCMP6 - Threshold comparison event on Channel 6. See description for channel 0.
*/
#define ADC_FLAGS_THCMP6(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_THCMP6_SHIFT)) & ADC_FLAGS_THCMP6_MASK)
#define ADC_FLAGS_THCMP7_MASK (0x80U)
#define ADC_FLAGS_THCMP7_SHIFT (7U)
/*! THCMP7 - Threshold comparison event on Channel 7. See description for channel 0.
*/
#define ADC_FLAGS_THCMP7(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_THCMP7_SHIFT)) & ADC_FLAGS_THCMP7_MASK)
#define ADC_FLAGS_THCMP8_MASK (0x100U)
#define ADC_FLAGS_THCMP8_SHIFT (8U)
/*! THCMP8 - Threshold comparison event on Channel 8. See description for channel 0.
*/
#define ADC_FLAGS_THCMP8(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_THCMP8_SHIFT)) & ADC_FLAGS_THCMP8_MASK)
#define ADC_FLAGS_THCMP9_MASK (0x200U)
#define ADC_FLAGS_THCMP9_SHIFT (9U)
/*! THCMP9 - Threshold comparison event on Channel 9. See description for channel 0.
*/
#define ADC_FLAGS_THCMP9(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_THCMP9_SHIFT)) & ADC_FLAGS_THCMP9_MASK)
#define ADC_FLAGS_THCMP10_MASK (0x400U)
#define ADC_FLAGS_THCMP10_SHIFT (10U)
/*! THCMP10 - Threshold comparison event on Channel 10. See description for channel 0.
*/
#define ADC_FLAGS_THCMP10(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_THCMP10_SHIFT)) & ADC_FLAGS_THCMP10_MASK)
#define ADC_FLAGS_THCMP11_MASK (0x800U)
#define ADC_FLAGS_THCMP11_SHIFT (11U)
/*! THCMP11 - Threshold comparison event on Channel 11. See description for channel 0.
*/
#define ADC_FLAGS_THCMP11(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_THCMP11_SHIFT)) & ADC_FLAGS_THCMP11_MASK)
#define ADC_FLAGS_OVERRUN0_MASK (0x1000U)
#define ADC_FLAGS_OVERRUN0_SHIFT (12U)
/*! OVERRUN0 - Mirrors the OVERRRUN status flag from the result register for ADC channel 0
*/
#define ADC_FLAGS_OVERRUN0(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_OVERRUN0_SHIFT)) & ADC_FLAGS_OVERRUN0_MASK)
#define ADC_FLAGS_OVERRUN1_MASK (0x2000U)
#define ADC_FLAGS_OVERRUN1_SHIFT (13U)
/*! OVERRUN1 - Mirrors the OVERRRUN status flag from the result register for ADC channel 1
*/
#define ADC_FLAGS_OVERRUN1(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_OVERRUN1_SHIFT)) & ADC_FLAGS_OVERRUN1_MASK)
#define ADC_FLAGS_OVERRUN2_MASK (0x4000U)
#define ADC_FLAGS_OVERRUN2_SHIFT (14U)
/*! OVERRUN2 - Mirrors the OVERRRUN status flag from the result register for ADC channel 2
*/
#define ADC_FLAGS_OVERRUN2(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_OVERRUN2_SHIFT)) & ADC_FLAGS_OVERRUN2_MASK)
#define ADC_FLAGS_OVERRUN3_MASK (0x8000U)
#define ADC_FLAGS_OVERRUN3_SHIFT (15U)
/*! OVERRUN3 - Mirrors the OVERRRUN status flag from the result register for ADC channel 3
*/
#define ADC_FLAGS_OVERRUN3(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_OVERRUN3_SHIFT)) & ADC_FLAGS_OVERRUN3_MASK)
#define ADC_FLAGS_OVERRUN4_MASK (0x10000U)
#define ADC_FLAGS_OVERRUN4_SHIFT (16U)
/*! OVERRUN4 - Mirrors the OVERRRUN status flag from the result register for ADC channel 4
*/
#define ADC_FLAGS_OVERRUN4(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_OVERRUN4_SHIFT)) & ADC_FLAGS_OVERRUN4_MASK)
#define ADC_FLAGS_OVERRUN5_MASK (0x20000U)
#define ADC_FLAGS_OVERRUN5_SHIFT (17U)
/*! OVERRUN5 - Mirrors the OVERRRUN status flag from the result register for ADC channel 5
*/
#define ADC_FLAGS_OVERRUN5(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_OVERRUN5_SHIFT)) & ADC_FLAGS_OVERRUN5_MASK)
#define ADC_FLAGS_OVERRUN6_MASK (0x40000U)
#define ADC_FLAGS_OVERRUN6_SHIFT (18U)
/*! OVERRUN6 - Mirrors the OVERRRUN status flag from the result register for ADC channel 6
*/
#define ADC_FLAGS_OVERRUN6(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_OVERRUN6_SHIFT)) & ADC_FLAGS_OVERRUN6_MASK)
#define ADC_FLAGS_OVERRUN7_MASK (0x80000U)
#define ADC_FLAGS_OVERRUN7_SHIFT (19U)
/*! OVERRUN7 - Mirrors the OVERRRUN status flag from the result register for ADC channel 7
*/
#define ADC_FLAGS_OVERRUN7(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_OVERRUN7_SHIFT)) & ADC_FLAGS_OVERRUN7_MASK)
#define ADC_FLAGS_OVERRUN8_MASK (0x100000U)
#define ADC_FLAGS_OVERRUN8_SHIFT (20U)
/*! OVERRUN8 - Mirrors the OVERRRUN status flag from the result register for ADC channel 8
*/
#define ADC_FLAGS_OVERRUN8(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_OVERRUN8_SHIFT)) & ADC_FLAGS_OVERRUN8_MASK)
#define ADC_FLAGS_OVERRUN9_MASK (0x200000U)
#define ADC_FLAGS_OVERRUN9_SHIFT (21U)
/*! OVERRUN9 - Mirrors the OVERRRUN status flag from the result register for ADC channel 9
*/
#define ADC_FLAGS_OVERRUN9(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_OVERRUN9_SHIFT)) & ADC_FLAGS_OVERRUN9_MASK)
#define ADC_FLAGS_OVERRUN10_MASK (0x400000U)
#define ADC_FLAGS_OVERRUN10_SHIFT (22U)
/*! OVERRUN10 - Mirrors the OVERRRUN status flag from the result register for ADC channel 10
*/
#define ADC_FLAGS_OVERRUN10(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_OVERRUN10_SHIFT)) & ADC_FLAGS_OVERRUN10_MASK)
#define ADC_FLAGS_OVERRUN11_MASK (0x800000U)
#define ADC_FLAGS_OVERRUN11_SHIFT (23U)
/*! OVERRUN11 - Mirrors the OVERRRUN status flag from the result register for ADC channel 11
*/
#define ADC_FLAGS_OVERRUN11(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_OVERRUN11_SHIFT)) & ADC_FLAGS_OVERRUN11_MASK)
#define ADC_FLAGS_SEQA_OVR_MASK (0x1000000U)
#define ADC_FLAGS_SEQA_OVR_SHIFT (24U)
/*! SEQA_OVR - Mirrors the global OVERRUN status flag in the SEQA_GDAT register
*/
#define ADC_FLAGS_SEQA_OVR(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_SEQA_OVR_SHIFT)) & ADC_FLAGS_SEQA_OVR_MASK)
#define ADC_FLAGS_SEQB_OVR_MASK (0x2000000U)
#define ADC_FLAGS_SEQB_OVR_SHIFT (25U)
/*! SEQB_OVR - Mirrors the global OVERRUN status flag in the SEQB_GDAT register
*/
#define ADC_FLAGS_SEQB_OVR(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_SEQB_OVR_SHIFT)) & ADC_FLAGS_SEQB_OVR_MASK)
#define ADC_FLAGS_SEQA_INT_MASK (0x10000000U)
#define ADC_FLAGS_SEQA_INT_SHIFT (28U)
/*! SEQA_INT - Sequence A interrupt/DMA trigger. If the MODE bit in the SEQA_CTRL register is 0,
* this flag will mirror the DATAVALID bit in the sequence A global data register (SEQA_GDAT), which
* is set at the end of every ADC conversion performed as part of sequence A. It will be cleared
* automatically when the SEQA_GDAT register is read. If the MODE bit in the SEQA_CTRL register
* is 1, this flag will be set upon completion of an entire A sequence. In this case it must be
* cleared by writing a 1 to this SEQA_INT bit. This interrupt must be enabled in the INTEN
* register.
*/
#define ADC_FLAGS_SEQA_INT(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_SEQA_INT_SHIFT)) & ADC_FLAGS_SEQA_INT_MASK)
#define ADC_FLAGS_SEQB_INT_MASK (0x20000000U)
#define ADC_FLAGS_SEQB_INT_SHIFT (29U)
/*! SEQB_INT - Sequence A interrupt/DMA trigger. If the MODE bit in the SEQB_CTRL register is 0,
* this flag will mirror the DATAVALID bit in the sequence A global data register (SEQB_GDAT), which
* is set at the end of every ADC conversion performed as part of sequence B. It will be cleared
* automatically when the SEQB_GDAT register is read. If the MODE bit in the SEQB_CTRL register
* is 1, this flag will be set upon completion of an entire B sequence. In this case it must be
* cleared by writing a 1 to this SEQB_INT bit. This interrupt must be enabled in the INTEN
* register.
*/
#define ADC_FLAGS_SEQB_INT(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_SEQB_INT_SHIFT)) & ADC_FLAGS_SEQB_INT_MASK)
#define ADC_FLAGS_THCMP_INT_MASK (0x40000000U)
#define ADC_FLAGS_THCMP_INT_SHIFT (30U)
/*! THCMP_INT - Threshold Comparison Interrupt. This bit will be set if any of the THCMP flags in
* the lower bits of this register are set to 1 (due to an enabled out-of-range or
* threshold-crossing event on any channel). Each type of threshold comparison interrupt on each channel must be
* individually enabled in the INTEN register to cause this interrupt. This bit will be cleared
* when all of the individual threshold flags are cleared via writing 1s to those bits.
*/
#define ADC_FLAGS_THCMP_INT(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_THCMP_INT_SHIFT)) & ADC_FLAGS_THCMP_INT_MASK)
#define ADC_FLAGS_OVR_INT_MASK (0x80000000U)
#define ADC_FLAGS_OVR_INT_SHIFT (31U)
/*! OVR_INT - Overrun Interrupt flag. Any overrun bit in any of the individual channel data
* registers will cause this interrupt. In addition, if the MODE bit in either of the SEQn_CTRL registers
* is 0 then the OVERRUN bit in the corresponding SEQn_GDAT register will also cause this
* interrupt. This interrupt must be enabled in the INTEN register. This bit will be cleared when all
* of the individual overrun bits have been cleared via reading the corresponding data registers.
*/
#define ADC_FLAGS_OVR_INT(x) (((uint32_t)(((uint32_t)(x)) << ADC_FLAGS_OVR_INT_SHIFT)) & ADC_FLAGS_OVR_INT_MASK)
/*! @} */
/*!
* @}
*/ /* end of group ADC_Register_Masks */
/* ADC - Peripheral instance base addresses */
/** Peripheral ADC base address */
#define ADC_BASE (0x4001C000u)
/** Peripheral ADC base pointer */
#define ADC ((ADC_Type *)ADC_BASE)
/** Array initializer of ADC peripheral base addresses */
#define ADC_BASE_ADDRS { ADC_BASE }
/** Array initializer of ADC peripheral base pointers */
#define ADC_BASE_PTRS { ADC }
/** Interrupt vectors for the ADC peripheral type */
#define ADC_SEQ_IRQS { ADC_SEQA_IRQn, ADC_SEQB_IRQn }
#define ADC_THCMP_IRQS { ADC_THCMP_IRQn }
/*!
* @}
*/ /* end of group ADC_Peripheral_Access_Layer */
/* ----------------------------------------------------------------------------
-- CAPT Peripheral Access Layer
---------------------------------------------------------------------------- */
/*!
* @addtogroup CAPT_Peripheral_Access_Layer CAPT Peripheral Access Layer
* @{
*/
/** CAPT - Register Layout Typedef */
typedef struct {
__IO uint32_t CTRL; /**< Configuration and control to setup the functional clock, the rules, and the pin selections and rules., offset: 0x0 */
__IO uint32_t STATUS; /**< Status from triggers and time-outs including if in a poll now. Some are used for interrupts., offset: 0x4 */
__IO uint32_t POLL_TCNT; /**< This sets up the polling counter and measurement counter rules., offset: 0x8 */
uint8_t RESERVED_0[4];
__IO uint32_t INTENSET; /**< Interrupt enable, offset: 0x10 */
__IO uint32_t INTENCLR; /**< Interrupt enable clear, offset: 0x14 */
__I uint32_t INTSTAT; /**< Interrupt status (mask of STATUS and INTEN), offset: 0x18 */
uint8_t RESERVED_1[4];
__I uint32_t TOUCH; /**< Last touch event (touch or no-touch) in context., offset: 0x20 */
uint8_t RESERVED_2[4056];
__I uint32_t ID; /**< Block ID., offset: 0xFFC */
} CAPT_Type;
/* ----------------------------------------------------------------------------
-- CAPT Register Masks
---------------------------------------------------------------------------- */
/*!
* @addtogroup CAPT_Register_Masks CAPT Register Masks
* @{
*/
/*! @name CTRL - Configuration and control to setup the functional clock, the rules, and the pin selections and rules. */
/*! @{ */
#define CAPT_CTRL_POLLMODE_MASK (0x3U)
#define CAPT_CTRL_POLLMODE_SHIFT (0U)
/*! POLLMODE - Mode of operation. May only change from 0 to another value. So, if 2 or 3, must be
* changed to 0 1st. Any attempt to go from non-0 to non-0 will result in 0 anyway.
* 0b00..None, inactive. Poll and time counters are turned off. Writing this will reset state and stop any
* collection in progress. Note: this has no effect on STATUS - those must be cleared manually.
* 0b01..Poll now - forces a manual poll to be started immediately, using XPINSEL X pin(s) to activate in the
* integration loop (all pins set together). Self clears - clear is not indication it is done (see STATUS).
* 0b10..Normal polling using poll delay from POLL_TCNT register. This will start with the poll delay (which can be 0).
* 0b11..The CAPT block will operate in low-power mode. This means it will use GPIO as input, use combination
* touch measurements, and assume it is to wake the system. This will use the POLL_TCNT poll delay, and start
* with the delay.
*/
#define CAPT_CTRL_POLLMODE(x) (((uint32_t)(((uint32_t)(x)) << CAPT_CTRL_POLLMODE_SHIFT)) & CAPT_CTRL_POLLMODE_MASK)
#define CAPT_CTRL_TYPE_MASK (0xCU)
#define CAPT_CTRL_TYPE_SHIFT (2U)
/*! TYPE - Selects type of Touch arrangement to use and so how to handle XPINSEL bits
* 0b00..Normal - all X elements are treated as normal, such as buttons and sliders.
* 0b01..3x3 grid using NXP Complementary measurements. The 1st 9 Xs are assumed to be the 3x3 grid. After that
* would be normal X elements. This will also allow 3x1 and 3x2 Note: Only possible if XMAX in STATUS is >=8
* 0b10..5 Sensors interleaved to act as 3x3 touch area using NXP Complementary measurements. 1st 5 Xs used for
* this, all remaining are treated as normal. Note that if 16 X pins allowed, the 16th will not be usable
* when TYPE=1. (use TYPE=0 and select 1 smaller than 15 ( and any others from 1 smaller than 5 on up in
* XPINSEL).
* 0b11..9 Sensors interleaved to act as 5x5 touch area using NXP Complementary measurements. 1st 9 Xs used for
* this, all remaining are treated as normal. Note: Only possible if XMAX in STATUS is >=8
*/
#define CAPT_CTRL_TYPE(x) (((uint32_t)(((uint32_t)(x)) << CAPT_CTRL_TYPE_SHIFT)) & CAPT_CTRL_TYPE_MASK)
#define CAPT_CTRL_TRIGGER_MASK (0x10U)
#define CAPT_CTRL_TRIGGER_SHIFT (4U)
/*! TRIGGER - This selects what is being used as the trigger
* 0b0..Uses YH GPIO. This is not normally used except in Low-power mode. But, it can be used with POLLNOW to baseline that measurement.
* 0b1..ACMP (if fitted). This assumes the ACMP state is fed in asynchronously and it will sample.
*/
#define CAPT_CTRL_TRIGGER(x) (((uint32_t)(((uint32_t)(x)) << CAPT_CTRL_TRIGGER_SHIFT)) & CAPT_CTRL_TRIGGER_MASK)
#define CAPT_CTRL_WAIT_MASK (0x20U)
#define CAPT_CTRL_WAIT_SHIFT (5U)
/*! WAIT - If 0, the block will continue its X based measurements, even if the TOUCH register has
* not been read (and so could OVERRUN). If 1, it will wait until read when a touch (TOUCH's
* ISTOUCH bit is set) before starting the next. This should not normally be needed.
*/
#define CAPT_CTRL_WAIT(x) (((uint32_t)(((uint32_t)(x)) << CAPT_CTRL_WAIT_SHIFT)) & CAPT_CTRL_WAIT_MASK)
#define CAPT_CTRL_FDIV_MASK (0xF00U)
#define CAPT_CTRL_FDIV_SHIFT (8U)
/*! FDIV - Functional clock divider, or 0 if no divide. The term "clocks" in this spec then refer to
* divided clocks. For a 12MHz input (e.g. FRO 12MHz), this would normally be set to generate a
* 4MHz output (so, 2). For a 1MHz input, it should be 0. Note for internal use: this does not
* produce a 50/50 duty cycle when non even divide.
* 0b0000..No divide
* 0b0001../2
* 0b0010../3
* 0b0011../4
* 0b0100../5
* 0b0101../6
* 0b0111../(FDIV+1)
* 0b1000../(FDIV+1)
* 0b1001../(FDIV+1)
* 0b1010../(FDIV+1)
* 0b1011../(FDIV+1)
* 0b1100../(FDIV+1)
* 0b1101../(FDIV+1)
* 0b1110../(FDIV+1)
* 0b1111../(FDIV+1)
*/
#define CAPT_CTRL_FDIV(x) (((uint32_t)(((uint32_t)(x)) << CAPT_CTRL_FDIV_SHIFT)) & CAPT_CTRL_FDIV_MASK)
#define CAPT_CTRL_XPINUSE_MASK (0x3000U)
#define CAPT_CTRL_XPINUSE_SHIFT (12U)
/*! XPINUSE - Controls how X pins selected in XPINSEL are used when not active in the current polling round.
* 0b00..Normal mode. Each inactive X pin is Hi-Z.
* 0b01..Ground mode. Each inactive X pin is Low
*/
#define CAPT_CTRL_XPINUSE(x) (((uint32_t)(((uint32_t)(x)) << CAPT_CTRL_XPINUSE_SHIFT)) & CAPT_CTRL_XPINUSE_MASK)
#define CAPT_CTRL_INCHANGE_MASK (0x8000U)
#define CAPT_CTRL_INCHANGE_SHIFT (15U)
/*! INCHANGE - If 1, do not attempt to write to this register again. This means the last change has
* not been propagated. This can only happen after changing POLLMODE and DMA. Worse case time
* would be based on divided FCLK.
*/
#define CAPT_CTRL_INCHANGE(x) (((uint32_t)(((uint32_t)(x)) << CAPT_CTRL_INCHANGE_SHIFT)) & CAPT_CTRL_INCHANGE_MASK)
#define CAPT_CTRL_XPINSEL_MASK (0xFFFF0000U)
#define CAPT_CTRL_XPINSEL_SHIFT (16U)
/*! XPINSEL - Selects which of the X pins are to be used within the allowed pins - see XMAX in
* STATUS. The X pins are mapped via the IOCON (as are the YH and YL pins) to physical pads. So, this
* only selects which are to be used as the X half of the touch element. Note: when polling,
* these are "walked" (active) one at a time. When using POLLNOW, the 1 or more selected are used at
* the same time. Likewise, when in low-power mode, they are used at the same time (or small
* groups). X pads not selected by XPINSEL are kept at High-Z if they are connected to a pad. This
* allows using controlled sets for touch detection based on context.
*/
#define CAPT_CTRL_XPINSEL(x) (((uint32_t)(((uint32_t)(x)) << CAPT_CTRL_XPINSEL_SHIFT)) & CAPT_CTRL_XPINSEL_MASK)
/*! @} */
/*! @name STATUS - Status from triggers and time-outs including if in a poll now. Some are used for interrupts. */
/*! @{ */
#define CAPT_STATUS_YESTOUCH_MASK (0x1U)
#define CAPT_STATUS_YESTOUCH_SHIFT (0U)
/*! YESTOUCH - Is 1 if a touch has been detected, including a wakeup from low-power mode.
*/
#define CAPT_STATUS_YESTOUCH(x) (((uint32_t)(((uint32_t)(x)) << CAPT_STATUS_YESTOUCH_SHIFT)) & CAPT_STATUS_YESTOUCH_MASK)
#define CAPT_STATUS_NOTOUCH_MASK (0x2U)
#define CAPT_STATUS_NOTOUCH_SHIFT (1U)
/*! NOTOUCH - Is 1 if a no-touch has been detected (ie. completed an integration cycle and found
* no-touch). This is not set when in low-power mode.
*/
#define CAPT_STATUS_NOTOUCH(x) (((uint32_t)(((uint32_t)(x)) << CAPT_STATUS_NOTOUCH_SHIFT)) & CAPT_STATUS_NOTOUCH_MASK)
#define CAPT_STATUS_POLLDONE_MASK (0x4U)
#define CAPT_STATUS_POLLDONE_SHIFT (2U)
/*! POLLDONE - Is 1 if a poll or POLLNOW is complete.
*/
#define CAPT_STATUS_POLLDONE(x) (((uint32_t)(((uint32_t)(x)) << CAPT_STATUS_POLLDONE_SHIFT)) & CAPT_STATUS_POLLDONE_MASK)
#define CAPT_STATUS_TIMEOUT_MASK (0x8U)
#define CAPT_STATUS_TIMEOUT_SHIFT (3U)
/*! TIMEOUT - Is 1 if an integration cycle ended with a timeout (should not happen).
*/
#define CAPT_STATUS_TIMEOUT(x) (((uint32_t)(((uint32_t)(x)) << CAPT_STATUS_TIMEOUT_SHIFT)) & CAPT_STATUS_TIMEOUT_MASK)
#define CAPT_STATUS_OVERUN_MASK (0x10U)
#define CAPT_STATUS_OVERUN_SHIFT (4U)
/*! OVERUN - Is 1 if new data was collected before application read out previous ISTOUCH. No-touch
* (ISTOUCH==0) data will be silently overrun. Is not possible if WAIT=1.
*/
#define CAPT_STATUS_OVERUN(x) (((uint32_t)(((uint32_t)(x)) << CAPT_STATUS_OVERUN_SHIFT)) & CAPT_STATUS_OVERUN_MASK)
#define CAPT_STATUS_BUSY_MASK (0x100U)
#define CAPT_STATUS_BUSY_SHIFT (8U)
/*! BUSY - In a poll now.
*/
#define CAPT_STATUS_BUSY(x) (((uint32_t)(((uint32_t)(x)) << CAPT_STATUS_BUSY_SHIFT)) & CAPT_STATUS_BUSY_MASK)
#define CAPT_STATUS_XMAX_MASK (0xF0000U)
#define CAPT_STATUS_XMAX_SHIFT (16U)
/*! XMAX - Indicates the maximum number of X pins allowed 0-relative. So, 15 means there are pins 0
* to 15, or 16 total X pins. INTERNAL note: this may be setup to be written by ROM boot.
*/
#define CAPT_STATUS_XMAX(x) (((uint32_t)(((uint32_t)(x)) << CAPT_STATUS_XMAX_SHIFT)) & CAPT_STATUS_XMAX_MASK)
/*! @} */
/*! @name POLL_TCNT - This sets up the polling counter and measurement counter rules. */
/*! @{ */
#define CAPT_POLL_TCNT_TCNT_MASK (0xFFFU)
#define CAPT_POLL_TCNT_TCNT_SHIFT (0U)
/*! TCNT - Sets the threshold between touch and no-touch count. If not used, then the block will
* treat all events as touch or no-touch, depending whether at max or min. This is in terms of
* divided FCLK. If the comparator triggers it is no-touch; if bigger than TCNT counts, it is a touch
* event.
*/
#define CAPT_POLL_TCNT_TCNT(x) (((uint32_t)(((uint32_t)(x)) << CAPT_POLL_TCNT_TCNT_SHIFT)) & CAPT_POLL_TCNT_TCNT_MASK)
#define CAPT_POLL_TCNT_TOUT_MASK (0xF000U)
#define CAPT_POLL_TCNT_TOUT_SHIFT (12U)
/*! TOUT - Time-out count expressed as 1 is smaller than TOUT, allowing for up to 12 bits. Must be
* less than 13. So, for example, 1 is smaller than 12=4096 counts; if TOUT=12, then if 4096
* counts occur without a trigger, it is a time-out. This should be set to be large enough above TCNT
* to prevent timeout invalidly.
*/
#define CAPT_POLL_TCNT_TOUT(x) (((uint32_t)(((uint32_t)(x)) << CAPT_POLL_TCNT_TOUT_SHIFT)) & CAPT_POLL_TCNT_TOUT_MASK)
#define CAPT_POLL_TCNT_POLL_MASK (0xFF0000U)
#define CAPT_POLL_TCNT_POLL_SHIFT (16U)
/*! POLL - Poll counter in (internal) 12-bit counter wraparounds (loosely 1msec), so related to
* divided FCLK. This expresses time delay between measurement cycles (ie. after one set of X
* measurements, time before starting next). This count is used to delay before the next set of
* measurements. Measuring too often wastes power and does not add value since movement of fingers is
* relatively slow. For low power mode, this must allow for the clock being used (e.g. a 1MHz osc)
* so 12 bit count will be potentially much longer. That means, lowering the count to get the
* reasonable delay period.
*/
#define CAPT_POLL_TCNT_POLL(x) (((uint32_t)(((uint32_t)(x)) << CAPT_POLL_TCNT_POLL_SHIFT)) & CAPT_POLL_TCNT_POLL_MASK)
#define CAPT_POLL_TCNT_MDELAY_MASK (0x3000000U)
#define CAPT_POLL_TCNT_MDELAY_SHIFT (24U)
/*! MDELAY - If not 0, this selects the number of divided FCLKs to wait after entry of measurement
* mode before deciding if has triggered. This gives the ACMP time to react to the transferred
* charge. It is used as 1+(1 smaller than MDELAY), , so between 2 and 8 ticks of the divided FCLK
* added during the measurement.
*/
#define CAPT_POLL_TCNT_MDELAY(x) (((uint32_t)(((uint32_t)(x)) << CAPT_POLL_TCNT_MDELAY_SHIFT)) & CAPT_POLL_TCNT_MDELAY_MASK)
#define CAPT_POLL_TCNT_RDELAY_MASK (0xC000000U)
#define CAPT_POLL_TCNT_RDELAY_SHIFT (26U)
/*! RDELAY - If not 0, this is the number of divided FCLKs to hold in Step 0 'Reset' state (draining
* capacitance). It is used as (1 is smaller than RDELAY), so between 2 and 8 ticks of the
* divided FCLK added to the 'Reset' state.
*/
#define CAPT_POLL_TCNT_RDELAY(x) (((uint32_t)(((uint32_t)(x)) << CAPT_POLL_TCNT_RDELAY_SHIFT)) & CAPT_POLL_TCNT_RDELAY_MASK)
#define CAPT_POLL_TCNT_TCHLOW_ER_MASK (0x80000000U)
#define CAPT_POLL_TCNT_TCHLOW_ER_SHIFT (31U)
/*! TCHLOW_ER - Specifies whether a touched sensor triggers at a lower or higher count than an
* untouched sensor. TOUCHLOWER = 0: Trigger at count > TCNT is a touch. Trigger at count lower than
* or equal to TCNT is a no-touch. TOUCHLOWER = 1: Trigger at count lower than or equal to TCNT is
* a touch. Trigger at count > TCNT is a no-touch.
*/
#define CAPT_POLL_TCNT_TCHLOW_ER(x) (((uint32_t)(((uint32_t)(x)) << CAPT_POLL_TCNT_TCHLOW_ER_SHIFT)) & CAPT_POLL_TCNT_TCHLOW_ER_MASK)
/*! @} */
/*! @name INTENSET - Interrupt enable */
/*! @{ */
#define CAPT_INTENSET_YESTOUCH_MASK (0x1U)
#define CAPT_INTENSET_YESTOUCH_SHIFT (0U)
/*! YESTOUCH - Is 1 if a touch detected should interrupt. This includes wake from low-power mode.
*/
#define CAPT_INTENSET_YESTOUCH(x) (((uint32_t)(((uint32_t)(x)) << CAPT_INTENSET_YESTOUCH_SHIFT)) & CAPT_INTENSET_YESTOUCH_MASK)
#define CAPT_INTENSET_NOTOUCH_MASK (0x2U)
#define CAPT_INTENSET_NOTOUCH_SHIFT (1U)
/*! NOTOUCH - Is 1 if a no-touch detected should interrupt
*/
#define CAPT_INTENSET_NOTOUCH(x) (((uint32_t)(((uint32_t)(x)) << CAPT_INTENSET_NOTOUCH_SHIFT)) & CAPT_INTENSET_NOTOUCH_MASK)
#define CAPT_INTENSET_POLLDONE_MASK (0x4U)
#define CAPT_INTENSET_POLLDONE_SHIFT (2U)
/*! POLLDONE - Is 1 if a poll or POLLNOW completing should interrupt
*/
#define CAPT_INTENSET_POLLDONE(x) (((uint32_t)(((uint32_t)(x)) << CAPT_INTENSET_POLLDONE_SHIFT)) & CAPT_INTENSET_POLLDONE_MASK)
#define CAPT_INTENSET_TIMEOUT_MASK (0x8U)
#define CAPT_INTENSET_TIMEOUT_SHIFT (3U)
/*! TIMEOUT - Is 1 if an integration cycle ending with timeout should interrupt
*/
#define CAPT_INTENSET_TIMEOUT(x) (((uint32_t)(((uint32_t)(x)) << CAPT_INTENSET_TIMEOUT_SHIFT)) & CAPT_INTENSET_TIMEOUT_MASK)
#define CAPT_INTENSET_OVERUN_MASK (0x10U)
#define CAPT_INTENSET_OVERUN_SHIFT (4U)
/*! OVERUN - Is 1 if an overrun should interrupt.
*/
#define CAPT_INTENSET_OVERUN(x) (((uint32_t)(((uint32_t)(x)) << CAPT_INTENSET_OVERUN_SHIFT)) & CAPT_INTENSET_OVERUN_MASK)
/*! @} */
/*! @name INTENCLR - Interrupt enable clear */
/*! @{ */
#define CAPT_INTENCLR_YESTOUCH_MASK (0x1U)
#define CAPT_INTENCLR_YESTOUCH_SHIFT (0U)
/*! YESTOUCH - clear the touch interrupt
*/
#define CAPT_INTENCLR_YESTOUCH(x) (((uint32_t)(((uint32_t)(x)) << CAPT_INTENCLR_YESTOUCH_SHIFT)) & CAPT_INTENCLR_YESTOUCH_MASK)
#define CAPT_INTENCLR_NOTOUCH_MASK (0x2U)
#define CAPT_INTENCLR_NOTOUCH_SHIFT (1U)
/*! NOTOUCH - clear the no-touch interrupt
*/
#define CAPT_INTENCLR_NOTOUCH(x) (((uint32_t)(((uint32_t)(x)) << CAPT_INTENCLR_NOTOUCH_SHIFT)) & CAPT_INTENCLR_NOTOUCH_MASK)
#define CAPT_INTENCLR_POLLDONE_MASK (0x4U)
#define CAPT_INTENCLR_POLLDONE_SHIFT (2U)
/*! POLLDONE - clear the poll or POLLNOW completing interrupt
*/
#define CAPT_INTENCLR_POLLDONE(x) (((uint32_t)(((uint32_t)(x)) << CAPT_INTENCLR_POLLDONE_SHIFT)) & CAPT_INTENCLR_POLLDONE_MASK)
#define CAPT_INTENCLR_TIMEOUT_MASK (0x8U)
#define CAPT_INTENCLR_TIMEOUT_SHIFT (3U)
/*! TIMEOUT - clear the timeout interrupt
*/
#define CAPT_INTENCLR_TIMEOUT(x) (((uint32_t)(((uint32_t)(x)) << CAPT_INTENCLR_TIMEOUT_SHIFT)) & CAPT_INTENCLR_TIMEOUT_MASK)
#define CAPT_INTENCLR_OVERUN_MASK (0x10U)
#define CAPT_INTENCLR_OVERUN_SHIFT (4U)
/*! OVERUN - clear the overrun interrupt
*/
#define CAPT_INTENCLR_OVERUN(x) (((uint32_t)(((uint32_t)(x)) << CAPT_INTENCLR_OVERUN_SHIFT)) & CAPT_INTENCLR_OVERUN_MASK)
/*! @} */
/*! @name INTSTAT - Interrupt status (mask of STATUS and INTEN) */
/*! @{ */
#define CAPT_INTSTAT_YESTOUCH_MASK (0x1U)
#define CAPT_INTSTAT_YESTOUCH_SHIFT (0U)
/*! YESTOUCH - the status of touch interrrupt
*/
#define CAPT_INTSTAT_YESTOUCH(x) (((uint32_t)(((uint32_t)(x)) << CAPT_INTSTAT_YESTOUCH_SHIFT)) & CAPT_INTSTAT_YESTOUCH_MASK)
#define CAPT_INTSTAT_NOTOUCH_MASK (0x2U)
#define CAPT_INTSTAT_NOTOUCH_SHIFT (1U)
/*! NOTOUCH - the status of no-touch interrrupt
*/
#define CAPT_INTSTAT_NOTOUCH(x) (((uint32_t)(((uint32_t)(x)) << CAPT_INTSTAT_NOTOUCH_SHIFT)) & CAPT_INTSTAT_NOTOUCH_MASK)
#define CAPT_INTSTAT_POLLDONE_MASK (0x4U)
#define CAPT_INTSTAT_POLLDONE_SHIFT (2U)
/*! POLLDONE - the status of poll or pollnow completing interrupt
*/
#define CAPT_INTSTAT_POLLDONE(x) (((uint32_t)(((uint32_t)(x)) << CAPT_INTSTAT_POLLDONE_SHIFT)) & CAPT_INTSTAT_POLLDONE_MASK)
#define CAPT_INTSTAT_TIMEOUT_MASK (0x8U)
#define CAPT_INTSTAT_TIMEOUT_SHIFT (3U)
/*! TIMEOUT - the status of timeout interrupt
*/
#define CAPT_INTSTAT_TIMEOUT(x) (((uint32_t)(((uint32_t)(x)) << CAPT_INTSTAT_TIMEOUT_SHIFT)) & CAPT_INTSTAT_TIMEOUT_MASK)
#define CAPT_INTSTAT_OVERUN_MASK (0x10U)
#define CAPT_INTSTAT_OVERUN_SHIFT (4U)
/*! OVERUN - the status of overrun interrupt
*/
#define CAPT_INTSTAT_OVERUN(x) (((uint32_t)(((uint32_t)(x)) << CAPT_INTSTAT_OVERUN_SHIFT)) & CAPT_INTSTAT_OVERUN_MASK)
/*! @} */
/*! @name TOUCH - Last touch event (touch or no-touch) in context. */
/*! @{ */
#define CAPT_TOUCH_COUNT_MASK (0xFFFU)
#define CAPT_TOUCH_COUNT_SHIFT (0U)
/*! COUNT - Count value reached at trigger. If timeout, will be (1 bigger than TOUT)-1; e.g. if TOUT=12, then 0xFFF.
*/
#define CAPT_TOUCH_COUNT(x) (((uint32_t)(((uint32_t)(x)) << CAPT_TOUCH_COUNT_SHIFT)) & CAPT_TOUCH_COUNT_MASK)
#define CAPT_TOUCH_XVAL_MASK (0xF000U)
#define CAPT_TOUCH_XVAL_SHIFT (12U)
/*! XVAL - Is the X that triggered this, or lowest X if more than one.
*/
#define CAPT_TOUCH_XVAL(x) (((uint32_t)(((uint32_t)(x)) << CAPT_TOUCH_XVAL_SHIFT)) & CAPT_TOUCH_XVAL_MASK)
#define CAPT_TOUCH_ISTOUCH_MASK (0x10000U)
#define CAPT_TOUCH_ISTOUCH_SHIFT (16U)
/*! ISTOUCH - 1 if is Touch (by count) or 0 if is no-touch.
*/
#define CAPT_TOUCH_ISTOUCH(x) (((uint32_t)(((uint32_t)(x)) << CAPT_TOUCH_ISTOUCH_SHIFT)) & CAPT_TOUCH_ISTOUCH_MASK)
#define CAPT_TOUCH_ISTO_MASK (0x20000U)
#define CAPT_TOUCH_ISTO_SHIFT (17U)
/*! ISTO - 1 if is Timeout.
*/
#define CAPT_TOUCH_ISTO(x) (((uint32_t)(((uint32_t)(x)) << CAPT_TOUCH_ISTO_SHIFT)) & CAPT_TOUCH_ISTO_MASK)
#define CAPT_TOUCH_SEQ_MASK (0xF00000U)
#define CAPT_TOUCH_SEQ_SHIFT (20U)
/*! SEQ - Sequence number - rolling counter of polls. Changes after all selected Xs per poll (so, 0
* for 1st set of Xs, then 1 for next set, etc).
*/
#define CAPT_TOUCH_SEQ(x) (((uint32_t)(((uint32_t)(x)) << CAPT_TOUCH_SEQ_SHIFT)) & CAPT_TOUCH_SEQ_MASK)
#define CAPT_TOUCH_CHANGE_MASK (0x80000000U)
#define CAPT_TOUCH_CHANGE_SHIFT (31U)
/*! CHANGE - If 1, the rest of the register is 0 because the data is changing. This will only happen
* for 1 cycle and would never happen if using interrupts to read, unless took so long as to
* overrun.
*/
#define CAPT_TOUCH_CHANGE(x) (((uint32_t)(((uint32_t)(x)) << CAPT_TOUCH_CHANGE_SHIFT)) & CAPT_TOUCH_CHANGE_MASK)
/*! @} */
/*! @name ID - Block ID. */
/*! @{ */
#define CAPT_ID_APERTURE_MASK (0xFFU)
#define CAPT_ID_APERTURE_SHIFT (0U)
/*! APERTURE - Aperture: encoded as (aperture size/4K) -1, so 0x00 is a 4 K aperture.
*/
#define CAPT_ID_APERTURE(x) (((uint32_t)(((uint32_t)(x)) << CAPT_ID_APERTURE_SHIFT)) & CAPT_ID_APERTURE_MASK)
#define CAPT_ID_MINOR_REV_MASK (0xF00U)
#define CAPT_ID_MINOR_REV_SHIFT (8U)
/*! MINOR_REV - Minor revision of module implementation, starting at 0. Software compatibility is expected between minor revisions.
*/
#define CAPT_ID_MINOR_REV(x) (((uint32_t)(((uint32_t)(x)) << CAPT_ID_MINOR_REV_SHIFT)) & CAPT_ID_MINOR_REV_MASK)
#define CAPT_ID_MAJOR_REV_MASK (0xF000U)
#define CAPT_ID_MAJOR_REV_SHIFT (12U)
/*! MAJOR_REV - Major revision of module implementation, starting at 0. There may not be software compatibility between major revisions.
*/
#define CAPT_ID_MAJOR_REV(x) (((uint32_t)(((uint32_t)(x)) << CAPT_ID_MAJOR_REV_SHIFT)) & CAPT_ID_MAJOR_REV_MASK)
#define CAPT_ID_ID_MASK (0xFFFF0000U)
#define CAPT_ID_ID_SHIFT (16U)
/*! ID - Unique module identifier for this IP block.
*/
#define CAPT_ID_ID(x) (((uint32_t)(((uint32_t)(x)) << CAPT_ID_ID_SHIFT)) & CAPT_ID_ID_MASK)
/*! @} */
/*!
* @}
*/ /* end of group CAPT_Register_Masks */
/* CAPT - Peripheral instance base addresses */
/** Peripheral CAPT base address */
#define CAPT_BASE (0x40060000u)
/** Peripheral CAPT base pointer */
#define CAPT ((CAPT_Type *)CAPT_BASE)
/** Array initializer of CAPT peripheral base addresses */
#define CAPT_BASE_ADDRS { CAPT_BASE }
/** Array initializer of CAPT peripheral base pointers */
#define CAPT_BASE_PTRS { CAPT }
/** Interrupt vectors for the CAPT peripheral type */
#define CAPT_IRQS { CMP_CAPT_IRQn }
/*!
* @}
*/ /* end of group CAPT_Peripheral_Access_Layer */
/* ----------------------------------------------------------------------------
-- CRC Peripheral Access Layer
---------------------------------------------------------------------------- */
/*!
* @addtogroup CRC_Peripheral_Access_Layer CRC Peripheral Access Layer
* @{
*/
/** CRC - Register Layout Typedef */
typedef struct {
__IO uint32_t MODE; /**< CRC mode register, offset: 0x0 */
__IO uint32_t SEED; /**< CRC seed register, offset: 0x4 */
union { /* offset: 0x8 */
__I uint32_t SUM; /**< CRC checksum register, offset: 0x8 */
__O uint32_t WR_DATA; /**< CRC data register, offset: 0x8 */
};
} CRC_Type;
/* ----------------------------------------------------------------------------
-- CRC Register Masks
---------------------------------------------------------------------------- */
/*!
* @addtogroup CRC_Register_Masks CRC Register Masks
* @{
*/
/*! @name MODE - CRC mode register */
/*! @{ */
#define CRC_MODE_CRC_POLY_MASK (0x3U)
#define CRC_MODE_CRC_POLY_SHIFT (0U)
/*! CRC_POLY - CRC polynomial: 1X = CRC-32 polynomial 01 = CRC-16 polynomial 00 = CRC-CCITT polynomial
*/
#define CRC_MODE_CRC_POLY(x) (((uint32_t)(((uint32_t)(x)) << CRC_MODE_CRC_POLY_SHIFT)) & CRC_MODE_CRC_POLY_MASK)
#define CRC_MODE_BIT_RVS_WR_MASK (0x4U)
#define CRC_MODE_BIT_RVS_WR_SHIFT (2U)
/*! BIT_RVS_WR - Data bit order: 1 = Bit order reverse for CRC_WR_DATA (per byte) 0 = No bit order reverse for CRC_WR_DATA (per byte)
*/
#define CRC_MODE_BIT_RVS_WR(x) (((uint32_t)(((uint32_t)(x)) << CRC_MODE_BIT_RVS_WR_SHIFT)) & CRC_MODE_BIT_RVS_WR_MASK)
#define CRC_MODE_CMPL_WR_MASK (0x8U)
#define CRC_MODE_CMPL_WR_SHIFT (3U)
/*! CMPL_WR - Data complement: 1 = 1's complement for CRC_WR_DATA 0 = No 1's complement for CRC_WR_DATA
*/
#define CRC_MODE_CMPL_WR(x) (((uint32_t)(((uint32_t)(x)) << CRC_MODE_CMPL_WR_SHIFT)) & CRC_MODE_CMPL_WR_MASK)
#define CRC_MODE_BIT_RVS_SUM_MASK (0x10U)
#define CRC_MODE_BIT_RVS_SUM_SHIFT (4U)
/*! BIT_RVS_SUM - CRC sum bit order: 1 = Bit order reverse for CRC_SUM 0 = No bit order reverse for CRC_SUM
*/
#define CRC_MODE_BIT_RVS_SUM(x) (((uint32_t)(((uint32_t)(x)) << CRC_MODE_BIT_RVS_SUM_SHIFT)) & CRC_MODE_BIT_RVS_SUM_MASK)
#define CRC_MODE_CMPL_SUM_MASK (0x20U)
#define CRC_MODE_CMPL_SUM_SHIFT (5U)
/*! CMPL_SUM - CRC sum complement: 1 = 1's complement for CRC_SUM 0 = No 1's complement for CRC_SUM
*/
#define CRC_MODE_CMPL_SUM(x) (((uint32_t)(((uint32_t)(x)) << CRC_MODE_CMPL_SUM_SHIFT)) & CRC_MODE_CMPL_SUM_MASK)
/*! @} */
/*! @name SEED - CRC seed register */
/*! @{ */
#define CRC_SEED_CRC_SEED_MASK (0xFFFFFFFFU)
#define CRC_SEED_CRC_SEED_SHIFT (0U)
/*! CRC_SEED - A write access to this register will load CRC seed value to CRC_SUM register with
* selected bit order and 1's complement pre-processes. A write access to this register will
* overrule the CRC calculation in progresses.
*/
#define CRC_SEED_CRC_SEED(x) (((uint32_t)(((uint32_t)(x)) << CRC_SEED_CRC_SEED_SHIFT)) & CRC_SEED_CRC_SEED_MASK)
/*! @} */
/*! @name SUM - CRC checksum register */
/*! @{ */
#define CRC_SUM_CRC_SUM_MASK (0xFFFFFFFFU)
#define CRC_SUM_CRC_SUM_SHIFT (0U)
/*! CRC_SUM - The most recent CRC sum can be read through this register with selected bit order and 1's complement post-processes.
*/
#define CRC_SUM_CRC_SUM(x) (((uint32_t)(((uint32_t)(x)) << CRC_SUM_CRC_SUM_SHIFT)) & CRC_SUM_CRC_SUM_MASK)
/*! @} */
/*! @name WR_DATA - CRC data register */
/*! @{ */
#define CRC_WR_DATA_CRC_WR_DATA_MASK (0xFFFFFFFFU)
#define CRC_WR_DATA_CRC_WR_DATA_SHIFT (0U)
/*! CRC_WR_DATA - Data written to this register will be taken to perform CRC calculation with
* selected bit order and 1's complement pre-process. Any write size 8, 16 or 32-bit are allowed and
* accept back-to-back transactions.
*/
#define CRC_WR_DATA_CRC_WR_DATA(x) (((uint32_t)(((uint32_t)(x)) << CRC_WR_DATA_CRC_WR_DATA_SHIFT)) & CRC_WR_DATA_CRC_WR_DATA_MASK)
/*! @} */
/*!
* @}
*/ /* end of group CRC_Register_Masks */
/* CRC - Peripheral instance base addresses */
/** Peripheral CRC base address */
#define CRC_BASE (0x50000000u)
/** Peripheral CRC base pointer */
#define CRC ((CRC_Type *)CRC_BASE)
/** Array initializer of CRC peripheral base addresses */
#define CRC_BASE_ADDRS { CRC_BASE }
/** Array initializer of CRC peripheral base pointers */
#define CRC_BASE_PTRS { CRC }
/*!
* @}
*/ /* end of group CRC_Peripheral_Access_Layer */
/* ----------------------------------------------------------------------------
-- CTIMER Peripheral Access Layer
---------------------------------------------------------------------------- */
/*!
* @addtogroup CTIMER_Peripheral_Access_Layer CTIMER Peripheral Access Layer
* @{
*/
/** CTIMER - Register Layout Typedef */
typedef struct {
__IO uint32_t IR; /**< Interrupt Register. The IR can be written to clear interrupts. The IR can be read to identify which of eight possible interrupt sources are pending., offset: 0x0 */
__IO uint32_t TCR; /**< Timer Control Register. The TCR is used to control the Timer Counter functions. The Timer Counter can be disabled or reset through the TCR., offset: 0x4 */
__IO uint32_t TC; /**< Timer Counter. The 32 bit TC is incremented every PR+1 cycles of the APB bus clock. The TC is controlled through the TCR., offset: 0x8 */
__IO uint32_t PR; /**< Prescale Register. When the Prescale Counter (PC) is equal to this value, the next clock increments the TC and clears the PC., offset: 0xC */
__IO uint32_t PC; /**< Prescale Counter. The 32 bit PC is a counter which is incremented to the value stored in PR. When the value in PR is reached, the TC is incremented and the PC is cleared. The PC is observable and controllable through the bus interface., offset: 0x10 */
__IO uint32_t MCR; /**< Match Control Register. The MCR is used to control if an interrupt is generated and if the TC is reset when a Match occurs., offset: 0x14 */
__IO uint32_t MR[4]; /**< Match Register . MR can be enabled through the MCR to reset the TC, stop both the TC and PC, and/or generate an interrupt every time MR matches the TC., array offset: 0x18, array step: 0x4 */
__IO uint32_t CCR; /**< Capture Control Register. The CCR controls which edges of the capture inputs are used to load the Capture Registers and whether or not an interrupt is generated when a capture takes place., offset: 0x28 */
__I uint32_t CR[3]; /**< Capture Register . CR is loaded with the value of TC when there is an event on the CAPn. input., array offset: 0x2C, array step: 0x4 */
uint8_t RESERVED_0[4];
__IO uint32_t EMR; /**< External Match Register. The EMR controls the match function and the external match pins., offset: 0x3C */
uint8_t RESERVED_1[48];
__IO uint32_t CTCR; /**< Count Control Register. The CTCR selects between Timer and Counter mode, and in Counter mode selects the signal and edge(s) for counting., offset: 0x70 */
__IO uint32_t PWMC; /**< PWM Control Register. The PWMCON enables PWM mode for the external match pins., offset: 0x74 */
__IO uint32_t MSR[4]; /**< Match Shadow Register . If enabled, the Match Register will be automatically reloaded with the contents of this register whenever the TC is reset to zero., array offset: 0x78, array step: 0x4 */
} CTIMER_Type;
/* ----------------------------------------------------------------------------
-- CTIMER Register Masks
---------------------------------------------------------------------------- */
/*!
* @addtogroup CTIMER_Register_Masks CTIMER Register Masks
* @{
*/
/*! @name IR - Interrupt Register. The IR can be written to clear interrupts. The IR can be read to identify which of eight possible interrupt sources are pending. */
/*! @{ */
#define CTIMER_IR_MR0INT_MASK (0x1U)
#define CTIMER_IR_MR0INT_SHIFT (0U)
/*! MR0INT - Interrupt flag for match channel 0.
*/
#define CTIMER_IR_MR0INT(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_IR_MR0INT_SHIFT)) & CTIMER_IR_MR0INT_MASK)
#define CTIMER_IR_MR1INT_MASK (0x2U)
#define CTIMER_IR_MR1INT_SHIFT (1U)
/*! MR1INT - Interrupt flag for match channel 1.
*/
#define CTIMER_IR_MR1INT(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_IR_MR1INT_SHIFT)) & CTIMER_IR_MR1INT_MASK)
#define CTIMER_IR_MR2INT_MASK (0x4U)
#define CTIMER_IR_MR2INT_SHIFT (2U)
/*! MR2INT - Interrupt flag for match channel 2.
*/
#define CTIMER_IR_MR2INT(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_IR_MR2INT_SHIFT)) & CTIMER_IR_MR2INT_MASK)
#define CTIMER_IR_MR3INT_MASK (0x8U)
#define CTIMER_IR_MR3INT_SHIFT (3U)
/*! MR3INT - Interrupt flag for match channel 3.
*/
#define CTIMER_IR_MR3INT(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_IR_MR3INT_SHIFT)) & CTIMER_IR_MR3INT_MASK)
#define CTIMER_IR_CR0INT_MASK (0x10U)
#define CTIMER_IR_CR0INT_SHIFT (4U)
/*! CR0INT - Interrupt flag for capture channel 0 event.
*/
#define CTIMER_IR_CR0INT(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_IR_CR0INT_SHIFT)) & CTIMER_IR_CR0INT_MASK)
#define CTIMER_IR_CR1INT_MASK (0x20U)
#define CTIMER_IR_CR1INT_SHIFT (5U)
/*! CR1INT - Interrupt flag for capture channel 1 event.
*/
#define CTIMER_IR_CR1INT(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_IR_CR1INT_SHIFT)) & CTIMER_IR_CR1INT_MASK)
#define CTIMER_IR_CR2INT_MASK (0x40U)
#define CTIMER_IR_CR2INT_SHIFT (6U)
/*! CR2INT - Interrupt flag for capture channel 2 event.
*/
#define CTIMER_IR_CR2INT(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_IR_CR2INT_SHIFT)) & CTIMER_IR_CR2INT_MASK)
/*! @} */
/*! @name TCR - Timer Control Register. The TCR is used to control the Timer Counter functions. The Timer Counter can be disabled or reset through the TCR. */
/*! @{ */
#define CTIMER_TCR_CEN_MASK (0x1U)
#define CTIMER_TCR_CEN_SHIFT (0U)
/*! CEN - Counter enable.
* 0b0..Disabled.The counters are disabled.
* 0b1..Enabled. The Timer Counter and Prescale Counter are enabled.
*/
#define CTIMER_TCR_CEN(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_TCR_CEN_SHIFT)) & CTIMER_TCR_CEN_MASK)
#define CTIMER_TCR_CRST_MASK (0x2U)
#define CTIMER_TCR_CRST_SHIFT (1U)
/*! CRST - Counter reset.
* 0b0..Disabled. Do nothing.
* 0b1..Enabled. The Timer Counter and the Prescale Counter are synchronously reset on the next positive edge of
* the APB bus clock. The counters remain reset until TCR[1] is returned to zero.
*/
#define CTIMER_TCR_CRST(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_TCR_CRST_SHIFT)) & CTIMER_TCR_CRST_MASK)
/*! @} */
/*! @name TC - Timer Counter. The 32 bit TC is incremented every PR+1 cycles of the APB bus clock. The TC is controlled through the TCR. */
/*! @{ */
#define CTIMER_TC_TCVAL_MASK (0xFFFFFFFFU)
#define CTIMER_TC_TCVAL_SHIFT (0U)
/*! TCVAL - Timer counter value.
*/
#define CTIMER_TC_TCVAL(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_TC_TCVAL_SHIFT)) & CTIMER_TC_TCVAL_MASK)
/*! @} */
/*! @name PR - Prescale Register. When the Prescale Counter (PC) is equal to this value, the next clock increments the TC and clears the PC. */
/*! @{ */
#define CTIMER_PR_PRVAL_MASK (0xFFFFFFFFU)
#define CTIMER_PR_PRVAL_SHIFT (0U)
/*! PRVAL - Prescale counter value.
*/
#define CTIMER_PR_PRVAL(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_PR_PRVAL_SHIFT)) & CTIMER_PR_PRVAL_MASK)
/*! @} */
/*! @name PC - Prescale Counter. The 32 bit PC is a counter which is incremented to the value stored in PR. When the value in PR is reached, the TC is incremented and the PC is cleared. The PC is observable and controllable through the bus interface. */
/*! @{ */
#define CTIMER_PC_PCVAL_MASK (0xFFFFFFFFU)
#define CTIMER_PC_PCVAL_SHIFT (0U)
/*! PCVAL - Prescale counter value.
*/
#define CTIMER_PC_PCVAL(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_PC_PCVAL_SHIFT)) & CTIMER_PC_PCVAL_MASK)
/*! @} */
/*! @name MCR - Match Control Register. The MCR is used to control if an interrupt is generated and if the TC is reset when a Match occurs. */
/*! @{ */
#define CTIMER_MCR_MR0I_MASK (0x1U)
#define CTIMER_MCR_MR0I_SHIFT (0U)
/*! MR0I - Interrupt on MR0: an interrupt is generated when MR0 matches the value in the TC. 0 = disabled. 1 = enabled.
*/
#define CTIMER_MCR_MR0I(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_MCR_MR0I_SHIFT)) & CTIMER_MCR_MR0I_MASK)
#define CTIMER_MCR_MR0R_MASK (0x2U)
#define CTIMER_MCR_MR0R_SHIFT (1U)
/*! MR0R - Reset on MR0: the TC will be reset if MR0 matches it. 0 = disabled. 1 = enabled.
*/
#define CTIMER_MCR_MR0R(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_MCR_MR0R_SHIFT)) & CTIMER_MCR_MR0R_MASK)
#define CTIMER_MCR_MR0S_MASK (0x4U)
#define CTIMER_MCR_MR0S_SHIFT (2U)
/*! MR0S - Stop on MR0: the TC and PC will be stopped and TCR[0] will be set to 0 if MR0 matches the TC. 0 = disabled. 1 = enabled.
*/
#define CTIMER_MCR_MR0S(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_MCR_MR0S_SHIFT)) & CTIMER_MCR_MR0S_MASK)
#define CTIMER_MCR_MR1I_MASK (0x8U)
#define CTIMER_MCR_MR1I_SHIFT (3U)
/*! MR1I - Interrupt on MR1: an interrupt is generated when MR1 matches the value in the TC. 0 =
* disabled. 1 = enabled. 0 = disabled. 1 = enabled.
*/
#define CTIMER_MCR_MR1I(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_MCR_MR1I_SHIFT)) & CTIMER_MCR_MR1I_MASK)
#define CTIMER_MCR_MR1R_MASK (0x10U)
#define CTIMER_MCR_MR1R_SHIFT (4U)
/*! MR1R - Reset on MR1: the TC will be reset if MR1 matches it. 0 = disabled. 1 = enabled.
*/
#define CTIMER_MCR_MR1R(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_MCR_MR1R_SHIFT)) & CTIMER_MCR_MR1R_MASK)
#define CTIMER_MCR_MR1S_MASK (0x20U)
#define CTIMER_MCR_MR1S_SHIFT (5U)
/*! MR1S - Stop on MR1: the TC and PC will be stopped and TCR[0] will be set to 0 if MR1 matches the TC. 0 = disabled. 1 = enabled.
*/
#define CTIMER_MCR_MR1S(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_MCR_MR1S_SHIFT)) & CTIMER_MCR_MR1S_MASK)
#define CTIMER_MCR_MR2I_MASK (0x40U)
#define CTIMER_MCR_MR2I_SHIFT (6U)
/*! MR2I - Interrupt on MR2: an interrupt is generated when MR2 matches the value in the TC. 0 = disabled. 1 = enabled.
*/
#define CTIMER_MCR_MR2I(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_MCR_MR2I_SHIFT)) & CTIMER_MCR_MR2I_MASK)
#define CTIMER_MCR_MR2R_MASK (0x80U)
#define CTIMER_MCR_MR2R_SHIFT (7U)
/*! MR2R - Reset on MR2: the TC will be reset if MR2 matches it. 0 = disabled. 1 = enabled.
*/
#define CTIMER_MCR_MR2R(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_MCR_MR2R_SHIFT)) & CTIMER_MCR_MR2R_MASK)
#define CTIMER_MCR_MR2S_MASK (0x100U)
#define CTIMER_MCR_MR2S_SHIFT (8U)
/*! MR2S - Stop on MR2: the TC and PC will be stopped and TCR[0] will be set to 0 if MR2 matches the TC. 0 = disabled. 1 = enabled.
*/
#define CTIMER_MCR_MR2S(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_MCR_MR2S_SHIFT)) & CTIMER_MCR_MR2S_MASK)
#define CTIMER_MCR_MR3I_MASK (0x200U)
#define CTIMER_MCR_MR3I_SHIFT (9U)
/*! MR3I - Interrupt on MR3: an interrupt is generated when MR3 matches the value in the TC. 0 = disabled. 1 = enabled.
*/
#define CTIMER_MCR_MR3I(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_MCR_MR3I_SHIFT)) & CTIMER_MCR_MR3I_MASK)
#define CTIMER_MCR_MR3R_MASK (0x400U)
#define CTIMER_MCR_MR3R_SHIFT (10U)
/*! MR3R - Reset on MR3: the TC will be reset if MR3 matches it. 0 = disabled. 1 = enabled.
*/
#define CTIMER_MCR_MR3R(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_MCR_MR3R_SHIFT)) & CTIMER_MCR_MR3R_MASK)
#define CTIMER_MCR_MR3S_MASK (0x800U)
#define CTIMER_MCR_MR3S_SHIFT (11U)
/*! MR3S - Stop on MR3: the TC and PC will be stopped and TCR[0] will be set to 0 if MR3 matches the TC. 0 = disabled. 1 = enabled.
*/
#define CTIMER_MCR_MR3S(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_MCR_MR3S_SHIFT)) & CTIMER_MCR_MR3S_MASK)
#define CTIMER_MCR_MR0RL_MASK (0x1000000U)
#define CTIMER_MCR_MR0RL_SHIFT (24U)
/*! MR0RL - Reload MR0 with the contents of the Match 0 Shadow Register when the TC is reset to zero
* (either via a match event or a write to bit 1 of the TCR). 0 = disabled. 1 = enabled.
*/
#define CTIMER_MCR_MR0RL(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_MCR_MR0RL_SHIFT)) & CTIMER_MCR_MR0RL_MASK)
#define CTIMER_MCR_MR1RL_MASK (0x2000000U)
#define CTIMER_MCR_MR1RL_SHIFT (25U)
/*! MR1RL - Reload MR1 with the contents of the Match 1 Shadow Register when the TC is reset to zero
* (either via a match event or a write to bit 1 of the TCR). 0 = disabled. 1 = enabled.
*/
#define CTIMER_MCR_MR1RL(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_MCR_MR1RL_SHIFT)) & CTIMER_MCR_MR1RL_MASK)
#define CTIMER_MCR_MR2RL_MASK (0x4000000U)
#define CTIMER_MCR_MR2RL_SHIFT (26U)
/*! MR2RL - Reload MR2 with the contents of the Match 2 Shadow Register when the TC is reset to zero
* (either via a match event or a write to bit 1 of the TCR). 0 = disabled. 1 = enabled.
*/
#define CTIMER_MCR_MR2RL(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_MCR_MR2RL_SHIFT)) & CTIMER_MCR_MR2RL_MASK)
#define CTIMER_MCR_MR3RL_MASK (0x8000000U)
#define CTIMER_MCR_MR3RL_SHIFT (27U)
/*! MR3RL - Reload MR3 with the contents of the Match 3 Shadow Register when the TC is reset to zero
* (either via a match event or a write to bit 1 of the TCR). 0 = disabled. 1 = enabled.
*/
#define CTIMER_MCR_MR3RL(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_MCR_MR3RL_SHIFT)) & CTIMER_MCR_MR3RL_MASK)
/*! @} */
/*! @name MR - Match Register . MR can be enabled through the MCR to reset the TC, stop both the TC and PC, and/or generate an interrupt every time MR matches the TC. */
/*! @{ */
#define CTIMER_MR_MATCH_MASK (0xFFFFFFFFU)
#define CTIMER_MR_MATCH_SHIFT (0U)
/*! MATCH - Timer counter match value.
*/
#define CTIMER_MR_MATCH(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_MR_MATCH_SHIFT)) & CTIMER_MR_MATCH_MASK)
/*! @} */
/* The count of CTIMER_MR */
#define CTIMER_MR_COUNT (4U)
/*! @name CCR - Capture Control Register. The CCR controls which edges of the capture inputs are used to load the Capture Registers and whether or not an interrupt is generated when a capture takes place. */
/*! @{ */
#define CTIMER_CCR_CAP0RE_MASK (0x1U)
#define CTIMER_CCR_CAP0RE_SHIFT (0U)
/*! CAP0RE - Rising edge of capture channel 0: a sequence of 0 then 1 causes CR0 to be loaded with
* the contents of TC. 0 = disabled. 1 = enabled.
*/
#define CTIMER_CCR_CAP0RE(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_CCR_CAP0RE_SHIFT)) & CTIMER_CCR_CAP0RE_MASK)
#define CTIMER_CCR_CAP0FE_MASK (0x2U)
#define CTIMER_CCR_CAP0FE_SHIFT (1U)
/*! CAP0FE - Falling edge of capture channel 0: a sequence of 1 then 0 causes CR0 to be loaded with
* the contents of TC. 0 = disabled. 1 = enabled.
*/
#define CTIMER_CCR_CAP0FE(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_CCR_CAP0FE_SHIFT)) & CTIMER_CCR_CAP0FE_MASK)
#define CTIMER_CCR_CAP0I_MASK (0x4U)
#define CTIMER_CCR_CAP0I_SHIFT (2U)
/*! CAP0I - Generate interrupt on channel 0 capture event: a CR0 load generates an interrupt.
*/
#define CTIMER_CCR_CAP0I(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_CCR_CAP0I_SHIFT)) & CTIMER_CCR_CAP0I_MASK)
#define CTIMER_CCR_CAP1RE_MASK (0x8U)
#define CTIMER_CCR_CAP1RE_SHIFT (3U)
/*! CAP1RE - Rising edge of capture channel 1: a sequence of 0 then 1 causes CR1 to be loaded with
* the contents of TC. 0 = disabled. 1 = enabled.
*/
#define CTIMER_CCR_CAP1RE(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_CCR_CAP1RE_SHIFT)) & CTIMER_CCR_CAP1RE_MASK)
#define CTIMER_CCR_CAP1FE_MASK (0x10U)
#define CTIMER_CCR_CAP1FE_SHIFT (4U)
/*! CAP1FE - Falling edge of capture channel 1: a sequence of 1 then 0 causes CR1 to be loaded with
* the contents of TC. 0 = disabled. 1 = enabled.
*/
#define CTIMER_CCR_CAP1FE(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_CCR_CAP1FE_SHIFT)) & CTIMER_CCR_CAP1FE_MASK)
#define CTIMER_CCR_CAP1I_MASK (0x20U)
#define CTIMER_CCR_CAP1I_SHIFT (5U)
/*! CAP1I - Generate interrupt on channel 1 capture event: a CR1 load generates an interrupt.
*/
#define CTIMER_CCR_CAP1I(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_CCR_CAP1I_SHIFT)) & CTIMER_CCR_CAP1I_MASK)
#define CTIMER_CCR_CAP2RE_MASK (0x40U)
#define CTIMER_CCR_CAP2RE_SHIFT (6U)
/*! CAP2RE - Rising edge of capture channel 2: a sequence of 0 then 1 causes CR2 to be loaded with
* the contents of TC. 0 = disabled. 1 = enabled.
*/
#define CTIMER_CCR_CAP2RE(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_CCR_CAP2RE_SHIFT)) & CTIMER_CCR_CAP2RE_MASK)
#define CTIMER_CCR_CAP2FE_MASK (0x80U)
#define CTIMER_CCR_CAP2FE_SHIFT (7U)
/*! CAP2FE - Falling edge of capture channel 2: a sequence of 1 then 0 causes CR2 to be loaded with
* the contents of TC. 0 = disabled. 1 = enabled.
*/
#define CTIMER_CCR_CAP2FE(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_CCR_CAP2FE_SHIFT)) & CTIMER_CCR_CAP2FE_MASK)
#define CTIMER_CCR_CAP2I_MASK (0x100U)
#define CTIMER_CCR_CAP2I_SHIFT (8U)
/*! CAP2I - Generate interrupt on channel 2 capture event: a CR2 load generates an interrupt.
*/
#define CTIMER_CCR_CAP2I(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_CCR_CAP2I_SHIFT)) & CTIMER_CCR_CAP2I_MASK)
/*! @} */
/*! @name CR - Capture Register . CR is loaded with the value of TC when there is an event on the CAPn. input. */
/*! @{ */
#define CTIMER_CR_CAP_MASK (0xFFFFFFFFU)
#define CTIMER_CR_CAP_SHIFT (0U)
/*! CAP - Timer counter capture value.
*/
#define CTIMER_CR_CAP(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_CR_CAP_SHIFT)) & CTIMER_CR_CAP_MASK)
/*! @} */
/* The count of CTIMER_CR */
#define CTIMER_CR_COUNT (3U)
/*! @name EMR - External Match Register. The EMR controls the match function and the external match pins. */
/*! @{ */
#define CTIMER_EMR_EM0_MASK (0x1U)
#define CTIMER_EMR_EM0_SHIFT (0U)
/*! EM0 - External Match 0. This bit reflects the state of output MAT0, whether or not this output
* is connected to a pin. When a match occurs between the TC and MR0, this bit can either toggle,
* go LOW, go HIGH, or do nothing, as selected by EMR[5:4]. This bit is driven to the MAT pins if
* the match function is selected via IOCON. 0 = LOW. 1 = HIGH.
*/
#define CTIMER_EMR_EM0(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_EMR_EM0_SHIFT)) & CTIMER_EMR_EM0_MASK)
#define CTIMER_EMR_EM1_MASK (0x2U)
#define CTIMER_EMR_EM1_SHIFT (1U)
/*! EM1 - External Match 1. This bit reflects the state of output MAT1, whether or not this output
* is connected to a pin. When a match occurs between the TC and MR1, this bit can either toggle,
* go LOW, go HIGH, or do nothing, as selected by EMR[7:6]. This bit is driven to the MAT pins if
* the match function is selected via IOCON. 0 = LOW. 1 = HIGH.
*/
#define CTIMER_EMR_EM1(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_EMR_EM1_SHIFT)) & CTIMER_EMR_EM1_MASK)
#define CTIMER_EMR_EM2_MASK (0x4U)
#define CTIMER_EMR_EM2_SHIFT (2U)
/*! EM2 - External Match 2. This bit reflects the state of output MAT2, whether or not this output
* is connected to a pin. When a match occurs between the TC and MR2, this bit can either toggle,
* go LOW, go HIGH, or do nothing, as selected by EMR[9:8]. This bit is driven to the MAT pins if
* the match function is selected via IOCON. 0 = LOW. 1 = HIGH.
*/
#define CTIMER_EMR_EM2(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_EMR_EM2_SHIFT)) & CTIMER_EMR_EM2_MASK)
#define CTIMER_EMR_EM3_MASK (0x8U)
#define CTIMER_EMR_EM3_SHIFT (3U)
/*! EM3 - External Match 3. This bit reflects the state of output MAT3, whether or not this output
* is connected to a pin. When a match occurs between the TC and MR3, this bit can either toggle,
* go LOW, go HIGH, or do nothing, as selected by MR[11:10]. This bit is driven to the MAT pins
* if the match function is selected via IOCON. 0 = LOW. 1 = HIGH.
*/
#define CTIMER_EMR_EM3(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_EMR_EM3_SHIFT)) & CTIMER_EMR_EM3_MASK)
#define CTIMER_EMR_EMC0_MASK (0x30U)
#define CTIMER_EMR_EMC0_SHIFT (4U)
/*! EMC0 - External Match Control 0. Determines the functionality of External Match 0.
* 0b00..Do Nothing.
* 0b01..Clear. Clear the corresponding External Match bit/output to 0 (MAT0 pin is LOW if pinned out).
* 0b10..Set. Set the corresponding External Match bit/output to 1 (MAT0 pin is HIGH if pinned out).
* 0b11..Toggle. Toggle the corresponding External Match bit/output.
*/
#define CTIMER_EMR_EMC0(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_EMR_EMC0_SHIFT)) & CTIMER_EMR_EMC0_MASK)
#define CTIMER_EMR_EMC1_MASK (0xC0U)
#define CTIMER_EMR_EMC1_SHIFT (6U)
/*! EMC1 - External Match Control 1. Determines the functionality of External Match 1.
* 0b00..Do Nothing.
* 0b01..Clear. Clear the corresponding External Match bit/output to 0 (MAT1 pin is LOW if pinned out).
* 0b10..Set. Set the corresponding External Match bit/output to 1 (MAT1 pin is HIGH if pinned out).
* 0b11..Toggle. Toggle the corresponding External Match bit/output.
*/
#define CTIMER_EMR_EMC1(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_EMR_EMC1_SHIFT)) & CTIMER_EMR_EMC1_MASK)
#define CTIMER_EMR_EMC2_MASK (0x300U)
#define CTIMER_EMR_EMC2_SHIFT (8U)
/*! EMC2 - External Match Control 2. Determines the functionality of External Match 2.
* 0b00..Do Nothing.
* 0b01..Clear. Clear the corresponding External Match bit/output to 0 (MAT2 pin is LOW if pinned out).
* 0b10..Set. Set the corresponding External Match bit/output to 1 (MAT2 pin is HIGH if pinned out).
* 0b11..Toggle. Toggle the corresponding External Match bit/output.
*/
#define CTIMER_EMR_EMC2(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_EMR_EMC2_SHIFT)) & CTIMER_EMR_EMC2_MASK)
#define CTIMER_EMR_EMC3_MASK (0xC00U)
#define CTIMER_EMR_EMC3_SHIFT (10U)
/*! EMC3 - External Match Control 3. Determines the functionality of External Match 3.
* 0b00..Do Nothing.
* 0b01..Clear. Clear the corresponding External Match bit/output to 0 (MAT3 pin is LOW if pinned out).
* 0b10..Set. Set the corresponding External Match bit/output to 1 (MAT3 pin is HIGH if pinned out).
* 0b11..Toggle. Toggle the corresponding External Match bit/output.
*/
#define CTIMER_EMR_EMC3(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_EMR_EMC3_SHIFT)) & CTIMER_EMR_EMC3_MASK)
/*! @} */
/*! @name CTCR - Count Control Register. The CTCR selects between Timer and Counter mode, and in Counter mode selects the signal and edge(s) for counting. */
/*! @{ */
#define CTIMER_CTCR_CTMODE_MASK (0x3U)
#define CTIMER_CTCR_CTMODE_SHIFT (0U)
/*! CTMODE - Counter/Timer Mode This field selects which rising APB bus clock edges can increment
* Timer's Prescale Counter (PC), or clear PC and increment Timer Counter (TC). Timer Mode: the TC
* is incremented when the Prescale Counter matches the Prescale Register.
* 0b00..Timer Mode. Incremented every rising APB bus clock edge.
* 0b01..Counter Mode rising edge. TC is incremented on rising edges on the CAP input selected by bits 3:2.
* 0b10..Counter Mode falling edge. TC is incremented on falling edges on the CAP input selected by bits 3:2.
* 0b11..Counter Mode dual edge. TC is incremented on both edges on the CAP input selected by bits 3:2.
*/
#define CTIMER_CTCR_CTMODE(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_CTCR_CTMODE_SHIFT)) & CTIMER_CTCR_CTMODE_MASK)
#define CTIMER_CTCR_CINSEL_MASK (0xCU)
#define CTIMER_CTCR_CINSEL_SHIFT (2U)
/*! CINSEL - Count Input Select When bits 1:0 in this register are not 00, these bits select which
* CAP pin is sampled for clocking. Note: If Counter mode is selected for a particular CAPn input
* in the CTCR, the 3 bits for that input in the Capture Control Register (CCR) must be
* programmed as 000. However, capture and/or interrupt can be selected for the other 3 CAPn inputs in the
* same timer.
* 0b00..Channel 0. CAPn.0 for CTIMERn
* 0b01..Channel 1. CAPn.1 for CTIMERn
* 0b10..Channel 2. CAPn.2 for CTIMERn
* 0b11..Channel 3. CAPn.3 for CTIMERn
*/
#define CTIMER_CTCR_CINSEL(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_CTCR_CINSEL_SHIFT)) & CTIMER_CTCR_CINSEL_MASK)
#define CTIMER_CTCR_ENCC_MASK (0x10U)
#define CTIMER_CTCR_ENCC_SHIFT (4U)
/*! ENCC - Setting this bit to 1 enables clearing of the timer and the prescaler when the
* capture-edge event specified in bits 7:5 occurs.
*/
#define CTIMER_CTCR_ENCC(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_CTCR_ENCC_SHIFT)) & CTIMER_CTCR_ENCC_MASK)
#define CTIMER_CTCR_SELCC_MASK (0xE0U)
#define CTIMER_CTCR_SELCC_SHIFT (5U)
/*! SELCC - Edge select. When bit 4 is 1, these bits select which capture input edge will cause the
* timer and prescaler to be cleared. These bits have no effect when bit 4 is low. Values 0x2 to
* 0x3 and 0x6 to 0x7 are reserved.
* 0b000..Channel 0 Rising Edge. Rising edge of the signal on capture channel 0 clears the timer (if bit 4 is set).
* 0b001..Channel 0 Falling Edge. Falling edge of the signal on capture channel 0 clears the timer (if bit 4 is set).
* 0b010..Channel 1 Rising Edge. Rising edge of the signal on capture channel 1 clears the timer (if bit 4 is set).
* 0b011..Channel 1 Falling Edge. Falling edge of the signal on capture channel 1 clears the timer (if bit 4 is set).
* 0b100..Channel 2 Rising Edge. Rising edge of the signal on capture channel 2 clears the timer (if bit 4 is set).
* 0b101..Channel 2 Falling Edge. Falling edge of the signal on capture channel 2 clears the timer (if bit 4 is set).
*/
#define CTIMER_CTCR_SELCC(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_CTCR_SELCC_SHIFT)) & CTIMER_CTCR_SELCC_MASK)
/*! @} */
/*! @name PWMC - PWM Control Register. The PWMCON enables PWM mode for the external match pins. */
/*! @{ */
#define CTIMER_PWMC_PWMEN0_MASK (0x1U)
#define CTIMER_PWMC_PWMEN0_SHIFT (0U)
/*! PWMEN0 - PWM mode enable for channel0.
* 0b0..Match. CTIMERn_MAT0 is controlled by EM0.
* 0b1..PWM. PWM mode is enabled for CTIMERn_MAT0.
*/
#define CTIMER_PWMC_PWMEN0(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_PWMC_PWMEN0_SHIFT)) & CTIMER_PWMC_PWMEN0_MASK)
#define CTIMER_PWMC_PWMEN1_MASK (0x2U)
#define CTIMER_PWMC_PWMEN1_SHIFT (1U)
/*! PWMEN1 - PWM mode enable for channel1.
* 0b0..Match. CTIMERn_MAT01 is controlled by EM1.
* 0b1..PWM. PWM mode is enabled for CTIMERn_MAT1.
*/
#define CTIMER_PWMC_PWMEN1(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_PWMC_PWMEN1_SHIFT)) & CTIMER_PWMC_PWMEN1_MASK)
#define CTIMER_PWMC_PWMEN2_MASK (0x4U)
#define CTIMER_PWMC_PWMEN2_SHIFT (2U)
/*! PWMEN2 - PWM mode enable for channel2.
* 0b0..Match. CTIMERn_MAT2 is controlled by EM2.
* 0b1..PWM. PWM mode is enabled for CTIMERn_MAT2.
*/
#define CTIMER_PWMC_PWMEN2(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_PWMC_PWMEN2_SHIFT)) & CTIMER_PWMC_PWMEN2_MASK)
#define CTIMER_PWMC_PWMEN3_MASK (0x8U)
#define CTIMER_PWMC_PWMEN3_SHIFT (3U)
/*! PWMEN3 - PWM mode enable for channel3. Note: It is recommended to use match channel 3 to set the PWM cycle.
* 0b0..Match. CTIMERn_MAT3 is controlled by EM3.
* 0b1..PWM. PWM mode is enabled for CT132Bn_MAT3.
*/
#define CTIMER_PWMC_PWMEN3(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_PWMC_PWMEN3_SHIFT)) & CTIMER_PWMC_PWMEN3_MASK)
/*! @} */
/*! @name MSR - Match Shadow Register . If enabled, the Match Register will be automatically reloaded with the contents of this register whenever the TC is reset to zero. */
/*! @{ */
#define CTIMER_MSR_MATCH_Shadow_MASK (0xFFFFFFFFU)
#define CTIMER_MSR_MATCH_Shadow_SHIFT (0U)
/*! MATCH_Shadow - Timer counter match value.
*/
#define CTIMER_MSR_MATCH_Shadow(x) (((uint32_t)(((uint32_t)(x)) << CTIMER_MSR_MATCH_Shadow_SHIFT)) & CTIMER_MSR_MATCH_Shadow_MASK)
/*! @} */
/* The count of CTIMER_MSR */
#define CTIMER_MSR_COUNT (4U)
/*!
* @}
*/ /* end of group CTIMER_Register_Masks */
/* CTIMER - Peripheral instance base addresses */
/** Peripheral CTIMER0 base address */
#define CTIMER0_BASE (0x40038000u)
/** Peripheral CTIMER0 base pointer */
#define CTIMER0 ((CTIMER_Type *)CTIMER0_BASE)
/** Array initializer of CTIMER peripheral base addresses */
#define CTIMER_BASE_ADDRS { CTIMER0_BASE }
/** Array initializer of CTIMER peripheral base pointers */
#define CTIMER_BASE_PTRS { CTIMER0 }
/** Interrupt vectors for the CTIMER peripheral type */
#define CTIMER_IRQS { CTIMER0_IRQn }
/*!
* @}
*/ /* end of group CTIMER_Peripheral_Access_Layer */
/* ----------------------------------------------------------------------------
-- DAC Peripheral Access Layer
---------------------------------------------------------------------------- */
/*!
* @addtogroup DAC_Peripheral_Access_Layer DAC Peripheral Access Layer
* @{
*/
/** DAC - Register Layout Typedef */
typedef struct {
__IO uint32_t CR; /**< D/A Converter Register. This register contains the digital value to be converted to analog and a power control bit., offset: 0x0 */
__IO uint32_t CTRL; /**< DAC Control register. This register controls DMA and timer operation., offset: 0x4 */
__IO uint32_t CNTVAL; /**< DAC Counter Value register. This register contains the reload value for the DAC DMA/Interrupt timer., offset: 0x8 */
} DAC_Type;
/* ----------------------------------------------------------------------------
-- DAC Register Masks
---------------------------------------------------------------------------- */
/*!
* @addtogroup DAC_Register_Masks DAC Register Masks
* @{
*/
/*! @name CR - D/A Converter Register. This register contains the digital value to be converted to analog and a power control bit. */
/*! @{ */
#define DAC_CR_VALUE_MASK (0xFFC0U)
#define DAC_CR_VALUE_SHIFT (6U)
/*! VALUE - After the selected settling time after this field is written with a new VALUE, the
* voltage on the DAC_OUT pin (with respect to VSSA) is VALUE (VREFP - VREFN)/1024 + VREFN.
*/
#define DAC_CR_VALUE(x) (((uint32_t)(((uint32_t)(x)) << DAC_CR_VALUE_SHIFT)) & DAC_CR_VALUE_MASK)
#define DAC_CR_BIAS_MASK (0x10000U)
#define DAC_CR_BIAS_SHIFT (16U)
/*! BIAS - The settling time of the DAC
* 0b0..The settling time of the DAC is 1 us max, and the maximum current is 700 uA. This allows a maximum update rate of 1 MHz.
* 0b1..The settling time of the DAC is 2.5 us and the maximum current is 350 uA. This allows a maximum update rate of 400 kHz.
*/
#define DAC_CR_BIAS(x) (((uint32_t)(((uint32_t)(x)) << DAC_CR_BIAS_SHIFT)) & DAC_CR_BIAS_MASK)
/*! @} */
/*! @name CTRL - DAC Control register. This register controls DMA and timer operation. */
/*! @{ */
#define DAC_CTRL_INT_CPU_REQ_MASK (0x1U)
#define DAC_CTRL_INT_CPU_REQ_SHIFT (0U)
/*! INT_CPU_REQ - Interrupt request to CPU. This interrupt request is handled by the CPU.
* 0b0..Clear on any write to the CR register.
* 0b1..Set by hardware when the timer times out.
*/
#define DAC_CTRL_INT_CPU_REQ(x) (((uint32_t)(((uint32_t)(x)) << DAC_CTRL_INT_CPU_REQ_SHIFT)) & DAC_CTRL_INT_CPU_REQ_MASK)
#define DAC_CTRL_DBLBUF_ENA_MASK (0x2U)
#define DAC_CTRL_DBLBUF_ENA_SHIFT (1U)
/*! DBLBUF_ENA - dacr double buffer
* 0b0..DACR double-buffering is disabled.
* 0b1..When this bit and the CNT_ENA bit are both set, the double-buffering feature in the DACR register will be
* enabled. Writes to the DACR register are written to a pre-buffer and then transferred to the DACR on the
* next time-out of the counter.
*/
#define DAC_CTRL_DBLBUF_ENA(x) (((uint32_t)(((uint32_t)(x)) << DAC_CTRL_DBLBUF_ENA_SHIFT)) & DAC_CTRL_DBLBUF_ENA_MASK)
#define DAC_CTRL_CNT_ENA_MASK (0x4U)
#define DAC_CTRL_CNT_ENA_SHIFT (2U)
/*! CNT_ENA - time-out counter operation
* 0b0..Time-out counter operation is disabled.
* 0b1..Time-out counter operation is enabled.
*/
#define DAC_CTRL_CNT_ENA(x) (((uint32_t)(((uint32_t)(x)) << DAC_CTRL_CNT_ENA_SHIFT)) & DAC_CTRL_CNT_ENA_MASK)
/*! @} */
/*! @name CNTVAL - DAC Counter Value register. This register contains the reload value for the DAC DMA/Interrupt timer. */
/*! @{ */
#define DAC_CNTVAL_VALUE_MASK (0xFFFFU)
#define DAC_CNTVAL_VALUE_SHIFT (0U)
/*! VALUE - 16-bit reload value for the DAC interrupt/DMA timer.
*/
#define DAC_CNTVAL_VALUE(x) (((uint32_t)(((uint32_t)(x)) << DAC_CNTVAL_VALUE_SHIFT)) & DAC_CNTVAL_VALUE_MASK)
/*! @} */
/*!
* @}
*/ /* end of group DAC_Register_Masks */
/* DAC - Peripheral instance base addresses */
/** Peripheral DAC0 base address */
#define DAC0_BASE (0x40014000u)
/** Peripheral DAC0 base pointer */
#define DAC0 ((DAC_Type *)DAC0_BASE)
/** Array initializer of DAC peripheral base addresses */
#define DAC_BASE_ADDRS { DAC0_BASE }
/** Array initializer of DAC peripheral base pointers */
#define DAC_BASE_PTRS { DAC0 }
/*!
* @}
*/ /* end of group DAC_Peripheral_Access_Layer */
/* ----------------------------------------------------------------------------
-- GPIO Peripheral Access Layer
---------------------------------------------------------------------------- */
/*!
* @addtogroup GPIO_Peripheral_Access_Layer GPIO Peripheral Access Layer
* @{
*/
/** GPIO - Register Layout Typedef */
typedef struct {
__IO uint8_t B[1][31]; /**< Byte pin registers for all port 0 and 1 GPIO pins, array offset: 0x0, array step: index*0x1F, index2*0x1 */
uint8_t RESERVED_0[4065];
__IO uint32_t W[1][31]; /**< Word pin registers for all port 0 and 1 GPIO pins, array offset: 0x1000, array step: index*0x7C, index2*0x4 */
uint8_t RESERVED_1[3972];
__IO uint32_t DIR[1]; /**< Direction registers, array offset: 0x2000, array step: 0x4 */
uint8_t RESERVED_2[124];
__IO uint32_t MASK[1]; /**< Mask register, array offset: 0x2080, array step: 0x4 */
uint8_t RESERVED_3[124];
__IO uint32_t PIN[1]; /**< Port pin register, array offset: 0x2100, array step: 0x4 */
uint8_t RESERVED_4[124];
__IO uint32_t MPIN[1]; /**< Masked port register, array offset: 0x2180, array step: 0x4 */
uint8_t RESERVED_5[124];
__IO uint32_t SET[1]; /**< Write: Set register for port Read: output bits for port, array offset: 0x2200, array step: 0x4 */
uint8_t RESERVED_6[124];
__O uint32_t CLR[1]; /**< Clear port, array offset: 0x2280, array step: 0x4 */
uint8_t RESERVED_7[124];
__O uint32_t NOT[1]; /**< Toggle port, array offset: 0x2300, array step: 0x4 */
uint8_t RESERVED_8[124];
__O uint32_t DIRSET[1]; /**< Set pin direction bits for port, array offset: 0x2380, array step: 0x4 */
uint8_t RESERVED_9[124];
__O uint32_t DIRCLR[1]; /**< Clear pin direction bits for port, array offset: 0x2400, array step: 0x4 */
uint8_t RESERVED_10[124];
__O uint32_t DIRNOT[1]; /**< Toggle pin direction bits for port, array offset: 0x2480, array step: 0x4 */
} GPIO_Type;
/* ----------------------------------------------------------------------------
-- GPIO Register Masks
---------------------------------------------------------------------------- */
/*!
* @addtogroup GPIO_Register_Masks GPIO Register Masks
* @{
*/
/*! @name B - Byte pin registers for all port 0 and 1 GPIO pins */
/*! @{ */
#define GPIO_B_PBYTE_MASK (0x1U)
#define GPIO_B_PBYTE_SHIFT (0U)
/*! PBYTE - Read: state of the pin PIOm_n, regardless of direction, masking, or alternate function,
* except that pins configured as analog I/O always read as 0. One register for each port pin.
* Supported pins depends on the specific device and package. Write: loads the pin's output bit.
* One register for each port pin. Supported pins depends on the specific device and package.
*/
#define GPIO_B_PBYTE(x) (((uint8_t)(((uint8_t)(x)) << GPIO_B_PBYTE_SHIFT)) & GPIO_B_PBYTE_MASK)
/*! @} */
/* The count of GPIO_B */
#define GPIO_B_COUNT (1U)
/* The count of GPIO_B */
#define GPIO_B_COUNT2 (31U)
/*! @name W - Word pin registers for all port 0 and 1 GPIO pins */
/*! @{ */
#define GPIO_W_PWORD_MASK (0xFFFFFFFFU)
#define GPIO_W_PWORD_SHIFT (0U)
/*! PWORD - Read 0: pin PIOm_n is LOW. Write 0: clear output bit. Read 0xFFFF FFFF: pin PIOm_n is
* HIGH. Write any value 0x0000 0001 to 0xFFFF FFFF: set output bit. Only 0 or 0xFFFF FFFF can be
* read. Writing any value other than 0 will set the output bit. One register for each port pin.
* Supported pins depends on the specific device and package.
*/
#define GPIO_W_PWORD(x) (((uint32_t)(((uint32_t)(x)) << GPIO_W_PWORD_SHIFT)) & GPIO_W_PWORD_MASK)
/*! @} */
/* The count of GPIO_W */
#define GPIO_W_COUNT (1U)
/* The count of GPIO_W */
#define GPIO_W_COUNT2 (31U)
/*! @name DIR - Direction registers */
/*! @{ */
#define GPIO_DIR_DIRP_MASK (0x7FFFFFFFU)
#define GPIO_DIR_DIRP_SHIFT (0U)
/*! DIRP - Selects pin direction for pin PIOm_n (bit 0 = PIOn_0, bit 1 = PIOn_1, etc.). Supported
* pins depends on the specific device and package. 0 = input. 1 = output.
*/
#define GPIO_DIR_DIRP(x) (((uint32_t)(((uint32_t)(x)) << GPIO_DIR_DIRP_SHIFT)) & GPIO_DIR_DIRP_MASK)
/*! @} */
/* The count of GPIO_DIR */
#define GPIO_DIR_COUNT (1U)
/*! @name MASK - Mask register */
/*! @{ */
#define GPIO_MASK_MASKP_MASK (0x7FFFFFFFU)
#define GPIO_MASK_MASKP_SHIFT (0U)
/*! MASKP - Controls which bits corresponding to PIOm_n are active in the MPORT register (bit 0 =
* PIOn_0, bit 1 = PIOn_1, etc.). Supported pins depends on the specific device and package. 0 =
* Read MPORT: pin state; write MPORT: load output bit. 1 = Read MPORT: 0; write MPORT: output bit
* not affected.
*/
#define GPIO_MASK_MASKP(x) (((uint32_t)(((uint32_t)(x)) << GPIO_MASK_MASKP_SHIFT)) & GPIO_MASK_MASKP_MASK)
/*! @} */
/* The count of GPIO_MASK */
#define GPIO_MASK_COUNT (1U)
/*! @name PIN - Port pin register */
/*! @{ */
#define GPIO_PIN_PORT_MASK (0x7FFFFFFFU)
#define GPIO_PIN_PORT_SHIFT (0U)
/*! PORT - Reads pin states or loads output bits (bit 0 = PIOn_0, bit 1 = PIOn_1, etc.). Supported
* pins depends on the specific device and package. 0 = Read: pin is low; write: clear output bit.
* 1 = Read: pin is high; write: set output bit.
*/
#define GPIO_PIN_PORT(x) (((uint32_t)(((uint32_t)(x)) << GPIO_PIN_PORT_SHIFT)) & GPIO_PIN_PORT_MASK)
/*! @} */
/* The count of GPIO_PIN */
#define GPIO_PIN_COUNT (1U)
/*! @name MPIN - Masked port register */
/*! @{ */
#define GPIO_MPIN_MPORTP_MASK (0x7FFFFFFFU)
#define GPIO_MPIN_MPORTP_SHIFT (0U)
/*! MPORTP - Masked port register (bit 0 = PIOn_0, bit 1 = PIOn_1, etc.). Supported pins depends on
* the specific device and package. 0 = Read: pin is LOW and/or the corresponding bit in the MASK
* register is 1; write: clear output bit if the corresponding bit in the MASK register is 0. 1
* = Read: pin is HIGH and the corresponding bit in the MASK register is 0; write: set output bit
* if the corresponding bit in the MASK register is 0.
*/
#define GPIO_MPIN_MPORTP(x) (((uint32_t)(((uint32_t)(x)) << GPIO_MPIN_MPORTP_SHIFT)) & GPIO_MPIN_MPORTP_MASK)
/*! @} */
/* The count of GPIO_MPIN */
#define GPIO_MPIN_COUNT (1U)
/*! @name SET - Write: Set register for port Read: output bits for port */
/*! @{ */
#define GPIO_SET_SETP_MASK (0x7FFFFFFFU)
#define GPIO_SET_SETP_SHIFT (0U)
/*! SETP - Read or set output bits (bit 0 = PIOn_0, bit 1 = PIOn_1, etc.). Supported pins depends on
* the specific device and package. 0 = Read: output bit: write: no operation. 1 = Read: output
* bit; write: set output bit.
*/
#define GPIO_SET_SETP(x) (((uint32_t)(((uint32_t)(x)) << GPIO_SET_SETP_SHIFT)) & GPIO_SET_SETP_MASK)
/*! @} */
/* The count of GPIO_SET */
#define GPIO_SET_COUNT (1U)
/*! @name CLR - Clear port */
/*! @{ */
#define GPIO_CLR_CLRP_MASK (0x7FFFFFFFU)
#define GPIO_CLR_CLRP_SHIFT (0U)
/*! CLRP - Clear output bits (bit 0 = PIOn_0, bit 1 = PIOn_1, etc.). Supported pins depends on the
* specific device and package. 0 = No operation. 1 = Clear output bit.
*/
#define GPIO_CLR_CLRP(x) (((uint32_t)(((uint32_t)(x)) << GPIO_CLR_CLRP_SHIFT)) & GPIO_CLR_CLRP_MASK)
/*! @} */
/* The count of GPIO_CLR */
#define GPIO_CLR_COUNT (1U)
/*! @name NOT - Toggle port */
/*! @{ */
#define GPIO_NOT_NOTP_MASK (0x7FFFFFFFU)
#define GPIO_NOT_NOTP_SHIFT (0U)
/*! NOTP - Toggle output bits (bit 0 = PIOn_0, bit 1 = PIOn_1, etc.). Supported pins depends on the
* specific device and package. 0 = no operation. 1 = Toggle output bit.
*/
#define GPIO_NOT_NOTP(x) (((uint32_t)(((uint32_t)(x)) << GPIO_NOT_NOTP_SHIFT)) & GPIO_NOT_NOTP_MASK)
/*! @} */
/* The count of GPIO_NOT */
#define GPIO_NOT_COUNT (1U)
/*! @name DIRSET - Set pin direction bits for port */
/*! @{ */
#define GPIO_DIRSET_DIRSETP_MASK (0x7FFFFFFFU)
#define GPIO_DIRSET_DIRSETP_SHIFT (0U)
/*! DIRSETP - Set direction bits (bit 0 = PIOn_0, bit 1 = PIOn_1, etc.). Supported pins depends on
* the specific device and package. 0 = No operation. 1 = Set direction bit.
*/
#define GPIO_DIRSET_DIRSETP(x) (((uint32_t)(((uint32_t)(x)) << GPIO_DIRSET_DIRSETP_SHIFT)) & GPIO_DIRSET_DIRSETP_MASK)
/*! @} */
/* The count of GPIO_DIRSET */
#define GPIO_DIRSET_COUNT (1U)
/*! @name DIRCLR - Clear pin direction bits for port */
/*! @{ */
#define GPIO_DIRCLR_DIRCLRP_MASK (0x7FFFFFFFU)
#define GPIO_DIRCLR_DIRCLRP_SHIFT (0U)
/*! DIRCLRP - Clear direction bits (bit 0 = PIOn_0, bit 1 = PIOn_1, etc.). Supported pins depends on
* the specific device and package. 0 = No operation. 1 = Clear direction bit.
*/
#define GPIO_DIRCLR_DIRCLRP(x) (((uint32_t)(((uint32_t)(x)) << GPIO_DIRCLR_DIRCLRP_SHIFT)) & GPIO_DIRCLR_DIRCLRP_MASK)
/*! @} */
/* The count of GPIO_DIRCLR */
#define GPIO_DIRCLR_COUNT (1U)
/*! @name DIRNOT - Toggle pin direction bits for port */
/*! @{ */
#define GPIO_DIRNOT_DIRNOTP_MASK (0x7FFFFFFFU)
#define GPIO_DIRNOT_DIRNOTP_SHIFT (0U)
/*! DIRNOTP - Toggle direction bits (bit 0 = PIOn_0, bit 1 = PIOn_1, etc.). Supported pins depends
* on the specific device and package. 0 = no operation. 1 = Toggle direction bit.
*/
#define GPIO_DIRNOT_DIRNOTP(x) (((uint32_t)(((uint32_t)(x)) << GPIO_DIRNOT_DIRNOTP_SHIFT)) & GPIO_DIRNOT_DIRNOTP_MASK)
/*! @} */
/* The count of GPIO_DIRNOT */
#define GPIO_DIRNOT_COUNT (1U)
/*!
* @}
*/ /* end of group GPIO_Register_Masks */
/* GPIO - Peripheral instance base addresses */
/** Peripheral GPIO base address */
#define GPIO_BASE (0xA0000000u)
/** Peripheral GPIO base pointer */
#define GPIO ((GPIO_Type *)GPIO_BASE)
/** Array initializer of GPIO peripheral base addresses */
#define GPIO_BASE_ADDRS { GPIO_BASE }
/** Array initializer of GPIO peripheral base pointers */
#define GPIO_BASE_PTRS { GPIO }
/*!
* @}
*/ /* end of group GPIO_Peripheral_Access_Layer */
/* ----------------------------------------------------------------------------
-- I2C Peripheral Access Layer
---------------------------------------------------------------------------- */
/*!
* @addtogroup I2C_Peripheral_Access_Layer I2C Peripheral Access Layer
* @{
*/
/** I2C - Register Layout Typedef */
typedef struct {
__IO uint32_t CFG; /**< Configuration for shared functions., offset: 0x0 */
__IO uint32_t STAT; /**< Status register for Master, Slave, and Monitor functions., offset: 0x4 */
__IO uint32_t INTENSET; /**< Interrupt Enable Set and read register., offset: 0x8 */
__O uint32_t INTENCLR; /**< Interrupt Enable Clear register., offset: 0xC */
__IO uint32_t TIMEOUT; /**< Time-out value register., offset: 0x10 */
__IO uint32_t CLKDIV; /**< Clock pre-divider for the entire I2C interface. This determines what time increments are used for the MSTTIME register, and controls some timing of the Slave function., offset: 0x14 */
__I uint32_t INTSTAT; /**< Interrupt Status register for Master, Slave, and Monitor functions., offset: 0x18 */
uint8_t RESERVED_0[4];
__IO uint32_t MSTCTL; /**< Master control register., offset: 0x20 */
__IO uint32_t MSTTIME; /**< Master timing configuration., offset: 0x24 */
__IO uint32_t MSTDAT; /**< Combined Master receiver and transmitter data register., offset: 0x28 */
uint8_t RESERVED_1[20];
__IO uint32_t SLVCTL; /**< Slave control register., offset: 0x40 */
__IO uint32_t SLVDAT; /**< Combined Slave receiver and transmitter data register., offset: 0x44 */
__IO uint32_t SLVADR[4]; /**< Slave address register., array offset: 0x48, array step: 0x4 */
__IO uint32_t SLVQUAL0; /**< Slave Qualification for address 0., offset: 0x58 */
uint8_t RESERVED_2[36];
__I uint32_t MONRXDAT; /**< Monitor receiver data register., offset: 0x80 */
} I2C_Type;
/* ----------------------------------------------------------------------------
-- I2C Register Masks
---------------------------------------------------------------------------- */
/*!
* @addtogroup I2C_Register_Masks I2C Register Masks
* @{
*/
/*! @name CFG - Configuration for shared functions. */
/*! @{ */
#define I2C_CFG_MSTEN_MASK (0x1U)
#define I2C_CFG_MSTEN_SHIFT (0U)
/*! MSTEN - Master Enable. When disabled, configurations settings for the Master function are not
* changed, but the Master function is internally reset.
* 0b0..Disabled. The I2C Master function is disabled.
* 0b1..Enabled. The I2C Master function is enabled.
*/
#define I2C_CFG_MSTEN(x) (((uint32_t)(((uint32_t)(x)) << I2C_CFG_MSTEN_SHIFT)) & I2C_CFG_MSTEN_MASK)
#define I2C_CFG_SLVEN_MASK (0x2U)
#define I2C_CFG_SLVEN_SHIFT (1U)
/*! SLVEN - Slave Enable. When disabled, configurations settings for the Slave function are not
* changed, but the Slave function is internally reset.
* 0b0..Disabled. The I2C slave function is disabled.
* 0b1..Enabled. The I2C slave function is enabled.
*/
#define I2C_CFG_SLVEN(x) (((uint32_t)(((uint32_t)(x)) << I2C_CFG_SLVEN_SHIFT)) & I2C_CFG_SLVEN_MASK)
#define I2C_CFG_MONEN_MASK (0x4U)
#define I2C_CFG_MONEN_SHIFT (2U)
/*! MONEN - Monitor Enable. When disabled, configurations settings for the Monitor function are not
* changed, but the Monitor function is internally reset.
* 0b0..Disabled. The I2C Monitor function is disabled.
* 0b1..Enabled. The I2C Monitor function is enabled.
*/
#define I2C_CFG_MONEN(x) (((uint32_t)(((uint32_t)(x)) << I2C_CFG_MONEN_SHIFT)) & I2C_CFG_MONEN_MASK)
#define I2C_CFG_TIMEOUTEN_MASK (0x8U)
#define I2C_CFG_TIMEOUTEN_SHIFT (3U)
/*! TIMEOUTEN - I2C bus Time-out Enable. When disabled, the time-out function is internally reset.
* 0b0..Disabled. Time-out function is disabled.
* 0b1..Enabled. Time-out function is enabled. Both types of time-out flags will be generated and will cause
* interrupts if they are enabled. Typically, only one time-out will be used in a system.
*/
#define I2C_CFG_TIMEOUTEN(x) (((uint32_t)(((uint32_t)(x)) << I2C_CFG_TIMEOUTEN_SHIFT)) & I2C_CFG_TIMEOUTEN_MASK)
#define I2C_CFG_MONCLKSTR_MASK (0x10U)
#define I2C_CFG_MONCLKSTR_SHIFT (4U)
/*! MONCLKSTR - Monitor function Clock Stretching.
* 0b0..Disabled. The Monitor function will not perform clock stretching. Software or DMA may not always be able
* to read data provided by the Monitor function before it is overwritten. This mode may be used when
* non-invasive monitoring is critical.
* 0b1..Enabled. The Monitor function will perform clock stretching in order to ensure that software or DMA can
* read all incoming data supplied by the Monitor function.
*/
#define I2C_CFG_MONCLKSTR(x) (((uint32_t)(((uint32_t)(x)) << I2C_CFG_MONCLKSTR_SHIFT)) & I2C_CFG_MONCLKSTR_MASK)
/*! @} */
/*! @name STAT - Status register for Master, Slave, and Monitor functions. */
/*! @{ */
#define I2C_STAT_MSTPENDING_MASK (0x1U)
#define I2C_STAT_MSTPENDING_SHIFT (0U)
/*! MSTPENDING - Master Pending. Indicates that the Master is waiting to continue communication on
* the I2C-bus (pending) or is idle. When the master is pending, the MSTSTATE bits indicate what
* type of software service if any the master expects. This flag will cause an interrupt when set
* if, enabled via the INTENSET register. The MSTPENDING flag is not set when the DMA is handling
* an event (if the MSTDMA bit in the MSTCTL register is set). If the master is in the idle
* state, and no communication is needed, mask this interrupt.
* 0b0..In progress. Communication is in progress and the Master function is busy and cannot currently accept a command.
* 0b1..Pending. The Master function needs software service or is in the idle state. If the master is not in the
* idle state, it is waiting to receive or transmit data or the NACK bit.
*/
#define I2C_STAT_MSTPENDING(x) (((uint32_t)(((uint32_t)(x)) << I2C_STAT_MSTPENDING_SHIFT)) & I2C_STAT_MSTPENDING_MASK)
#define I2C_STAT_MSTSTATE_MASK (0xEU)
#define I2C_STAT_MSTSTATE_SHIFT (1U)
/*! MSTSTATE - Master State code. The master state code reflects the master state when the
* MSTPENDING bit is set, that is the master is pending or in the idle state. Each value of this field
* indicates a specific required service for the Master function. All other values are reserved. See
* Table 400 for details of state values and appropriate responses.
* 0b000..Idle. The Master function is available to be used for a new transaction.
* 0b001..Receive ready. Received data available (Master Receiver mode). Address plus Read was previously sent and Acknowledged by slave.
* 0b010..Transmit ready. Data can be transmitted (Master Transmitter mode). Address plus Write was previously sent and Acknowledged by slave.
* 0b011..NACK Address. Slave NACKed address.
* 0b100..NACK Data. Slave NACKed transmitted data.
*/
#define I2C_STAT_MSTSTATE(x) (((uint32_t)(((uint32_t)(x)) << I2C_STAT_MSTSTATE_SHIFT)) & I2C_STAT_MSTSTATE_MASK)
#define I2C_STAT_MSTARBLOSS_MASK (0x10U)
#define I2C_STAT_MSTARBLOSS_SHIFT (4U)
/*! MSTARBLOSS - Master Arbitration Loss flag. This flag can be cleared by software writing a 1 to
* this bit. It is also cleared automatically a 1 is written to MSTCONTINUE.
* 0b0..No Arbitration Loss has occurred.
* 0b1..Arbitration loss. The Master function has experienced an Arbitration Loss. At this point, the Master
* function has already stopped driving the bus and gone to an idle state. Software can respond by doing nothing,
* or by sending a Start in order to attempt to gain control of the bus when it next becomes idle.
*/
#define I2C_STAT_MSTARBLOSS(x) (((uint32_t)(((uint32_t)(x)) << I2C_STAT_MSTARBLOSS_SHIFT)) & I2C_STAT_MSTARBLOSS_MASK)
#define I2C_STAT_MSTSTSTPERR_MASK (0x40U)
#define I2C_STAT_MSTSTSTPERR_SHIFT (6U)
/*! MSTSTSTPERR - Master Start/Stop Error flag. This flag can be cleared by software writing a 1 to
* this bit. It is also cleared automatically a 1 is written to MSTCONTINUE.
* 0b0..No Start/Stop Error has occurred.
* 0b1..The Master function has experienced a Start/Stop Error. A Start or Stop was detected at a time when it is
* not allowed by the I2C specification. The Master interface has stopped driving the bus and gone to an
* idle state, no action is required. A request for a Start could be made, or software could attempt to insure
* that the bus has not stalled.
*/
#define I2C_STAT_MSTSTSTPERR(x) (((uint32_t)(((uint32_t)(x)) << I2C_STAT_MSTSTSTPERR_SHIFT)) & I2C_STAT_MSTSTSTPERR_MASK)
#define I2C_STAT_SLVPENDING_MASK (0x100U)
#define I2C_STAT_SLVPENDING_SHIFT (8U)
/*! SLVPENDING - Slave Pending. Indicates that the Slave function is waiting to continue
* communication on the I2C-bus and needs software service. This flag will cause an interrupt when set if
* enabled via INTENSET. The SLVPENDING flag is not set when the DMA is handling an event (if the
* SLVDMA bit in the SLVCTL register is set). The SLVPENDING flag is read-only and is
* automatically cleared when a 1 is written to the SLVCONTINUE bit in the SLVCTL register. The point in time
* when SlvPending is set depends on whether the I2C interface is in HSCAPABLE mode. See Section
* 25.7.2.2.2. When the I2C interface is configured to be HSCAPABLE, HS master codes are
* detected automatically. Due to the requirements of the HS I2C specification, slave addresses must
* also be detected automatically, since the address must be acknowledged before the clock can be
* stretched.
* 0b0..In progress. The Slave function does not currently need service.
* 0b1..Pending. The Slave function needs service. Information on what is needed can be found in the adjacent SLVSTATE field.
*/
#define I2C_STAT_SLVPENDING(x) (((uint32_t)(((uint32_t)(x)) << I2C_STAT_SLVPENDING_SHIFT)) & I2C_STAT_SLVPENDING_MASK)
#define I2C_STAT_SLVSTATE_MASK (0x600U)
#define I2C_STAT_SLVSTATE_SHIFT (9U)
/*! SLVSTATE - Slave State code. Each value of this field indicates a specific required service for
* the Slave function. All other values are reserved. See Table 401 for state values and actions.
* note that the occurrence of some states and how they are handled are affected by DMA mode and
* Automatic Operation modes.
* 0b00..Slave address. Address plus R/W received. At least one of the four slave addresses has been matched by hardware.
* 0b01..Slave receive. Received data is available (Slave Receiver mode).
* 0b10..Slave transmit. Data can be transmitted (Slave Transmitter mode).
*/
#define I2C_STAT_SLVSTATE(x) (((uint32_t)(((uint32_t)(x)) << I2C_STAT_SLVSTATE_SHIFT)) & I2C_STAT_SLVSTATE_MASK)
#define I2C_STAT_SLVNOTSTR_MASK (0x800U)
#define I2C_STAT_SLVNOTSTR_SHIFT (11U)
/*! SLVNOTSTR - Slave Not Stretching. Indicates when the slave function is stretching the I2C clock.
* This is needed in order to gracefully invoke Deep Sleep or Power-down modes during slave
* operation. This read-only flag reflects the slave function status in real time.
* 0b0..Stretching. The slave function is currently stretching the I2C bus clock. Deep-Sleep or Power-down mode cannot be entered at this time.
* 0b1..Not stretching. The slave function is not currently stretching the I 2C bus clock. Deep-sleep or
* Power-down mode could be entered at this time.
*/
#define I2C_STAT_SLVNOTSTR(x) (((uint32_t)(((uint32_t)(x)) << I2C_STAT_SLVNOTSTR_SHIFT)) & I2C_STAT_SLVNOTSTR_MASK)
#define I2C_STAT_SLVIDX_MASK (0x3000U)
#define I2C_STAT_SLVIDX_SHIFT (12U)
/*! SLVIDX - Slave address match Index. This field is valid when the I2C slave function has been
* selected by receiving an address that matches one of the slave addresses defined by any enabled
* slave address registers, and provides an identification of the address that was matched. It is
* possible that more than one address could be matched, but only one match can be reported here.
* 0b00..Address 0. Slave address 0 was matched.
* 0b01..Address 1. Slave address 1 was matched.
* 0b10..Address 2. Slave address 2 was matched.
* 0b11..Address 3. Slave address 3 was matched.
*/
#define I2C_STAT_SLVIDX(x) (((uint32_t)(((uint32_t)(x)) << I2C_STAT_SLVIDX_SHIFT)) & I2C_STAT_SLVIDX_MASK)
#define I2C_STAT_SLVSEL_MASK (0x4000U)
#define I2C_STAT_SLVSEL_SHIFT (14U)
/*! SLVSEL - Slave selected flag. SLVSEL is set after an address match when software tells the Slave
* function to acknowledge the address, or when the address has been automatically acknowledged.
* It is cleared when another address cycle presents an address that does not match an enabled
* address on the Slave function, when slave software decides to NACK a matched address, when
* there is a Stop detected on the bus, when the master NACKs slave data, and in some combinations of
* Automatic Operation. SLVSEL is not cleared if software NACKs data.
* 0b0..Not selected. The Slave function is not currently selected.
* 0b1..Selected. The Slave function is currently selected.
*/
#define I2C_STAT_SLVSEL(x) (((uint32_t)(((uint32_t)(x)) << I2C_STAT_SLVSEL_SHIFT)) & I2C_STAT_SLVSEL_MASK)
#define I2C_STAT_SLVDESEL_MASK (0x8000U)
#define I2C_STAT_SLVDESEL_SHIFT (15U)
/*! SLVDESEL - Slave Deselected flag. This flag will cause an interrupt when set if enabled via
* INTENSET. This flag can be cleared by writing a 1 to this bit.
* 0b0..Not deselected. The Slave function has not become deselected. This does not mean that it is currently
* selected. That information can be found in the SLVSEL flag.
* 0b1..Deselected. The Slave function has become deselected. This is specifically caused by the SLVSEL flag
* changing from 1 to 0. See the description of SLVSEL for details on when that event occurs.
*/
#define I2C_STAT_SLVDESEL(x) (((uint32_t)(((uint32_t)(x)) << I2C_STAT_SLVDESEL_SHIFT)) & I2C_STAT_SLVDESEL_MASK)
#define I2C_STAT_MONRDY_MASK (0x10000U)
#define I2C_STAT_MONRDY_SHIFT (16U)
/*! MONRDY - Monitor Ready. This flag is cleared when the MONRXDAT register is read.
* 0b0..No data. The Monitor function does not currently have data available.
* 0b1..Data waiting. The Monitor function has data waiting to be read.
*/
#define I2C_STAT_MONRDY(x) (((uint32_t)(((uint32_t)(x)) << I2C_STAT_MONRDY_SHIFT)) & I2C_STAT_MONRDY_MASK)
#define I2C_STAT_MONOV_MASK (0x20000U)
#define I2C_STAT_MONOV_SHIFT (17U)
/*! MONOV - Monitor Overflow flag.
* 0b0..No overrun. Monitor data has not overrun.
* 0b1..Overrun. A Monitor data overrun has occurred. This can only happen when Monitor clock stretching not
* enabled via the MONCLKSTR bit in the CFG register. Writing 1 to this bit clears the flag.
*/
#define I2C_STAT_MONOV(x) (((uint32_t)(((uint32_t)(x)) << I2C_STAT_MONOV_SHIFT)) & I2C_STAT_MONOV_MASK)
#define I2C_STAT_MONACTIVE_MASK (0x40000U)
#define I2C_STAT_MONACTIVE_SHIFT (18U)
/*! MONACTIVE - Monitor Active flag. Indicates when the Monitor function considers the I 2C bus to
* be active. Active is defined here as when some Master is on the bus: a bus Start has occurred
* more recently than a bus Stop.
* 0b0..Inactive. The Monitor function considers the I2C bus to be inactive.
* 0b1..Active. The Monitor function considers the I2C bus to be active.
*/
#define I2C_STAT_MONACTIVE(x) (((uint32_t)(((uint32_t)(x)) << I2C_STAT_MONACTIVE_SHIFT)) & I2C_STAT_MONACTIVE_MASK)
#define I2C_STAT_MONIDLE_MASK (0x80000U)
#define I2C_STAT_MONIDLE_SHIFT (19U)
/*! MONIDLE - Monitor Idle flag. This flag is set when the Monitor function sees the I2C bus change
* from active to inactive. This can be used by software to decide when to process data
* accumulated by the Monitor function. This flag will cause an interrupt when set if enabled via the
* INTENSET register. The flag can be cleared by writing a 1 to this bit.
* 0b0..Not idle. The I2C bus is not idle, or this flag has been cleared by software.
* 0b1..Idle. The I2C bus has gone idle at least once since the last time this flag was cleared by software.
*/
#define I2C_STAT_MONIDLE(x) (((uint32_t)(((uint32_t)(x)) << I2C_STAT_MONIDLE_SHIFT)) & I2C_STAT_MONIDLE_MASK)
#define I2C_STAT_EVENTTIMEOUT_MASK (0x1000000U)
#define I2C_STAT_EVENTTIMEOUT_SHIFT (24U)
/*! EVENTTIMEOUT - Event Time-out Interrupt flag. Indicates when the time between events has been
* longer than the time specified by the TIMEOUT register. Events include Start, Stop, and clock
* edges. The flag is cleared by writing a 1 to this bit. No time-out is created when the I2C-bus
* is idle.
* 0b0..No time-out. I2C bus events have not caused a time-out.
* 0b1..Event time-out. The time between I2C bus events has been longer than the time specified by the TIMEOUT register.
*/
#define I2C_STAT_EVENTTIMEOUT(x) (((uint32_t)(((uint32_t)(x)) << I2C_STAT_EVENTTIMEOUT_SHIFT)) & I2C_STAT_EVENTTIMEOUT_MASK)
#define I2C_STAT_SCLTIMEOUT_MASK (0x2000000U)
#define I2C_STAT_SCLTIMEOUT_SHIFT (25U)
/*! SCLTIMEOUT - SCL Time-out Interrupt flag. Indicates when SCL has remained low longer than the
* time specific by the TIMEOUT register. The flag is cleared by writing a 1 to this bit.
* 0b0..No time-out. SCL low time has not caused a time-out.
* 0b1..Time-out. SCL low time has caused a time-out.
*/
#define I2C_STAT_SCLTIMEOUT(x) (((uint32_t)(((uint32_t)(x)) << I2C_STAT_SCLTIMEOUT_SHIFT)) & I2C_STAT_SCLTIMEOUT_MASK)
/*! @} */
/*! @name INTENSET - Interrupt Enable Set and read register. */
/*! @{ */
#define I2C_INTENSET_MSTPENDINGEN_MASK (0x1U)
#define I2C_INTENSET_MSTPENDINGEN_SHIFT (0U)
/*! MSTPENDINGEN - Master Pending interrupt Enable.
* 0b0..Disabled. The MstPending interrupt is disabled.
* 0b1..Enabled. The MstPending interrupt is enabled.
*/
#define I2C_INTENSET_MSTPENDINGEN(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTENSET_MSTPENDINGEN_SHIFT)) & I2C_INTENSET_MSTPENDINGEN_MASK)
#define I2C_INTENSET_MSTARBLOSSEN_MASK (0x10U)
#define I2C_INTENSET_MSTARBLOSSEN_SHIFT (4U)
/*! MSTARBLOSSEN - Master Arbitration Loss interrupt Enable.
* 0b0..Disabled. The MstArbLoss interrupt is disabled.
* 0b1..Enabled. The MstArbLoss interrupt is enabled.
*/
#define I2C_INTENSET_MSTARBLOSSEN(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTENSET_MSTARBLOSSEN_SHIFT)) & I2C_INTENSET_MSTARBLOSSEN_MASK)
#define I2C_INTENSET_MSTSTSTPERREN_MASK (0x40U)
#define I2C_INTENSET_MSTSTSTPERREN_SHIFT (6U)
/*! MSTSTSTPERREN - Master Start/Stop Error interrupt Enable.
* 0b0..Disabled. The MstStStpErr interrupt is disabled.
* 0b1..Enabled. The MstStStpErr interrupt is enabled.
*/
#define I2C_INTENSET_MSTSTSTPERREN(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTENSET_MSTSTSTPERREN_SHIFT)) & I2C_INTENSET_MSTSTSTPERREN_MASK)
#define I2C_INTENSET_SLVPENDINGEN_MASK (0x100U)
#define I2C_INTENSET_SLVPENDINGEN_SHIFT (8U)
/*! SLVPENDINGEN - Slave Pending interrupt Enable.
* 0b0..Disabled. The SlvPending interrupt is disabled.
* 0b1..Enabled. The SlvPending interrupt is enabled.
*/
#define I2C_INTENSET_SLVPENDINGEN(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTENSET_SLVPENDINGEN_SHIFT)) & I2C_INTENSET_SLVPENDINGEN_MASK)
#define I2C_INTENSET_SLVNOTSTREN_MASK (0x800U)
#define I2C_INTENSET_SLVNOTSTREN_SHIFT (11U)
/*! SLVNOTSTREN - Slave Not Stretching interrupt Enable.
* 0b0..Disabled. The SlvNotStr interrupt is disabled.
* 0b1..Enabled. The SlvNotStr interrupt is enabled.
*/
#define I2C_INTENSET_SLVNOTSTREN(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTENSET_SLVNOTSTREN_SHIFT)) & I2C_INTENSET_SLVNOTSTREN_MASK)
#define I2C_INTENSET_SLVDESELEN_MASK (0x8000U)
#define I2C_INTENSET_SLVDESELEN_SHIFT (15U)
/*! SLVDESELEN - Slave Deselect interrupt Enable.
* 0b0..Disabled. The SlvDeSel interrupt is disabled.
* 0b1..Enabled. The SlvDeSel interrupt is enabled.
*/
#define I2C_INTENSET_SLVDESELEN(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTENSET_SLVDESELEN_SHIFT)) & I2C_INTENSET_SLVDESELEN_MASK)
#define I2C_INTENSET_MONRDYEN_MASK (0x10000U)
#define I2C_INTENSET_MONRDYEN_SHIFT (16U)
/*! MONRDYEN - Monitor data Ready interrupt Enable.
* 0b0..Disabled. The MonRdy interrupt is disabled.
* 0b1..Enabled. The MonRdy interrupt is enabled.
*/
#define I2C_INTENSET_MONRDYEN(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTENSET_MONRDYEN_SHIFT)) & I2C_INTENSET_MONRDYEN_MASK)
#define I2C_INTENSET_MONOVEN_MASK (0x20000U)
#define I2C_INTENSET_MONOVEN_SHIFT (17U)
/*! MONOVEN - Monitor Overrun interrupt Enable.
* 0b0..Disabled. The MonOv interrupt is disabled.
* 0b1..Enabled. The MonOv interrupt is enabled.
*/
#define I2C_INTENSET_MONOVEN(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTENSET_MONOVEN_SHIFT)) & I2C_INTENSET_MONOVEN_MASK)
#define I2C_INTENSET_MONIDLEEN_MASK (0x80000U)
#define I2C_INTENSET_MONIDLEEN_SHIFT (19U)
/*! MONIDLEEN - Monitor Idle interrupt Enable.
* 0b0..Disabled. The MonIdle interrupt is disabled.
* 0b1..Enabled. The MonIdle interrupt is enabled.
*/
#define I2C_INTENSET_MONIDLEEN(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTENSET_MONIDLEEN_SHIFT)) & I2C_INTENSET_MONIDLEEN_MASK)
#define I2C_INTENSET_EVENTTIMEOUTEN_MASK (0x1000000U)
#define I2C_INTENSET_EVENTTIMEOUTEN_SHIFT (24U)
/*! EVENTTIMEOUTEN - Event time-out interrupt Enable.
* 0b0..Disabled. The Event time-out interrupt is disabled.
* 0b1..Enabled. The Event time-out interrupt is enabled.
*/
#define I2C_INTENSET_EVENTTIMEOUTEN(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTENSET_EVENTTIMEOUTEN_SHIFT)) & I2C_INTENSET_EVENTTIMEOUTEN_MASK)
#define I2C_INTENSET_SCLTIMEOUTEN_MASK (0x2000000U)
#define I2C_INTENSET_SCLTIMEOUTEN_SHIFT (25U)
/*! SCLTIMEOUTEN - SCL time-out interrupt Enable.
* 0b0..Disabled. The SCL time-out interrupt is disabled.
* 0b1..Enabled. The SCL time-out interrupt is enabled.
*/
#define I2C_INTENSET_SCLTIMEOUTEN(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTENSET_SCLTIMEOUTEN_SHIFT)) & I2C_INTENSET_SCLTIMEOUTEN_MASK)
/*! @} */
/*! @name INTENCLR - Interrupt Enable Clear register. */
/*! @{ */
#define I2C_INTENCLR_MSTPENDINGCLR_MASK (0x1U)
#define I2C_INTENCLR_MSTPENDINGCLR_SHIFT (0U)
/*! MSTPENDINGCLR - Master Pending interrupt clear. Writing 1 to this bit clears the corresponding
* bit in the INTENSET register if implemented.
*/
#define I2C_INTENCLR_MSTPENDINGCLR(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTENCLR_MSTPENDINGCLR_SHIFT)) & I2C_INTENCLR_MSTPENDINGCLR_MASK)
#define I2C_INTENCLR_MSTARBLOSSCLR_MASK (0x10U)
#define I2C_INTENCLR_MSTARBLOSSCLR_SHIFT (4U)
/*! MSTARBLOSSCLR - Master Arbitration Loss interrupt clear.
*/
#define I2C_INTENCLR_MSTARBLOSSCLR(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTENCLR_MSTARBLOSSCLR_SHIFT)) & I2C_INTENCLR_MSTARBLOSSCLR_MASK)
#define I2C_INTENCLR_MSTSTSTPERRCLR_MASK (0x40U)
#define I2C_INTENCLR_MSTSTSTPERRCLR_SHIFT (6U)
/*! MSTSTSTPERRCLR - Master Start/Stop Error interrupt clear.
*/
#define I2C_INTENCLR_MSTSTSTPERRCLR(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTENCLR_MSTSTSTPERRCLR_SHIFT)) & I2C_INTENCLR_MSTSTSTPERRCLR_MASK)
#define I2C_INTENCLR_SLVPENDINGCLR_MASK (0x100U)
#define I2C_INTENCLR_SLVPENDINGCLR_SHIFT (8U)
/*! SLVPENDINGCLR - Slave Pending interrupt clear.
*/
#define I2C_INTENCLR_SLVPENDINGCLR(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTENCLR_SLVPENDINGCLR_SHIFT)) & I2C_INTENCLR_SLVPENDINGCLR_MASK)
#define I2C_INTENCLR_SLVNOTSTRCLR_MASK (0x800U)
#define I2C_INTENCLR_SLVNOTSTRCLR_SHIFT (11U)
/*! SLVNOTSTRCLR - Slave Not Stretching interrupt clear.
*/
#define I2C_INTENCLR_SLVNOTSTRCLR(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTENCLR_SLVNOTSTRCLR_SHIFT)) & I2C_INTENCLR_SLVNOTSTRCLR_MASK)
#define I2C_INTENCLR_SLVDESELCLR_MASK (0x8000U)
#define I2C_INTENCLR_SLVDESELCLR_SHIFT (15U)
/*! SLVDESELCLR - Slave Deselect interrupt clear.
*/
#define I2C_INTENCLR_SLVDESELCLR(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTENCLR_SLVDESELCLR_SHIFT)) & I2C_INTENCLR_SLVDESELCLR_MASK)
#define I2C_INTENCLR_MONRDYCLR_MASK (0x10000U)
#define I2C_INTENCLR_MONRDYCLR_SHIFT (16U)
/*! MONRDYCLR - Monitor data Ready interrupt clear.
*/
#define I2C_INTENCLR_MONRDYCLR(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTENCLR_MONRDYCLR_SHIFT)) & I2C_INTENCLR_MONRDYCLR_MASK)
#define I2C_INTENCLR_MONOVCLR_MASK (0x20000U)
#define I2C_INTENCLR_MONOVCLR_SHIFT (17U)
/*! MONOVCLR - Monitor Overrun interrupt clear.
*/
#define I2C_INTENCLR_MONOVCLR(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTENCLR_MONOVCLR_SHIFT)) & I2C_INTENCLR_MONOVCLR_MASK)
#define I2C_INTENCLR_MONIDLECLR_MASK (0x80000U)
#define I2C_INTENCLR_MONIDLECLR_SHIFT (19U)
/*! MONIDLECLR - Monitor Idle interrupt clear.
*/
#define I2C_INTENCLR_MONIDLECLR(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTENCLR_MONIDLECLR_SHIFT)) & I2C_INTENCLR_MONIDLECLR_MASK)
#define I2C_INTENCLR_EVENTTIMEOUTCLR_MASK (0x1000000U)
#define I2C_INTENCLR_EVENTTIMEOUTCLR_SHIFT (24U)
/*! EVENTTIMEOUTCLR - Event time-out interrupt clear.
*/
#define I2C_INTENCLR_EVENTTIMEOUTCLR(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTENCLR_EVENTTIMEOUTCLR_SHIFT)) & I2C_INTENCLR_EVENTTIMEOUTCLR_MASK)
#define I2C_INTENCLR_SCLTIMEOUTCLR_MASK (0x2000000U)
#define I2C_INTENCLR_SCLTIMEOUTCLR_SHIFT (25U)
/*! SCLTIMEOUTCLR - SCL time-out interrupt clear.
*/
#define I2C_INTENCLR_SCLTIMEOUTCLR(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTENCLR_SCLTIMEOUTCLR_SHIFT)) & I2C_INTENCLR_SCLTIMEOUTCLR_MASK)
/*! @} */
/*! @name TIMEOUT - Time-out value register. */
/*! @{ */
#define I2C_TIMEOUT_TOMIN_MASK (0xFU)
#define I2C_TIMEOUT_TOMIN_SHIFT (0U)
/*! TOMIN - Time-out time value, bottom four bits. These are hard-wired to 0xF. This gives a minimum
* time-out of 16 I2C function clocks and also a time-out resolution of 16 I2C function clocks.
*/
#define I2C_TIMEOUT_TOMIN(x) (((uint32_t)(((uint32_t)(x)) << I2C_TIMEOUT_TOMIN_SHIFT)) & I2C_TIMEOUT_TOMIN_MASK)
#define I2C_TIMEOUT_TO_MASK (0xFFF0U)
#define I2C_TIMEOUT_TO_SHIFT (4U)
/*! TO - Time-out time value. Specifies the time-out interval value in increments of 16 I 2C
* function clocks, as defined by the CLKDIV register. To change this value while I2C is in operation,
* disable all time-outs, write a new value to TIMEOUT, then re-enable time-outs. 0x000 = A
* time-out will occur after 16 counts of the I2C function clock. 0x001 = A time-out will occur after
* 32 counts of the I2C function clock. 0xFFF = A time-out will occur after 65,536 counts of the
* I2C function clock.
*/
#define I2C_TIMEOUT_TO(x) (((uint32_t)(((uint32_t)(x)) << I2C_TIMEOUT_TO_SHIFT)) & I2C_TIMEOUT_TO_MASK)
/*! @} */
/*! @name CLKDIV - Clock pre-divider for the entire I2C interface. This determines what time increments are used for the MSTTIME register, and controls some timing of the Slave function. */
/*! @{ */
#define I2C_CLKDIV_DIVVAL_MASK (0xFFFFU)
#define I2C_CLKDIV_DIVVAL_SHIFT (0U)
/*! DIVVAL - This field controls how the Flexcomm clock (FCLK) is used by the I2C functions that
* need an internal clock in order to operate. 0x0000 = FCLK is used directly by the I2C. 0x0001 =
* FCLK is divided by 2 before use. 0x0002 = FCLK is divided by 3 before use. 0xFFFF = FCLK is
* divided by 65,536 before use.
*/
#define I2C_CLKDIV_DIVVAL(x) (((uint32_t)(((uint32_t)(x)) << I2C_CLKDIV_DIVVAL_SHIFT)) & I2C_CLKDIV_DIVVAL_MASK)
/*! @} */
/*! @name INTSTAT - Interrupt Status register for Master, Slave, and Monitor functions. */
/*! @{ */
#define I2C_INTSTAT_MSTPENDING_MASK (0x1U)
#define I2C_INTSTAT_MSTPENDING_SHIFT (0U)
/*! MSTPENDING - Master Pending.
*/
#define I2C_INTSTAT_MSTPENDING(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTSTAT_MSTPENDING_SHIFT)) & I2C_INTSTAT_MSTPENDING_MASK)
#define I2C_INTSTAT_MSTARBLOSS_MASK (0x10U)
#define I2C_INTSTAT_MSTARBLOSS_SHIFT (4U)
/*! MSTARBLOSS - Master Arbitration Loss flag.
*/
#define I2C_INTSTAT_MSTARBLOSS(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTSTAT_MSTARBLOSS_SHIFT)) & I2C_INTSTAT_MSTARBLOSS_MASK)
#define I2C_INTSTAT_MSTSTSTPERR_MASK (0x40U)
#define I2C_INTSTAT_MSTSTSTPERR_SHIFT (6U)
/*! MSTSTSTPERR - Master Start/Stop Error flag.
*/
#define I2C_INTSTAT_MSTSTSTPERR(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTSTAT_MSTSTSTPERR_SHIFT)) & I2C_INTSTAT_MSTSTSTPERR_MASK)
#define I2C_INTSTAT_SLVPENDING_MASK (0x100U)
#define I2C_INTSTAT_SLVPENDING_SHIFT (8U)
/*! SLVPENDING - Slave Pending.
*/
#define I2C_INTSTAT_SLVPENDING(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTSTAT_SLVPENDING_SHIFT)) & I2C_INTSTAT_SLVPENDING_MASK)
#define I2C_INTSTAT_SLVNOTSTR_MASK (0x800U)
#define I2C_INTSTAT_SLVNOTSTR_SHIFT (11U)
/*! SLVNOTSTR - Slave Not Stretching status.
*/
#define I2C_INTSTAT_SLVNOTSTR(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTSTAT_SLVNOTSTR_SHIFT)) & I2C_INTSTAT_SLVNOTSTR_MASK)
#define I2C_INTSTAT_SLVDESEL_MASK (0x8000U)
#define I2C_INTSTAT_SLVDESEL_SHIFT (15U)
/*! SLVDESEL - Slave Deselected flag.
*/
#define I2C_INTSTAT_SLVDESEL(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTSTAT_SLVDESEL_SHIFT)) & I2C_INTSTAT_SLVDESEL_MASK)
#define I2C_INTSTAT_MONRDY_MASK (0x10000U)
#define I2C_INTSTAT_MONRDY_SHIFT (16U)
/*! MONRDY - Monitor Ready.
*/
#define I2C_INTSTAT_MONRDY(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTSTAT_MONRDY_SHIFT)) & I2C_INTSTAT_MONRDY_MASK)
#define I2C_INTSTAT_MONOV_MASK (0x20000U)
#define I2C_INTSTAT_MONOV_SHIFT (17U)
/*! MONOV - Monitor Overflow flag.
*/
#define I2C_INTSTAT_MONOV(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTSTAT_MONOV_SHIFT)) & I2C_INTSTAT_MONOV_MASK)
#define I2C_INTSTAT_MONIDLE_MASK (0x80000U)
#define I2C_INTSTAT_MONIDLE_SHIFT (19U)
/*! MONIDLE - Monitor Idle flag.
*/
#define I2C_INTSTAT_MONIDLE(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTSTAT_MONIDLE_SHIFT)) & I2C_INTSTAT_MONIDLE_MASK)
#define I2C_INTSTAT_EVENTTIMEOUT_MASK (0x1000000U)
#define I2C_INTSTAT_EVENTTIMEOUT_SHIFT (24U)
/*! EVENTTIMEOUT - Event time-out Interrupt flag.
*/
#define I2C_INTSTAT_EVENTTIMEOUT(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTSTAT_EVENTTIMEOUT_SHIFT)) & I2C_INTSTAT_EVENTTIMEOUT_MASK)
#define I2C_INTSTAT_SCLTIMEOUT_MASK (0x2000000U)
#define I2C_INTSTAT_SCLTIMEOUT_SHIFT (25U)
/*! SCLTIMEOUT - SCL time-out Interrupt flag.
*/
#define I2C_INTSTAT_SCLTIMEOUT(x) (((uint32_t)(((uint32_t)(x)) << I2C_INTSTAT_SCLTIMEOUT_SHIFT)) & I2C_INTSTAT_SCLTIMEOUT_MASK)
/*! @} */
/*! @name MSTCTL - Master control register. */
/*! @{ */
#define I2C_MSTCTL_MSTCONTINUE_MASK (0x1U)
#define I2C_MSTCTL_MSTCONTINUE_SHIFT (0U)
/*! MSTCONTINUE - Master Continue.
* 0b0..No effect.
* 0b1..Informs the Master function to continue to the next operation.
*/
#define I2C_MSTCTL_MSTCONTINUE(x) (((uint32_t)(((uint32_t)(x)) << I2C_MSTCTL_MSTCONTINUE_SHIFT)) & I2C_MSTCTL_MSTCONTINUE_MASK)
#define I2C_MSTCTL_MSTSTART_MASK (0x2U)
#define I2C_MSTCTL_MSTSTART_SHIFT (1U)
/*! MSTSTART - Master Start control.
* 0b0..No effect.
* 0b1..Start. A Start will be generated on the I2C bus at the next allowed time.
*/
#define I2C_MSTCTL_MSTSTART(x) (((uint32_t)(((uint32_t)(x)) << I2C_MSTCTL_MSTSTART_SHIFT)) & I2C_MSTCTL_MSTSTART_MASK)
#define I2C_MSTCTL_MSTSTOP_MASK (0x4U)
#define I2C_MSTCTL_MSTSTOP_SHIFT (2U)
/*! MSTSTOP - Master Stop control.
* 0b0..No effect.
* 0b1..Stop. A Stop will be generated on the I2C bus at the next allowed time, preceded by a NACK to the slave
* if the master is receiving data from the slave (Master Receiver mode).
*/
#define I2C_MSTCTL_MSTSTOP(x) (((uint32_t)(((uint32_t)(x)) << I2C_MSTCTL_MSTSTOP_SHIFT)) & I2C_MSTCTL_MSTSTOP_MASK)
/*! @} */
/*! @name MSTTIME - Master timing configuration. */
/*! @{ */
#define I2C_MSTTIME_MSTSCLLOW_MASK (0x7U)
#define I2C_MSTTIME_MSTSCLLOW_SHIFT (0U)
/*! MSTSCLLOW - Master SCL Low time. Specifies the minimum low time that will be asserted by this
* master on SCL. Other devices on the bus (masters or slaves) could lengthen this time. This
* corresponds to the parameter t LOW in the I2C bus specification. I2C bus specification parameters
* tBUF and tSU;STA have the same values and are also controlled by MSTSCLLOW.
* 0b000..2 clocks. Minimum SCL low time is 2 clocks of the I2C clock pre-divider.
* 0b001..3 clocks. Minimum SCL low time is 3 clocks of the I2C clock pre-divider.
* 0b010..4 clocks. Minimum SCL low time is 4 clocks of the I2C clock pre-divider.
* 0b011..5 clocks. Minimum SCL low time is 5 clocks of the I2C clock pre-divider.
* 0b100..6 clocks. Minimum SCL low time is 6 clocks of the I2C clock pre-divider.
* 0b101..7 clocks. Minimum SCL low time is 7 clocks of the I2C clock pre-divider.
* 0b110..8 clocks. Minimum SCL low time is 8 clocks of the I2C clock pre-divider.
* 0b111..9 clocks. Minimum SCL low time is 9 clocks of the I2C clock pre-divider.
*/
#define I2C_MSTTIME_MSTSCLLOW(x) (((uint32_t)(((uint32_t)(x)) << I2C_MSTTIME_MSTSCLLOW_SHIFT)) & I2C_MSTTIME_MSTSCLLOW_MASK)
#define I2C_MSTTIME_MSTSCLHIGH_MASK (0x70U)
#define I2C_MSTTIME_MSTSCLHIGH_SHIFT (4U)
/*! MSTSCLHIGH - Master SCL High time. Specifies the minimum high time that will be asserted by this
* master on SCL. Other masters in a multi-master system could shorten this time. This
* corresponds to the parameter tHIGH in the I2C bus specification. I2C bus specification parameters
* tSU;STO and tHD;STA have the same values and are also controlled by MSTSCLHIGH.
* 0b000..2 clocks. Minimum SCL high time is 2 clock of the I2C clock pre-divider.
* 0b001..3 clocks. Minimum SCL high time is 3 clocks of the I2C clock pre-divider .
* 0b010..4 clocks. Minimum SCL high time is 4 clock of the I2C clock pre-divider.
* 0b011..5 clocks. Minimum SCL high time is 5 clock of the I2C clock pre-divider.
* 0b100..6 clocks. Minimum SCL high time is 6 clock of the I2C clock pre-divider.
* 0b101..7 clocks. Minimum SCL high time is 7 clock of the I2C clock pre-divider.
* 0b110..8 clocks. Minimum SCL high time is 8 clock of the I2C clock pre-divider.
* 0b111..9 clocks. Minimum SCL high time is 9 clocks of the I2C clock pre-divider.
*/
#define I2C_MSTTIME_MSTSCLHIGH(x) (((uint32_t)(((uint32_t)(x)) << I2C_MSTTIME_MSTSCLHIGH_SHIFT)) & I2C_MSTTIME_MSTSCLHIGH_MASK)
/*! @} */
/*! @name MSTDAT - Combined Master receiver and transmitter data register. */
/*! @{ */
#define I2C_MSTDAT_DATA_MASK (0xFFU)
#define I2C_MSTDAT_DATA_SHIFT (0U)
/*! DATA - Master function data register. Read: read the most recently received data for the Master
* function. Write: transmit data using the Master function.
*/
#define I2C_MSTDAT_DATA(x) (((uint32_t)(((uint32_t)(x)) << I2C_MSTDAT_DATA_SHIFT)) & I2C_MSTDAT_DATA_MASK)
/*! @} */
/*! @name SLVCTL - Slave control register. */
/*! @{ */
#define I2C_SLVCTL_SLVCONTINUE_MASK (0x1U)
#define I2C_SLVCTL_SLVCONTINUE_SHIFT (0U)
/*! SLVCONTINUE - Slave Continue.
* 0b0..No effect.
* 0b1..Informs the Slave function to continue to the next operation.
*/
#define I2C_SLVCTL_SLVCONTINUE(x) (((uint32_t)(((uint32_t)(x)) << I2C_SLVCTL_SLVCONTINUE_SHIFT)) & I2C_SLVCTL_SLVCONTINUE_MASK)
#define I2C_SLVCTL_SLVNACK_MASK (0x2U)
#define I2C_SLVCTL_SLVNACK_SHIFT (1U)
/*! SLVNACK - Slave NACK.
* 0b0..No effect.
* 0b1..NACK. Causes the Slave function to NACK the master when the slave is receiving data from the master (Slave Receiver mode).
*/
#define I2C_SLVCTL_SLVNACK(x) (((uint32_t)(((uint32_t)(x)) << I2C_SLVCTL_SLVNACK_SHIFT)) & I2C_SLVCTL_SLVNACK_MASK)
/*! @} */
/*! @name SLVDAT - Combined Slave receiver and transmitter data register. */
/*! @{ */
#define I2C_SLVDAT_DATA_MASK (0xFFU)
#define I2C_SLVDAT_DATA_SHIFT (0U)
/*! DATA - Slave function data register. Read: read the most recently received data for the Slave
* function. Write: transmit data using the Slave function.
*/
#define I2C_SLVDAT_DATA(x) (((uint32_t)(((uint32_t)(x)) << I2C_SLVDAT_DATA_SHIFT)) & I2C_SLVDAT_DATA_MASK)
/*! @} */
/*! @name SLVADR - Slave address register. */
/*! @{ */
#define I2C_SLVADR_SADISABLE_MASK (0x1U)
#define I2C_SLVADR_SADISABLE_SHIFT (0U)
/*! SADISABLE - Slave Address n Disable.
* 0b0..Enabled. Slave Address n is enabled.
* 0b1..Ignored Slave Address n is ignored.
*/
#define I2C_SLVADR_SADISABLE(x) (((uint32_t)(((uint32_t)(x)) << I2C_SLVADR_SADISABLE_SHIFT)) & I2C_SLVADR_SADISABLE_MASK)
#define I2C_SLVADR_SLVADR_MASK (0xFEU)
#define I2C_SLVADR_SLVADR_SHIFT (1U)
/*! SLVADR - Slave Address. Seven bit slave address that is compared to received addresses if enabled.
*/
#define I2C_SLVADR_SLVADR(x) (((uint32_t)(((uint32_t)(x)) << I2C_SLVADR_SLVADR_SHIFT)) & I2C_SLVADR_SLVADR_MASK)
/*! @} */
/* The count of I2C_SLVADR */
#define I2C_SLVADR_COUNT (4U)
/*! @name SLVQUAL0 - Slave Qualification for address 0. */
/*! @{ */
#define I2C_SLVQUAL0_QUALMODE0_MASK (0x1U)
#define I2C_SLVQUAL0_QUALMODE0_SHIFT (0U)
/*! QUALMODE0 - Qualify mode for slave address 0.
* 0b0..Mask. The SLVQUAL0 field is used as a logical mask for matching address 0.
* 0b1..Extend. The SLVQUAL0 field is used to extend address 0 matching in a range of addresses.
*/
#define I2C_SLVQUAL0_QUALMODE0(x) (((uint32_t)(((uint32_t)(x)) << I2C_SLVQUAL0_QUALMODE0_SHIFT)) & I2C_SLVQUAL0_QUALMODE0_MASK)
#define I2C_SLVQUAL0_SLVQUAL0_MASK (0xFEU)
#define I2C_SLVQUAL0_SLVQUAL0_SHIFT (1U)
/*! SLVQUAL0 - Slave address Qualifier for address 0. A value of 0 causes the address in SLVADR0 to
* be used as-is, assuming that it is enabled. If QUALMODE0 = 0, any bit in this field which is
* set to 1 will cause an automatic match of the corresponding bit of the received address when it
* is compared to the SLVADR0 register. If QUALMODE0 = 1, an address range is matched for
* address 0. This range extends from the value defined by SLVADR0 to the address defined by SLVQUAL0
* (address matches when SLVADR0[7:1] <= received address <= SLVQUAL0[7:1]).
*/
#define I2C_SLVQUAL0_SLVQUAL0(x) (((uint32_t)(((uint32_t)(x)) << I2C_SLVQUAL0_SLVQUAL0_SHIFT)) & I2C_SLVQUAL0_SLVQUAL0_MASK)
/*! @} */
/*! @name MONRXDAT - Monitor receiver data register. */
/*! @{ */
#define I2C_MONRXDAT_MONRXDAT_MASK (0xFFU)
#define I2C_MONRXDAT_MONRXDAT_SHIFT (0U)
/*! MONRXDAT - Monitor function Receiver Data. This reflects every data byte that passes on the I2C pins.
*/
#define I2C_MONRXDAT_MONRXDAT(x) (((uint32_t)(((uint32_t)(x)) << I2C_MONRXDAT_MONRXDAT_SHIFT)) & I2C_MONRXDAT_MONRXDAT_MASK)
#define I2C_MONRXDAT_MONSTART_MASK (0x100U)
#define I2C_MONRXDAT_MONSTART_SHIFT (8U)
/*! MONSTART - Monitor Received Start.
* 0b0..No start detected. The Monitor function has not detected a Start event on the I2C bus.
* 0b1..Start detected. The Monitor function has detected a Start event on the I2C bus.
*/
#define I2C_MONRXDAT_MONSTART(x) (((uint32_t)(((uint32_t)(x)) << I2C_MONRXDAT_MONSTART_SHIFT)) & I2C_MONRXDAT_MONSTART_MASK)
#define I2C_MONRXDAT_MONRESTART_MASK (0x200U)
#define I2C_MONRXDAT_MONRESTART_SHIFT (9U)
/*! MONRESTART - Monitor Received Repeated Start.
* 0b0..No repeated start detected. The Monitor function has not detected a Repeated Start event on the I2C bus.
* 0b1..Repeated start detected. The Monitor function has detected a Repeated Start event on the I2C bus.
*/
#define I2C_MONRXDAT_MONRESTART(x) (((uint32_t)(((uint32_t)(x)) << I2C_MONRXDAT_MONRESTART_SHIFT)) & I2C_MONRXDAT_MONRESTART_MASK)
#define I2C_MONRXDAT_MONNACK_MASK (0x400U)
#define I2C_MONRXDAT_MONNACK_SHIFT (10U)
/*! MONNACK - Monitor Received NACK.
* 0b0..Acknowledged. The data currently being provided by the Monitor function was acknowledged by at least one master or slave receiver.
* 0b1..Not acknowledged. The data currently being provided by the Monitor function was not acknowledged by any receiver.
*/
#define I2C_MONRXDAT_MONNACK(x) (((uint32_t)(((uint32_t)(x)) << I2C_MONRXDAT_MONNACK_SHIFT)) & I2C_MONRXDAT_MONNACK_MASK)
/*! @} */
/*!
* @}
*/ /* end of group I2C_Register_Masks */
/* I2C - Peripheral instance base addresses */
/** Peripheral I2C0 base address */
#define I2C0_BASE (0x40050000u)
/** Peripheral I2C0 base pointer */
#define I2C0 ((I2C_Type *)I2C0_BASE)
/** Peripheral I2C1 base address */
#define I2C1_BASE (0x40054000u)
/** Peripheral I2C1 base pointer */
#define I2C1 ((I2C_Type *)I2C1_BASE)
/** Array initializer of I2C peripheral base addresses */
#define I2C_BASE_ADDRS { I2C0_BASE, I2C1_BASE }
/** Array initializer of I2C peripheral base pointers */
#define I2C_BASE_PTRS { I2C0, I2C1 }
/** Interrupt vectors for the I2C peripheral type */
#define I2C_IRQS { I2C0_IRQn, I2C1_IRQn }
/*!
* @}
*/ /* end of group I2C_Peripheral_Access_Layer */
/* ----------------------------------------------------------------------------
-- IOCON Peripheral Access Layer
---------------------------------------------------------------------------- */
/*!
* @addtogroup IOCON_Peripheral_Access_Layer IOCON Peripheral Access Layer
* @{
*/
/** IOCON - Register Layout Typedef */
typedef struct {
__IO uint32_t PIO[30]; /**< Digital I/O control for pins PIO0_17..Digital I/O control for pins PIO0_18, array offset: 0x0, array step: 0x4 */
} IOCON_Type;
/* ----------------------------------------------------------------------------
-- IOCON Register Masks
---------------------------------------------------------------------------- */
/*!
* @addtogroup IOCON_Register_Masks IOCON Register Masks
* @{
*/
/*! @name PIO - Digital I/O control for pins PIO0_17..Digital I/O control for pins PIO0_18 */
/*! @{ */
#define IOCON_PIO_MODE_MASK (0x18U)
#define IOCON_PIO_MODE_SHIFT (3U)
/*! MODE - Selects function mode (on-chip pull-up/pull-down resistor control).
* 0b00..Inactive. Inactive (no pull-down/pull-up resistor enabled).
* 0b01..Pull-down. Pull-down resistor enabled.
* 0b10..Pull-up. Pull-up resistor enabled.
* 0b11..Repeater. Repeater mode.
*/
#define IOCON_PIO_MODE(x) (((uint32_t)(((uint32_t)(x)) << IOCON_PIO_MODE_SHIFT)) & IOCON_PIO_MODE_MASK)
#define IOCON_PIO_HYS_MASK (0x20U)
#define IOCON_PIO_HYS_SHIFT (5U)
/*! HYS - Hysteresis.
* 0b0..Disable
* 0b1..Enable
*/
#define IOCON_PIO_HYS(x) (((uint32_t)(((uint32_t)(x)) << IOCON_PIO_HYS_SHIFT)) & IOCON_PIO_HYS_MASK)
#define IOCON_PIO_INV_MASK (0x40U)
#define IOCON_PIO_INV_SHIFT (6U)
/*! INV - Invert input
* 0b0..Input not inverted (HIGH on pin reads as 1; LOW on pin reads as 0).
* 0b1..Input inverted (HIGH on pin reads as 0, LOW on pin reads as 1).
*/
#define IOCON_PIO_INV(x) (((uint32_t)(((uint32_t)(x)) << IOCON_PIO_INV_SHIFT)) & IOCON_PIO_INV_MASK)
#define IOCON_PIO_OD_MASK (0x400U)
#define IOCON_PIO_OD_SHIFT (10U)
/*! OD - Open-drain mode.
* 0b0..Disable.
* 0b1..Open-drain mode enabled. Remark: This is not a true open-drain mode.
*/
#define IOCON_PIO_OD(x) (((uint32_t)(((uint32_t)(x)) << IOCON_PIO_OD_SHIFT)) & IOCON_PIO_OD_MASK)
#define IOCON_PIO_DACMODE_MASK (0x10000U)
#define IOCON_PIO_DACMODE_SHIFT (16U)
/*! DACMODE - DAC mode enable.
* 0b0..Disable.
* 0b1..Enable.
*/
#define IOCON_PIO_DACMODE(x) (((uint32_t)(((uint32_t)(x)) << IOCON_PIO_DACMODE_SHIFT)) & IOCON_PIO_DACMODE_MASK)
/*! @} */
/* The count of IOCON_PIO */
#define IOCON_PIO_COUNT (30U)
/*!
* @}
*/ /* end of group IOCON_Register_Masks */
/* IOCON - Peripheral instance base addresses */
/** Peripheral IOCON base address */
#define IOCON_BASE (0x40044000u)
/** Peripheral IOCON base pointer */
#define IOCON ((IOCON_Type *)IOCON_BASE)
/** Array initializer of IOCON peripheral base addresses */
#define IOCON_BASE_ADDRS { IOCON_BASE }
/** Array initializer of IOCON peripheral base pointers */
#define IOCON_BASE_PTRS { IOCON }
#define IOCON_INDEX_PIO0_17 ( 0)
#define IOCON_INDEX_PIO0_13 ( 1)
#define IOCON_INDEX_PIO0_12 ( 2)
#define IOCON_INDEX_PIO0_5 ( 3)
#define IOCON_INDEX_PIO0_4 ( 4)
#define IOCON_INDEX_PIO0_3 ( 5)
#define IOCON_INDEX_PIO0_2 ( 6)
#define IOCON_INDEX_PIO0_11 ( 7)
#define IOCON_INDEX_PIO0_10 ( 8)
#define IOCON_INDEX_PIO0_16 ( 9)
#define IOCON_INDEX_PIO0_15 (10)
#define IOCON_INDEX_PIO0_1 (11)
#define IOCON_INDEX_PIO0_21 (12)
#define IOCON_INDEX_PIO0_9 (13)
#define IOCON_INDEX_PIO0_8 (14)
#define IOCON_INDEX_PIO0_7 (15)
#define IOCON_INDEX_PIO0_29 (16)
#define IOCON_INDEX_PIO0_0 (17)
#define IOCON_INDEX_PIO0_14 (18)
#define IOCON_INDEX_PIO0_28 (19)
#define IOCON_INDEX_PIO0_27 (20)
#define IOCON_INDEX_PIO0_26 (21)
#define IOCON_INDEX_PIO0_20 (22)
#define IOCON_INDEX_PIO0_30 (23)
#define IOCON_INDEX_PIO0_19 (24)
#define IOCON_INDEX_PIO0_25 (25)
#define IOCON_INDEX_PIO0_24 (26)
#define IOCON_INDEX_PIO0_23 (27)
#define IOCON_INDEX_PIO0_22 (28)
#define IOCON_INDEX_PIO0_18 (29)
/*!
* @}
*/ /* end of group IOCON_Peripheral_Access_Layer */
/* ----------------------------------------------------------------------------
-- MRT Peripheral Access Layer
---------------------------------------------------------------------------- */
/*!
* @addtogroup MRT_Peripheral_Access_Layer MRT Peripheral Access Layer
* @{
*/
/** MRT - Register Layout Typedef */
typedef struct {
struct { /* offset: 0x0, array step: 0x10 */
__IO uint32_t INTVAL; /**< MRT Time interval value register. This value is loaded into the TIMER register., array offset: 0x0, array step: 0x10 */
__I uint32_t TIMER; /**< MRT Timer register. This register reads the value of the down-counter., array offset: 0x4, array step: 0x10 */
__IO uint32_t CTRL; /**< MRT Control register. This register controls the MRT modes., array offset: 0x8, array step: 0x10 */
__IO uint32_t STAT; /**< MRT Status register., array offset: 0xC, array step: 0x10 */
} CHANNEL[4];
uint8_t RESERVED_0[176];
__I uint32_t MODCFG; /**< Module Configuration register. This register provides information about this particular MRT instance., offset: 0xF0 */
__I uint32_t IDLE_CH; /**< Idle channel register. This register returns the number of the first idle channel., offset: 0xF4 */
__IO uint32_t IRQ_FLAG; /**< Global interrupt flag register, offset: 0xF8 */
} MRT_Type;
/* ----------------------------------------------------------------------------
-- MRT Register Masks
---------------------------------------------------------------------------- */
/*!
* @addtogroup MRT_Register_Masks MRT Register Masks
* @{
*/
/*! @name CHANNEL_INTVAL - MRT Time interval value register. This value is loaded into the TIMER register. */
/*! @{ */
#define MRT_CHANNEL_INTVAL_IVALUE_MASK (0x7FFFFFFFU)
#define MRT_CHANNEL_INTVAL_IVALUE_SHIFT (0U)
/*! IVALUE - Time interval load value. This value is loaded into the TIMERn register and the MRT
* channel n starts counting down from IVALUE -1. If the timer is idle, writing a non-zero value to
* this bit field starts the timer immediately. If the timer is running, writing a zero to this
* bit field does the following: If LOAD = 1, the timer stops immediately. If LOAD = 0, the timer
* stops at the end of the time interval.
*/
#define MRT_CHANNEL_INTVAL_IVALUE(x) (((uint32_t)(((uint32_t)(x)) << MRT_CHANNEL_INTVAL_IVALUE_SHIFT)) & MRT_CHANNEL_INTVAL_IVALUE_MASK)
#define MRT_CHANNEL_INTVAL_LOAD_MASK (0x80000000U)
#define MRT_CHANNEL_INTVAL_LOAD_SHIFT (31U)
/*! LOAD - Determines how the timer interval value IVALUE -1 is loaded into the TIMERn register.
* This bit is write-only. Reading this bit always returns 0.
* 0b0..No force load. The load from the INTVALn register to the TIMERn register is processed at the end of the
* time interval if the repeat mode is selected.
* 0b1..Force load. The INTVALn interval value IVALUE -1 is immediately loaded into the TIMERn register while TIMERn is running.
*/
#define MRT_CHANNEL_INTVAL_LOAD(x) (((uint32_t)(((uint32_t)(x)) << MRT_CHANNEL_INTVAL_LOAD_SHIFT)) & MRT_CHANNEL_INTVAL_LOAD_MASK)
/*! @} */
/* The count of MRT_CHANNEL_INTVAL */
#define MRT_CHANNEL_INTVAL_COUNT (4U)
/*! @name CHANNEL_TIMER - MRT Timer register. This register reads the value of the down-counter. */
/*! @{ */
#define MRT_CHANNEL_TIMER_VALUE_MASK (0x7FFFFFFFU)
#define MRT_CHANNEL_TIMER_VALUE_SHIFT (0U)
/*! VALUE - Holds the current timer value of the down-counter. The initial value of the TIMERn
* register is loaded as IVALUE - 1 from the INTVALn register either at the end of the time interval
* or immediately in the following cases: INTVALn register is updated in the idle state. INTVALn
* register is updated with LOAD = 1. When the timer is in idle state, reading this bit fields
* returns -1 (0x00FF FFFF).
*/
#define MRT_CHANNEL_TIMER_VALUE(x) (((uint32_t)(((uint32_t)(x)) << MRT_CHANNEL_TIMER_VALUE_SHIFT)) & MRT_CHANNEL_TIMER_VALUE_MASK)
/*! @} */
/* The count of MRT_CHANNEL_TIMER */
#define MRT_CHANNEL_TIMER_COUNT (4U)
/*! @name CHANNEL_CTRL - MRT Control register. This register controls the MRT modes. */
/*! @{ */
#define MRT_CHANNEL_CTRL_INTEN_MASK (0x1U)
#define MRT_CHANNEL_CTRL_INTEN_SHIFT (0U)
/*! INTEN - Enable the TIMERn interrupt.
* 0b0..Disabled. TIMERn interrupt is disabled.
* 0b1..Enabled. TIMERn interrupt is enabled.
*/
#define MRT_CHANNEL_CTRL_INTEN(x) (((uint32_t)(((uint32_t)(x)) << MRT_CHANNEL_CTRL_INTEN_SHIFT)) & MRT_CHANNEL_CTRL_INTEN_MASK)
#define MRT_CHANNEL_CTRL_MODE_MASK (0x6U)
#define MRT_CHANNEL_CTRL_MODE_SHIFT (1U)
/*! MODE - Selects timer mode.
* 0b00..Repeat interrupt mode.
* 0b01..One-shot interrupt mode.
* 0b10..One-shot stall mode.
* 0b11..Reserved.
*/
#define MRT_CHANNEL_CTRL_MODE(x) (((uint32_t)(((uint32_t)(x)) << MRT_CHANNEL_CTRL_MODE_SHIFT)) & MRT_CHANNEL_CTRL_MODE_MASK)
/*! @} */
/* The count of MRT_CHANNEL_CTRL */
#define MRT_CHANNEL_CTRL_COUNT (4U)
/*! @name CHANNEL_STAT - MRT Status register. */
/*! @{ */
#define MRT_CHANNEL_STAT_INTFLAG_MASK (0x1U)
#define MRT_CHANNEL_STAT_INTFLAG_SHIFT (0U)
/*! INTFLAG - Monitors the interrupt flag.
* 0b0..No pending interrupt. Writing a zero is equivalent to no operation.
* 0b1..Pending interrupt. The interrupt is pending because TIMERn has reached the end of the time interval. If
* the INTEN bit in the CONTROLn is also set to 1, the interrupt for timer channel n and the global interrupt
* are raised. Writing a 1 to this bit clears the interrupt request.
*/
#define MRT_CHANNEL_STAT_INTFLAG(x) (((uint32_t)(((uint32_t)(x)) << MRT_CHANNEL_STAT_INTFLAG_SHIFT)) & MRT_CHANNEL_STAT_INTFLAG_MASK)
#define MRT_CHANNEL_STAT_RUN_MASK (0x2U)
#define MRT_CHANNEL_STAT_RUN_SHIFT (1U)
/*! RUN - Indicates the state of TIMERn. This bit is read-only.
* 0b0..Idle state. TIMERn is stopped.
* 0b1..Running. TIMERn is running.
*/
#define MRT_CHANNEL_STAT_RUN(x) (((uint32_t)(((uint32_t)(x)) << MRT_CHANNEL_STAT_RUN_SHIFT)) & MRT_CHANNEL_STAT_RUN_MASK)
/*! @} */
/* The count of MRT_CHANNEL_STAT */
#define MRT_CHANNEL_STAT_COUNT (4U)
/*! @name MODCFG - Module Configuration register. This register provides information about this particular MRT instance. */
/*! @{ */
#define MRT_MODCFG_NOC_MASK (0xFU)
#define MRT_MODCFG_NOC_SHIFT (0U)
/*! NOC - Identifies the number of channels in this MRT.(4 channels on this device.)
*/
#define MRT_MODCFG_NOC(x) (((uint32_t)(((uint32_t)(x)) << MRT_MODCFG_NOC_SHIFT)) & MRT_MODCFG_NOC_MASK)
#define MRT_MODCFG_NOB_MASK (0x1F0U)
#define MRT_MODCFG_NOB_SHIFT (4U)
/*! NOB - Identifies the number of timer bits in this MRT. (31 bits wide on this device.)
*/
#define MRT_MODCFG_NOB(x) (((uint32_t)(((uint32_t)(x)) << MRT_MODCFG_NOB_SHIFT)) & MRT_MODCFG_NOB_MASK)
/*! @} */
/*! @name IDLE_CH - Idle channel register. This register returns the number of the first idle channel. */
/*! @{ */
#define MRT_IDLE_CH_CHAN_MASK (0xF0U)
#define MRT_IDLE_CH_CHAN_SHIFT (4U)
/*! CHAN - Idle channel. Reading the CHAN bits, returns the lowest idle timer channel. The number is
* positioned such that it can be used as an offset from the MRT base address in order to access
* the registers for the allocated channel. If all timer channels are running, CHAN = 0xF. See
* text above for more details.
*/
#define MRT_IDLE_CH_CHAN(x) (((uint32_t)(((uint32_t)(x)) << MRT_IDLE_CH_CHAN_SHIFT)) & MRT_IDLE_CH_CHAN_MASK)
/*! @} */
/*! @name IRQ_FLAG - Global interrupt flag register */
/*! @{ */
#define MRT_IRQ_FLAG_GFLAG0_MASK (0x1U)
#define MRT_IRQ_FLAG_GFLAG0_SHIFT (0U)
/*! GFLAG0 - Monitors the interrupt flag of TIMER0.
* 0b0..No pending interrupt. Writing a zero is equivalent to no operation.
* 0b1..Pending interrupt. The interrupt is pending because TIMER0 has reached the end of the time interval. If
* the INTEN bit in the CONTROL0 register is also set to 1, the interrupt for timer channel 0 and the global
* interrupt are raised. Writing a 1 to this bit clears the interrupt request.
*/
#define MRT_IRQ_FLAG_GFLAG0(x) (((uint32_t)(((uint32_t)(x)) << MRT_IRQ_FLAG_GFLAG0_SHIFT)) & MRT_IRQ_FLAG_GFLAG0_MASK)
#define MRT_IRQ_FLAG_GFLAG1_MASK (0x2U)
#define MRT_IRQ_FLAG_GFLAG1_SHIFT (1U)
/*! GFLAG1 - Monitors the interrupt flag of TIMER1. See description of channel 0.
*/
#define MRT_IRQ_FLAG_GFLAG1(x) (((uint32_t)(((uint32_t)(x)) << MRT_IRQ_FLAG_GFLAG1_SHIFT)) & MRT_IRQ_FLAG_GFLAG1_MASK)
/*! @} */
/*!
* @}
*/ /* end of group MRT_Register_Masks */
/* MRT - Peripheral instance base addresses */
/** Peripheral MRT0 base address */
#define MRT0_BASE (0x40004000u)
/** Peripheral MRT0 base pointer */
#define MRT0 ((MRT_Type *)MRT0_BASE)
/** Array initializer of MRT peripheral base addresses */
#define MRT_BASE_ADDRS { MRT0_BASE }
/** Array initializer of MRT peripheral base pointers */
#define MRT_BASE_PTRS { MRT0 }
/** Interrupt vectors for the MRT peripheral type */
#define MRT_IRQS { MRT0_IRQn }
/*!
* @}
*/ /* end of group MRT_Peripheral_Access_Layer */
/* ----------------------------------------------------------------------------
-- PINT Peripheral Access Layer
---------------------------------------------------------------------------- */
/*!
* @addtogroup PINT_Peripheral_Access_Layer PINT Peripheral Access Layer
* @{
*/
/** PINT - Register Layout Typedef */
typedef struct {
__IO uint32_t ISEL; /**< Pin Interrupt Mode register, offset: 0x0 */
__IO uint32_t IENR; /**< Pin interrupt level or rising edge interrupt enable register, offset: 0x4 */
__O uint32_t SIENR; /**< Pin interrupt level or rising edge interrupt set register, offset: 0x8 */
__O uint32_t CIENR; /**< Pin interrupt level (rising edge interrupt) clear register, offset: 0xC */
__IO uint32_t IENF; /**< Pin interrupt active level or falling edge interrupt enable register, offset: 0x10 */
__O uint32_t SIENF; /**< Pin interrupt active level or falling edge interrupt set register, offset: 0x14 */
__O uint32_t CIENF; /**< Pin interrupt active level or falling edge interrupt clear register, offset: 0x18 */
__IO uint32_t RISE; /**< Pin interrupt rising edge register, offset: 0x1C */
__IO uint32_t FALL; /**< Pin interrupt falling edge register, offset: 0x20 */
__IO uint32_t IST; /**< Pin interrupt status register, offset: 0x24 */
__IO uint32_t PMCTRL; /**< Pattern match interrupt control register, offset: 0x28 */
__IO uint32_t PMSRC; /**< Pattern match interrupt bit-slice source register, offset: 0x2C */
__IO uint32_t PMCFG; /**< Pattern match interrupt bit slice configuration register, offset: 0x30 */
} PINT_Type;
/* ----------------------------------------------------------------------------
-- PINT Register Masks
---------------------------------------------------------------------------- */
/*!
* @addtogroup PINT_Register_Masks PINT Register Masks
* @{
*/
/*! @name ISEL - Pin Interrupt Mode register */
/*! @{ */
#define PINT_ISEL_PMODE_MASK (0xFFU)
#define PINT_ISEL_PMODE_SHIFT (0U)
/*! PMODE - Selects the interrupt mode for each pin interrupt. Bit n configures the pin interrupt
* selected in PINTSELn. 0 = Edge sensitive 1 = Level sensitive
*/
#define PINT_ISEL_PMODE(x) (((uint32_t)(((uint32_t)(x)) << PINT_ISEL_PMODE_SHIFT)) & PINT_ISEL_PMODE_MASK)
/*! @} */
/*! @name IENR - Pin interrupt level or rising edge interrupt enable register */
/*! @{ */
#define PINT_IENR_ENRL_MASK (0xFFU)
#define PINT_IENR_ENRL_SHIFT (0U)
/*! ENRL - Enables the rising edge or level interrupt for each pin interrupt. Bit n configures the
* pin interrupt selected in PINTSELn. 0 = Disable rising edge or level interrupt. 1 = Enable
* rising edge or level interrupt.
*/
#define PINT_IENR_ENRL(x) (((uint32_t)(((uint32_t)(x)) << PINT_IENR_ENRL_SHIFT)) & PINT_IENR_ENRL_MASK)
/*! @} */
/*! @name SIENR - Pin interrupt level or rising edge interrupt set register */
/*! @{ */
#define PINT_SIENR_SETENRL_MASK (0xFFU)
#define PINT_SIENR_SETENRL_SHIFT (0U)
/*! SETENRL - Ones written to this address set bits in the IENR, thus enabling interrupts. Bit n
* sets bit n in the IENR register. 0 = No operation. 1 = Enable rising edge or level interrupt.
*/
#define PINT_SIENR_SETENRL(x) (((uint32_t)(((uint32_t)(x)) << PINT_SIENR_SETENRL_SHIFT)) & PINT_SIENR_SETENRL_MASK)
/*! @} */
/*! @name CIENR - Pin interrupt level (rising edge interrupt) clear register */
/*! @{ */
#define PINT_CIENR_CENRL_MASK (0xFFU)
#define PINT_CIENR_CENRL_SHIFT (0U)
/*! CENRL - Ones written to this address clear bits in the IENR, thus disabling the interrupts. Bit
* n clears bit n in the IENR register. 0 = No operation. 1 = Disable rising edge or level
* interrupt.
*/
#define PINT_CIENR_CENRL(x) (((uint32_t)(((uint32_t)(x)) << PINT_CIENR_CENRL_SHIFT)) & PINT_CIENR_CENRL_MASK)
/*! @} */
/*! @name IENF - Pin interrupt active level or falling edge interrupt enable register */
/*! @{ */
#define PINT_IENF_ENAF_MASK (0xFFU)
#define PINT_IENF_ENAF_SHIFT (0U)
/*! ENAF - Enables the falling edge or configures the active level interrupt for each pin interrupt.
* Bit n configures the pin interrupt selected in PINTSELn. 0 = Disable falling edge interrupt
* or set active interrupt level LOW. 1 = Enable falling edge interrupt enabled or set active
* interrupt level HIGH.
*/
#define PINT_IENF_ENAF(x) (((uint32_t)(((uint32_t)(x)) << PINT_IENF_ENAF_SHIFT)) & PINT_IENF_ENAF_MASK)
/*! @} */
/*! @name SIENF - Pin interrupt active level or falling edge interrupt set register */
/*! @{ */
#define PINT_SIENF_SETENAF_MASK (0xFFU)
#define PINT_SIENF_SETENAF_SHIFT (0U)
/*! SETENAF - Ones written to this address set bits in the IENF, thus enabling interrupts. Bit n
* sets bit n in the IENF register. 0 = No operation. 1 = Select HIGH-active interrupt or enable
* falling edge interrupt.
*/
#define PINT_SIENF_SETENAF(x) (((uint32_t)(((uint32_t)(x)) << PINT_SIENF_SETENAF_SHIFT)) & PINT_SIENF_SETENAF_MASK)
/*! @} */
/*! @name CIENF - Pin interrupt active level or falling edge interrupt clear register */
/*! @{ */
#define PINT_CIENF_CENAF_MASK (0xFFU)
#define PINT_CIENF_CENAF_SHIFT (0U)
/*! CENAF - Ones written to this address clears bits in the IENF, thus disabling interrupts. Bit n
* clears bit n in the IENF register. 0 = No operation. 1 = LOW-active interrupt selected or
* falling edge interrupt disabled.
*/
#define PINT_CIENF_CENAF(x) (((uint32_t)(((uint32_t)(x)) << PINT_CIENF_CENAF_SHIFT)) & PINT_CIENF_CENAF_MASK)
/*! @} */
/*! @name RISE - Pin interrupt rising edge register */
/*! @{ */
#define PINT_RISE_RDET_MASK (0xFFU)
#define PINT_RISE_RDET_SHIFT (0U)
/*! RDET - Rising edge detect. Bit n detects the rising edge of the pin selected in PINTSELn. Read
* 0: No rising edge has been detected on this pin since Reset or the last time a one was written
* to this bit. Write 0: no operation. Read 1: a rising edge has been detected since Reset or the
* last time a one was written to this bit. Write 1: clear rising edge detection for this pin.
*/
#define PINT_RISE_RDET(x) (((uint32_t)(((uint32_t)(x)) << PINT_RISE_RDET_SHIFT)) & PINT_RISE_RDET_MASK)
/*! @} */
/*! @name FALL - Pin interrupt falling edge register */
/*! @{ */
#define PINT_FALL_FDET_MASK (0xFFU)
#define PINT_FALL_FDET_SHIFT (0U)
/*! FDET - Falling edge detect. Bit n detects the falling edge of the pin selected in PINTSELn. Read
* 0: No falling edge has been detected on this pin since Reset or the last time a one was
* written to this bit. Write 0: no operation. Read 1: a falling edge has been detected since Reset or
* the last time a one was written to this bit. Write 1: clear falling edge detection for this
* pin.
*/
#define PINT_FALL_FDET(x) (((uint32_t)(((uint32_t)(x)) << PINT_FALL_FDET_SHIFT)) & PINT_FALL_FDET_MASK)
/*! @} */
/*! @name IST - Pin interrupt status register */
/*! @{ */
#define PINT_IST_PSTAT_MASK (0xFFU)
#define PINT_IST_PSTAT_SHIFT (0U)
/*! PSTAT - Pin interrupt status. Bit n returns the status, clears the edge interrupt, or inverts
* the active level of the pin selected in PINTSELn. Read 0: interrupt is not being requested for
* this interrupt pin. Write 0: no operation. Read 1: interrupt is being requested for this
* interrupt pin. Write 1 (edge-sensitive): clear rising- and falling-edge detection for this pin.
* Write 1 (level-sensitive): switch the active level for this pin (in the IENF register).
*/
#define PINT_IST_PSTAT(x) (((uint32_t)(((uint32_t)(x)) << PINT_IST_PSTAT_SHIFT)) & PINT_IST_PSTAT_MASK)
/*! @} */
/*! @name PMCTRL - Pattern match interrupt control register */
/*! @{ */
#define PINT_PMCTRL_SEL_PMATCH_MASK (0x1U)
#define PINT_PMCTRL_SEL_PMATCH_SHIFT (0U)
/*! SEL_PMATCH - Specifies whether the 8 pin interrupts are controlled by the pin interrupt function or by the pattern match function.
* 0b0..Pin interrupt. Interrupts are driven in response to the standard pin interrupt function.
* 0b1..Pattern match. Interrupts are driven in response to pattern matches.
*/
#define PINT_PMCTRL_SEL_PMATCH(x) (((uint32_t)(((uint32_t)(x)) << PINT_PMCTRL_SEL_PMATCH_SHIFT)) & PINT_PMCTRL_SEL_PMATCH_MASK)
#define PINT_PMCTRL_ENA_RXEV_MASK (0x2U)
#define PINT_PMCTRL_ENA_RXEV_SHIFT (1U)
/*! ENA_RXEV - Enables the RXEV output to the CPU and/or to a GPIO output when the specified boolean expression evaluates to true.
* 0b0..Disabled. RXEV output to the CPU is disabled.
* 0b1..Enabled. RXEV output to the CPU is enabled.
*/
#define PINT_PMCTRL_ENA_RXEV(x) (((uint32_t)(((uint32_t)(x)) << PINT_PMCTRL_ENA_RXEV_SHIFT)) & PINT_PMCTRL_ENA_RXEV_MASK)
#define PINT_PMCTRL_PMAT_MASK (0xFF000000U)
#define PINT_PMCTRL_PMAT_SHIFT (24U)
/*! PMAT - This field displays the current state of pattern matches. A 1 in any bit of this field
* indicates that the corresponding product term is matched by the current state of the appropriate
* inputs.
*/
#define PINT_PMCTRL_PMAT(x) (((uint32_t)(((uint32_t)(x)) << PINT_PMCTRL_PMAT_SHIFT)) & PINT_PMCTRL_PMAT_MASK)
/*! @} */
/*! @name PMSRC - Pattern match interrupt bit-slice source register */
/*! @{ */
#define PINT_PMSRC_SRC0_MASK (0x700U)
#define PINT_PMSRC_SRC0_SHIFT (8U)
/*! SRC0 - Selects the input source for bit slice 0
* 0b000..Input 0. Selects the pin selected in the PINTSEL0 register as the source to bit slice 0.
* 0b001..Input 1. Selects the pin selected in the PINTSEL1 register as the source to bit slice 0.
* 0b010..Input 2. Selects the pin selected in the PINTSEL2 register as the source to bit slice 0.
* 0b011..Input 3. Selects the pin selected in the PINTSEL3 register as the source to bit slice 0.
* 0b100..Input 4. Selects the pin selected in the PINTSEL4 register as the source to bit slice 0.
* 0b101..Input 5. Selects the pin selected in the PINTSEL5 register as the source to bit slice 0.
* 0b110..Input 6. Selects the pin selected in the PINTSEL6 register as the source to bit slice 0.
* 0b111..Input 7. Selects the pin selected in the PINTSEL7 register as the source to bit slice 0.
*/
#define PINT_PMSRC_SRC0(x) (((uint32_t)(((uint32_t)(x)) << PINT_PMSRC_SRC0_SHIFT)) & PINT_PMSRC_SRC0_MASK)
#define PINT_PMSRC_SRC1_MASK (0x3800U)
#define PINT_PMSRC_SRC1_SHIFT (11U)
/*! SRC1 - Selects the input source for bit slice 1
* 0b000..Input 0. Selects the pin selected in the PINTSEL0 register as the source to bit slice 1.
* 0b001..Input 1. Selects the pin selected in the PINTSEL1 register as the source to bit slice 1.
* 0b010..Input 2. Selects the pin selected in the PINTSEL2 register as the source to bit slice 1.
* 0b011..Input 3. Selects the pin selected in the PINTSEL3 register as the source to bit slice 1.
* 0b100..Input 4. Selects the pin selected in the PINTSEL4 register as the source to bit slice 1.
* 0b101..Input 5. Selects the pin selected in the PINTSEL5 register as the source to bit slice 1.
* 0b110..Input 6. Selects the pin selected in the PINTSEL6 register as the source to bit slice 1.
* 0b111..Input 7. Selects the pin selected in the PINTSEL7 register as the source to bit slice 1.
*/
#define PINT_PMSRC_SRC1(x) (((uint32_t)(((uint32_t)(x)) << PINT_PMSRC_SRC1_SHIFT)) & PINT_PMSRC_SRC1_MASK)
#define PINT_PMSRC_SRC2_MASK (0x1C000U)
#define PINT_PMSRC_SRC2_SHIFT (14U)
/*! SRC2 - Selects the input source for bit slice 2
* 0b000..Input 0. Selects the pin selected in the PINTSEL0 register as the source to bit slice 2.
* 0b001..Input 1. Selects the pin selected in the PINTSEL1 register as the source to bit slice 2.
* 0b010..Input 2. Selects the pin selected in the PINTSEL2 register as the source to bit slice 2.
* 0b011..Input 3. Selects the pin selected in the PINTSEL3 register as the source to bit slice 2.
* 0b100..Input 4. Selects the pin selected in the PINTSEL4 register as the source to bit slice 2.
* 0b101..Input 5. Selects the pin selected in the PINTSEL5 register as the source to bit slice 2.
* 0b110..Input 6. Selects the pin selected in the PINTSEL6 register as the source to bit slice 2.
* 0b111..Input 7. Selects the pin selected in the PINTSEL7 register as the source to bit slice 2.
*/
#define PINT_PMSRC_SRC2(x) (((uint32_t)(((uint32_t)(x)) << PINT_PMSRC_SRC2_SHIFT)) & PINT_PMSRC_SRC2_MASK)
#define PINT_PMSRC_SRC3_MASK (0xE0000U)
#define PINT_PMSRC_SRC3_SHIFT (17U)
/*! SRC3 - Selects the input source for bit slice 3
* 0b000..Input 0. Selects the pin selected in the PINTSEL0 register as the source to bit slice 3.
* 0b001..Input 1. Selects the pin selected in the PINTSEL1 register as the source to bit slice 3.
* 0b010..Input 2. Selects the pin selected in the PINTSEL2 register as the source to bit slice 3.
* 0b011..Input 3. Selects the pin selected in the PINTSEL3 register as the source to bit slice 3.
* 0b100..Input 4. Selects the pin selected in the PINTSEL4 register as the source to bit slice 3.
* 0b101..Input 5. Selects the pin selected in the PINTSEL5 register as the source to bit slice 3.
* 0b110..Input 6. Selects the pin selected in the PINTSEL6 register as the source to bit slice 3.
* 0b111..Input 7. Selects the pin selected in the PINTSEL7 register as the source to bit slice 3.
*/
#define PINT_PMSRC_SRC3(x) (((uint32_t)(((uint32_t)(x)) << PINT_PMSRC_SRC3_SHIFT)) & PINT_PMSRC_SRC3_MASK)
#define PINT_PMSRC_SRC4_MASK (0x700000U)
#define PINT_PMSRC_SRC4_SHIFT (20U)
/*! SRC4 - Selects the input source for bit slice 4
* 0b000..Input 0. Selects the pin selected in the PINTSEL0 register as the source to bit slice 4.
* 0b001..Input 1. Selects the pin selected in the PINTSEL1 register as the source to bit slice 4.
* 0b010..Input 2. Selects the pin selected in the PINTSEL2 register as the source to bit slice 4.
* 0b011..Input 3. Selects the pin selected in the PINTSEL3 register as the source to bit slice 4.
* 0b100..Input 4. Selects the pin selected in the PINTSEL4 register as the source to bit slice 4.
* 0b101..Input 5. Selects the pin selected in the PINTSEL5 register as the source to bit slice 4.
* 0b110..Input 6. Selects the pin selected in the PINTSEL6 register as the source to bit slice 4.
* 0b111..Input 7. Selects the pin selected in the PINTSEL7 register as the source to bit slice 4.
*/
#define PINT_PMSRC_SRC4(x) (((uint32_t)(((uint32_t)(x)) << PINT_PMSRC_SRC4_SHIFT)) & PINT_PMSRC_SRC4_MASK)
#define PINT_PMSRC_SRC5_MASK (0x3800000U)
#define PINT_PMSRC_SRC5_SHIFT (23U)
/*! SRC5 - Selects the input source for bit slice 5
* 0b000..Input 0. Selects the pin selected in the PINTSEL0 register as the source to bit slice 5.
* 0b001..Input 1. Selects the pin selected in the PINTSEL1 register as the source to bit slice 5.
* 0b010..Input 2. Selects the pin selected in the PINTSEL2 register as the source to bit slice 5.
* 0b011..Input 3. Selects the pin selected in the PINTSEL3 register as the source to bit slice 5.
* 0b100..Input 4. Selects the pin selected in the PINTSEL4 register as the source to bit slice 5.
* 0b101..Input 5. Selects the pin selected in the PINTSEL5 register as the source to bit slice 5.
* 0b110..Input 6. Selects the pin selected in the PINTSEL6 register as the source to bit slice 5.
* 0b111..Input 7. Selects the pin selected in the PINTSEL7 register as the source to bit slice 5.
*/
#define PINT_PMSRC_SRC5(x) (((uint32_t)(((uint32_t)(x)) << PINT_PMSRC_SRC5_SHIFT)) & PINT_PMSRC_SRC5_MASK)
#define PINT_PMSRC_SRC6_MASK (0x1C000000U)
#define PINT_PMSRC_SRC6_SHIFT (26U)
/*! SRC6 - Selects the input source for bit slice 6
* 0b000..Input 0. Selects the pin selected in the PINTSEL0 register as the source to bit slice 6.
* 0b001..Input 1. Selects the pin selected in the PINTSEL1 register as the source to bit slice 6.
* 0b010..Input 2. Selects the pin selected in the PINTSEL2 register as the source to bit slice 6.
* 0b011..Input 3. Selects the pin selected in the PINTSEL3 register as the source to bit slice 6.
* 0b100..Input 4. Selects the pin selected in the PINTSEL4 register as the source to bit slice 6.
* 0b101..Input 5. Selects the pin selected in the PINTSEL5 register as the source to bit slice 6.
* 0b110..Input 6. Selects the pin selected in the PINTSEL6 register as the source to bit slice 6.
* 0b111..Input 7. Selects the pin selected in the PINTSEL7 register as the source to bit slice 6.
*/
#define PINT_PMSRC_SRC6(x) (((uint32_t)(((uint32_t)(x)) << PINT_PMSRC_SRC6_SHIFT)) & PINT_PMSRC_SRC6_MASK)
#define PINT_PMSRC_SRC7_MASK (0xE0000000U)
#define PINT_PMSRC_SRC7_SHIFT (29U)
/*! SRC7 - Selects the input source for bit slice 7
* 0b000..Input 0. Selects the pin selected in the PINTSEL0 register as the source to bit slice 7.
* 0b001..Input 1. Selects the pin selected in the PINTSEL1 register as the source to bit slice 7.
* 0b010..Input 2. Selects the pin selected in the PINTSEL2 register as the source to bit slice 7.
* 0b011..Input 3. Selects the pin selected in the PINTSEL3 register as the source to bit slice 7.
* 0b100..Input 4. Selects the pin selected in the PINTSEL4 register as the source to bit slice 7.
* 0b101..Input 5. Selects the pin selected in the PINTSEL5 register as the source to bit slice 7.
* 0b110..Input 6. Selects the pin selected in the PINTSEL6 register as the source to bit slice 7.
* 0b111..Input 7. Selects the pin selected in the PINTSEL7 register as the source to bit slice 7.
*/
#define PINT_PMSRC_SRC7(x) (((uint32_t)(((uint32_t)(x)) << PINT_PMSRC_SRC7_SHIFT)) & PINT_PMSRC_SRC7_MASK)
/*! @} */
/*! @name PMCFG - Pattern match interrupt bit slice configuration register */
/*! @{ */
#define PINT_PMCFG_PROD_ENDPTS0_MASK (0x1U)
#define PINT_PMCFG_PROD_ENDPTS0_SHIFT (0U)
/*! PROD_ENDPTS0 - Determines whether slice 0 is an endpoint.
* 0b0..No effect. Slice 0 is not an endpoint.
* 0b1..endpoint. Slice 0 is the endpoint of a product term (minterm). Pin interrupt 0 in the NVIC is raised if the minterm evaluates as true.
*/
#define PINT_PMCFG_PROD_ENDPTS0(x) (((uint32_t)(((uint32_t)(x)) << PINT_PMCFG_PROD_ENDPTS0_SHIFT)) & PINT_PMCFG_PROD_ENDPTS0_MASK)
#define PINT_PMCFG_PROD_ENDPTS1_MASK (0x2U)
#define PINT_PMCFG_PROD_ENDPTS1_SHIFT (1U)
/*! PROD_ENDPTS1 - Determines whether slice 1 is an endpoint.
* 0b0..No effect. Slice 1 is not an endpoint.
* 0b1..endpoint. Slice 1 is the endpoint of a product term (minterm). Pin interrupt 1 in the NVIC is raised if the minterm evaluates as true.
*/
#define PINT_PMCFG_PROD_ENDPTS1(x) (((uint32_t)(((uint32_t)(x)) << PINT_PMCFG_PROD_ENDPTS1_SHIFT)) & PINT_PMCFG_PROD_ENDPTS1_MASK)
#define PINT_PMCFG_PROD_ENDPTS2_MASK (0x4U)
#define PINT_PMCFG_PROD_ENDPTS2_SHIFT (2U)
/*! PROD_ENDPTS2 - Determines whether slice 2 is an endpoint.
* 0b0..No effect. Slice 2 is not an endpoint.
* 0b1..endpoint. Slice 2 is the endpoint of a product term (minterm). Pin interrupt 2 in the NVIC is raised if the minterm evaluates as true.
*/
#define PINT_PMCFG_PROD_ENDPTS2(x) (((uint32_t)(((uint32_t)(x)) << PINT_PMCFG_PROD_ENDPTS2_SHIFT)) & PINT_PMCFG_PROD_ENDPTS2_MASK)
#define PINT_PMCFG_PROD_ENDPTS3_MASK (0x8U)
#define PINT_PMCFG_PROD_ENDPTS3_SHIFT (3U)
/*! PROD_ENDPTS3 - Determines whether slice 3 is an endpoint.
* 0b0..No effect. Slice 3 is not an endpoint.
* 0b1..endpoint. Slice 3 is the endpoint of a product term (minterm). Pin interrupt 3 in the NVIC is raised if the minterm evaluates as true.
*/
#define PINT_PMCFG_PROD_ENDPTS3(x) (((uint32_t)(((uint32_t)(x)) << PINT_PMCFG_PROD_ENDPTS3_SHIFT)) & PINT_PMCFG_PROD_ENDPTS3_MASK)
#define PINT_PMCFG_PROD_ENDPTS4_MASK (0x10U)
#define PINT_PMCFG_PROD_ENDPTS4_SHIFT (4U)
/*! PROD_ENDPTS4 - Determines whether slice 4 is an endpoint.
* 0b0..No effect. Slice 4 is not an endpoint.
* 0b1..endpoint. Slice 4 is the endpoint of a product term (minterm). Pin interrupt 4 in the NVIC is raised if the minterm evaluates as true.
*/
#define PINT_PMCFG_PROD_ENDPTS4(x) (((uint32_t)(((uint32_t)(x)) << PINT_PMCFG_PROD_ENDPTS4_SHIFT)) & PINT_PMCFG_PROD_ENDPTS4_MASK)
#define PINT_PMCFG_PROD_ENDPTS5_MASK (0x20U)
#define PINT_PMCFG_PROD_ENDPTS5_SHIFT (5U)
/*! PROD_ENDPTS5 - Determines whether slice 5 is an endpoint.
* 0b0..No effect. Slice 5 is not an endpoint.
* 0b1..endpoint. Slice 5 is the endpoint of a product term (minterm). Pin interrupt 5 in the NVIC is raised if the minterm evaluates as true.
*/
#define PINT_PMCFG_PROD_ENDPTS5(x) (((uint32_t)(((uint32_t)(x)) << PINT_PMCFG_PROD_ENDPTS5_SHIFT)) & PINT_PMCFG_PROD_ENDPTS5_MASK)
#define PINT_PMCFG_PROD_ENDPTS6_MASK (0x40U)
#define PINT_PMCFG_PROD_ENDPTS6_SHIFT (6U)
/*! PROD_ENDPTS6 - Determines whether slice 6 is an endpoint.
* 0b0..No effect. Slice 6 is not an endpoint.
* 0b1..endpoint. Slice 6 is the endpoint of a product term (minterm). Pin interrupt 6 in the NVIC is raised if the minterm evaluates as true.
*/
#define PINT_PMCFG_PROD_ENDPTS6(x) (((uint32_t)(((uint32_t)(x)) << PINT_PMCFG_PROD_ENDPTS6_SHIFT)) & PINT_PMCFG_PROD_ENDPTS6_MASK)
#define PINT_PMCFG_CFG0_MASK (0x700U)
#define PINT_PMCFG_CFG0_SHIFT (8U)
/*! CFG0 - Specifies the match contribution condition for bit slice 0.
* 0b000..Constant HIGH. This bit slice always contributes to a product term match.
* 0b001..Sticky rising edge. Match occurs if a rising edge on the specified input has occurred since the last
* time the edge detection for this bit slice was cleared. This bit is only cleared when the PMCFG or the
* PMSRC registers are written to.
* 0b010..Sticky falling edge. Match occurs if a falling edge on the specified input has occurred since the last
* time the edge detection for this bit slice was cleared. This bit is only cleared when the PMCFG or the
* PMSRC registers are written to.
* 0b011..Sticky rising or falling edge. Match occurs if either a rising or falling edge on the specified input
* has occurred since the last time the edge detection for this bit slice was cleared. This bit is only
* cleared when the PMCFG or the PMSRC registers are written to.
* 0b100..High level. Match (for this bit slice) occurs when there is a high level on the input specified for this bit slice in the PMSRC register.
* 0b101..Low level. Match occurs when there is a low level on the specified input.
* 0b110..Constant 0. This bit slice never contributes to a match (should be used to disable any unused bit slices).
* 0b111..Event. Non-sticky rising or falling edge. Match occurs on an event - i.e. when either a rising or
* falling edge is first detected on the specified input (this is a non-sticky version of value 0x3) . This bit
* is cleared after one clock cycle.
*/
#define PINT_PMCFG_CFG0(x) (((uint32_t)(((uint32_t)(x)) << PINT_PMCFG_CFG0_SHIFT)) & PINT_PMCFG_CFG0_MASK)
#define PINT_PMCFG_CFG1_MASK (0x3800U)
#define PINT_PMCFG_CFG1_SHIFT (11U)
/*! CFG1 - Specifies the match contribution condition for bit slice 1.
* 0b000..Constant HIGH. This bit slice always contributes to a product term match.
* 0b001..Sticky rising edge. Match occurs if a rising edge on the specified input has occurred since the last
* time the edge detection for this bit slice was cleared. This bit is only cleared when the PMCFG or the
* PMSRC registers are written to.
* 0b010..Sticky falling edge. Match occurs if a falling edge on the specified input has occurred since the last
* time the edge detection for this bit slice was cleared. This bit is only cleared when the PMCFG or the
* PMSRC registers are written to.
* 0b011..Sticky rising or falling edge. Match occurs if either a rising or falling edge on the specified input
* has occurred since the last time the edge detection for this bit slice was cleared. This bit is only
* cleared when the PMCFG or the PMSRC registers are written to.
* 0b100..High level. Match (for this bit slice) occurs when there is a high level on the input specified for this bit slice in the PMSRC register.
* 0b101..Low level. Match occurs when there is a low level on the specified input.
* 0b110..Constant 0. This bit slice never contributes to a match (should be used to disable any unused bit slices).
* 0b111..Event. Non-sticky rising or falling edge. Match occurs on an event - i.e. when either a rising or
* falling edge is first detected on the specified input (this is a non-sticky version of value 0x3) . This bit
* is cleared after one clock cycle.
*/
#define PINT_PMCFG_CFG1(x) (((uint32_t)(((uint32_t)(x)) << PINT_PMCFG_CFG1_SHIFT)) & PINT_PMCFG_CFG1_MASK)
#define PINT_PMCFG_CFG2_MASK (0x1C000U)
#define PINT_PMCFG_CFG2_SHIFT (14U)
/*! CFG2 - Specifies the match contribution condition for bit slice 2.
* 0b000..Constant HIGH. This bit slice always contributes to a product term match.
* 0b001..Sticky rising edge. Match occurs if a rising edge on the specified input has occurred since the last
* time the edge detection for this bit slice was cleared. This bit is only cleared when the PMCFG or the
* PMSRC registers are written to.
* 0b010..Sticky falling edge. Match occurs if a falling edge on the specified input has occurred since the last
* time the edge detection for this bit slice was cleared. This bit is only cleared when the PMCFG or the
* PMSRC registers are written to.
* 0b011..Sticky rising or falling edge. Match occurs if either a rising or falling edge on the specified input
* has occurred since the last time the edge detection for this bit slice was cleared. This bit is only
* cleared when the PMCFG or the PMSRC registers are written to.
* 0b100..High level. Match (for this bit slice) occurs when there is a high level on the input specified for this bit slice in the PMSRC register.
* 0b101..Low level. Match occurs when there is a low level on the specified input.
* 0b110..Constant 0. This bit slice never contributes to a match (should be used to disable any unused bit slices).
* 0b111..Event. Non-sticky rising or falling edge. Match occurs on an event - i.e. when either a rising or
* falling edge is first detected on the specified input (this is a non-sticky version of value 0x3) . This bit
* is cleared after one clock cycle.
*/
#define PINT_PMCFG_CFG2(x) (((uint32_t)(((uint32_t)(x)) << PINT_PMCFG_CFG2_SHIFT)) & PINT_PMCFG_CFG2_MASK)
#define PINT_PMCFG_CFG3_MASK (0xE0000U)
#define PINT_PMCFG_CFG3_SHIFT (17U)
/*! CFG3 - Specifies the match contribution condition for bit slice 3.
* 0b000..Constant HIGH. This bit slice always contributes to a product term match.
* 0b001..Sticky rising edge. Match occurs if a rising edge on the specified input has occurred since the last
* time the edge detection for this bit slice was cleared. This bit is only cleared when the PMCFG or the
* PMSRC registers are written to.
* 0b010..Sticky falling edge. Match occurs if a falling edge on the specified input has occurred since the last
* time the edge detection for this bit slice was cleared. This bit is only cleared when the PMCFG or the
* PMSRC registers are written to.
* 0b011..Sticky rising or falling edge. Match occurs if either a rising or falling edge on the specified input
* has occurred since the last time the edge detection for this bit slice was cleared. This bit is only
* cleared when the PMCFG or the PMSRC registers are written to.
* 0b100..High level. Match (for this bit slice) occurs when there is a high level on the input specified for this bit slice in the PMSRC register.
* 0b101..Low level. Match occurs when there is a low level on the specified input.
* 0b110..Constant 0. This bit slice never contributes to a match (should be used to disable any unused bit slices).
* 0b111..Event. Non-sticky rising or falling edge. Match occurs on an event - i.e. when either a rising or
* falling edge is first detected on the specified input (this is a non-sticky version of value 0x3) . This bit
* is cleared after one clock cycle.
*/
#define PINT_PMCFG_CFG3(x) (((uint32_t)(((uint32_t)(x)) << PINT_PMCFG_CFG3_SHIFT)) & PINT_PMCFG_CFG3_MASK)
#define PINT_PMCFG_CFG4_MASK (0x700000U)
#define PINT_PMCFG_CFG4_SHIFT (20U)
/*! CFG4 - Specifies the match contribution condition for bit slice 4.
* 0b000..Constant HIGH. This bit slice always contributes to a product term match.
* 0b001..Sticky rising edge. Match occurs if a rising edge on the specified input has occurred since the last
* time the edge detection for this bit slice was cleared. This bit is only cleared when the PMCFG or the
* PMSRC registers are written to.
* 0b010..Sticky falling edge. Match occurs if a falling edge on the specified input has occurred since the last
* time the edge detection for this bit slice was cleared. This bit is only cleared when the PMCFG or the
* PMSRC registers are written to.
* 0b011..Sticky rising or falling edge. Match occurs if either a rising or falling edge on the specified input
* has occurred since the last time the edge detection for this bit slice was cleared. This bit is only
* cleared when the PMCFG or the PMSRC registers are written to.
* 0b100..High level. Match (for this bit slice) occurs when there is a high level on the input specified for this bit slice in the PMSRC register.
* 0b101..Low level. Match occurs when there is a low level on the specified input.
* 0b110..Constant 0. This bit slice never contributes to a match (should be used to disable any unused bit slices).
* 0b111..Event. Non-sticky rising or falling edge. Match occurs on an event - i.e. when either a rising or
* falling edge is first detected on the specified input (this is a non-sticky version of value 0x3) . This bit
* is cleared after one clock cycle.
*/
#define PINT_PMCFG_CFG4(x) (((uint32_t)(((uint32_t)(x)) << PINT_PMCFG_CFG4_SHIFT)) & PINT_PMCFG_CFG4_MASK)
#define PINT_PMCFG_CFG5_MASK (0x3800000U)
#define PINT_PMCFG_CFG5_SHIFT (23U)
/*! CFG5 - Specifies the match contribution condition for bit slice 5.
* 0b000..Constant HIGH. This bit slice always contributes to a product term match.
* 0b001..Sticky rising edge. Match occurs if a rising edge on the specified input has occurred since the last
* time the edge detection for this bit slice was cleared. This bit is only cleared when the PMCFG or the
* PMSRC registers are written to.
* 0b010..Sticky falling edge. Match occurs if a falling edge on the specified input has occurred since the last
* time the edge detection for this bit slice was cleared. This bit is only cleared when the PMCFG or the
* PMSRC registers are written to.
* 0b011..Sticky rising or falling edge. Match occurs if either a rising or falling edge on the specified input
* has occurred since the last time the edge detection for this bit slice was cleared. This bit is only
* cleared when the PMCFG or the PMSRC registers are written to.
* 0b100..High level. Match (for this bit slice) occurs when there is a high level on the input specified for this bit slice in the PMSRC register.
* 0b101..Low level. Match occurs when there is a low level on the specified input.
* 0b110..Constant 0. This bit slice never contributes to a match (should be used to disable any unused bit slices).
* 0b111..Event. Non-sticky rising or falling edge. Match occurs on an event - i.e. when either a rising or
* falling edge is first detected on the specified input (this is a non-sticky version of value 0x3) . This bit
* is cleared after one clock cycle.
*/
#define PINT_PMCFG_CFG5(x) (((uint32_t)(((uint32_t)(x)) << PINT_PMCFG_CFG5_SHIFT)) & PINT_PMCFG_CFG5_MASK)
#define PINT_PMCFG_CFG6_MASK (0x1C000000U)
#define PINT_PMCFG_CFG6_SHIFT (26U)
/*! CFG6 - Specifies the match contribution condition for bit slice 6.
* 0b000..Constant HIGH. This bit slice always contributes to a product term match.
* 0b001..Sticky rising edge. Match occurs if a rising edge on the specified input has occurred since the last
* time the edge detection for this bit slice was cleared. This bit is only cleared when the PMCFG or the
* PMSRC registers are written to.
* 0b010..Sticky falling edge. Match occurs if a falling edge on the specified input has occurred since the last
* time the edge detection for this bit slice was cleared. This bit is only cleared when the PMCFG or the
* PMSRC registers are written to.
* 0b011..Sticky rising or falling edge. Match occurs if either a rising or falling edge on the specified input
* has occurred since the last time the edge detection for this bit slice was cleared. This bit is only
* cleared when the PMCFG or the PMSRC registers are written to.
* 0b100..High level. Match (for this bit slice) occurs when there is a high level on the input specified for this bit slice in the PMSRC register.
* 0b101..Low level. Match occurs when there is a low level on the specified input.
* 0b110..Constant 0. This bit slice never contributes to a match (should be used to disable any unused bit slices).
* 0b111..Event. Non-sticky rising or falling edge. Match occurs on an event - i.e. when either a rising or
* falling edge is first detected on the specified input (this is a non-sticky version of value 0x3) . This bit
* is cleared after one clock cycle.
*/
#define PINT_PMCFG_CFG6(x) (((uint32_t)(((uint32_t)(x)) << PINT_PMCFG_CFG6_SHIFT)) & PINT_PMCFG_CFG6_MASK)
#define PINT_PMCFG_CFG7_MASK (0xE0000000U)
#define PINT_PMCFG_CFG7_SHIFT (29U)
/*! CFG7 - Specifies the match contribution condition for bit slice 7.
* 0b000..Constant HIGH. This bit slice always contributes to a product term match.
* 0b001..Sticky rising edge. Match occurs if a rising edge on the specified input has occurred since the last
* time the edge detection for this bit slice was cleared. This bit is only cleared when the PMCFG or the
* PMSRC registers are written to.
* 0b010..Sticky falling edge. Match occurs if a falling edge on the specified input has occurred since the last
* time the edge detection for this bit slice was cleared. This bit is only cleared when the PMCFG or the
* PMSRC registers are written to.
* 0b011..Sticky rising or falling edge. Match occurs if either a rising or falling edge on the specified input
* has occurred since the last time the edge detection for this bit slice was cleared. This bit is only
* cleared when the PMCFG or the PMSRC registers are written to.
* 0b100..High level. Match (for this bit slice) occurs when there is a high level on the input specified for this bit slice in the PMSRC register.
* 0b101..Low level. Match occurs when there is a low level on the specified input.
* 0b110..Constant 0. This bit slice never contributes to a match (should be used to disable any unused bit slices).
* 0b111..Event. Non-sticky rising or falling edge. Match occurs on an event - i.e. when either a rising or
* falling edge is first detected on the specified input (this is a non-sticky version of value 0x3) . This bit
* is cleared after one clock cycle.
*/
#define PINT_PMCFG_CFG7(x) (((uint32_t)(((uint32_t)(x)) << PINT_PMCFG_CFG7_SHIFT)) & PINT_PMCFG_CFG7_MASK)
/*! @} */
/*!
* @}
*/ /* end of group PINT_Register_Masks */
/* PINT - Peripheral instance base addresses */
/** Peripheral PINT base address */
#define PINT_BASE (0xA0004000u)
/** Peripheral PINT base pointer */
#define PINT ((PINT_Type *)PINT_BASE)
/** Array initializer of PINT peripheral base addresses */
#define PINT_BASE_ADDRS { PINT_BASE }
/** Array initializer of PINT peripheral base pointers */
#define PINT_BASE_PTRS { PINT }
/** Interrupt vectors for the PINT peripheral type */
#define PINT_IRQS { PIN_INT0_IRQn, PIN_INT1_IRQn, PIN_INT2_IRQn, PIN_INT3_IRQn, PIN_INT4_IRQn, PIN_INT5_IRQn, PIN_INT6_IRQn, PIN_INT7_IRQn }
/*!
* @}
*/ /* end of group PINT_Peripheral_Access_Layer */
/* ----------------------------------------------------------------------------
-- PLU Peripheral Access Layer
---------------------------------------------------------------------------- */
/*!
* @addtogroup PLU_Peripheral_Access_Layer PLU Peripheral Access Layer
* @{
*/
/** PLU - Register Layout Typedef */
typedef struct {
struct { /* offset: 0x0, array step: 0x20 */
__IO uint32_t INP_MUX[5]; /**< LUT0 input 0 MUX..LUT25 input 4 MUX, array offset: 0x0, array step: index*0x20, index2*0x4 */
uint8_t RESERVED_0[12];
} LUT[26];
uint8_t RESERVED_0[1216];
__IO uint32_t LUT_TRUTH[26]; /**< Specifies the Truth Table contents for LUT0..Specifies the Truth Table contents for LUT25, array offset: 0x800, array step: 0x4 */
uint8_t RESERVED_1[152];
__I uint32_t OUTPUTS; /**< Provides the current state of the 8 designated PLU Outputs., offset: 0x900 */
uint8_t RESERVED_2[764];
__IO uint32_t OUTPUT_MUX[8]; /**< Selects the source to be connected to PLU Output 0..Selects the source to be connected to PLU Output 7, array offset: 0xC00, array step: 0x4 */
} PLU_Type;
/* ----------------------------------------------------------------------------
-- PLU Register Masks
---------------------------------------------------------------------------- */
/*!
* @addtogroup PLU_Register_Masks PLU Register Masks
* @{
*/
/*! @name LUT_INP_MUX - LUT0 input 0 MUX..LUT25 input 4 MUX */
/*! @{ */
#define PLU_LUT_INP_MUX_LUTn_INPx_MASK (0x3FU)
#define PLU_LUT_INP_MUX_LUTn_INPx_SHIFT (0U)
/*! LUTn_INPx - Selects the input source to be connected to LUT25 input4. For each LUT, the slot
* associated with the output from LUTn itself is tied low.
* 0b000000..The PLU primary inputs 0.
* 0b000001..The PLU primary inputs 1.
* 0b000010..The PLU primary inputs 2.
* 0b000011..The PLU primary inputs 3.
* 0b000100..The PLU primary inputs 4.
* 0b000101..The PLU primary inputs 5.
* 0b000110..The output of LUT0.
* 0b000111..The output of LUT1.
* 0b001000..The output of LUT2.
* 0b001001..The output of LUT3.
* 0b001010..The output of LUT4.
* 0b001011..The output of LUT5.
* 0b001100..The output of LUT6.
* 0b001101..The output of LUT7.
* 0b001110..The output of LUT8.
* 0b001111..The output of LUT9.
* 0b010000..The output of LUT10.
* 0b010001..The output of LUT11.
* 0b010010..The output of LUT12.
* 0b010011..The output of LUT13.
* 0b010100..The output of LUT14.
* 0b010101..The output of LUT15.
* 0b010110..The output of LUT16.
* 0b010111..The output of LUT17.
* 0b011000..The output of LUT18.
* 0b011001..The output of LUT19.
* 0b011010..The output of LUT20.
* 0b011011..The output of LUT21.
* 0b011100..The output of LUT22.
* 0b011101..The output of LUT23.
* 0b011110..The output of LUT24.
* 0b011111..The output of LUT25.
* 0b100000..state(0).
* 0b100001..state(1).
* 0b100010..state(2).
* 0b100011..state(3).
*/
#define PLU_LUT_INP_MUX_LUTn_INPx(x) (((uint32_t)(((uint32_t)(x)) << PLU_LUT_INP_MUX_LUTn_INPx_SHIFT)) & PLU_LUT_INP_MUX_LUTn_INPx_MASK)
/*! @} */
/* The count of PLU_LUT_INP_MUX */
#define PLU_LUT_INP_MUX_COUNT (26U)
/* The count of PLU_LUT_INP_MUX */
#define PLU_LUT_INP_MUX_COUNT2 (5U)
/*! @name LUT_TRUTH - Specifies the Truth Table contents for LUT0..Specifies the Truth Table contents for LUT25 */
/*! @{ */
#define PLU_LUT_TRUTH_LUTn_TRUTH_MASK (0xFFFFFFFFU)
#define PLU_LUT_TRUTH_LUTn_TRUTH_SHIFT (0U)
/*! LUTn_TRUTH - Specifies the Truth Table contents for LUT25..
*/
#define PLU_LUT_TRUTH_LUTn_TRUTH(x) (((uint32_t)(((uint32_t)(x)) << PLU_LUT_TRUTH_LUTn_TRUTH_SHIFT)) & PLU_LUT_TRUTH_LUTn_TRUTH_MASK)
/*! @} */
/* The count of PLU_LUT_TRUTH */
#define PLU_LUT_TRUTH_COUNT (26U)
/*! @name OUTPUTS - Provides the current state of the 8 designated PLU Outputs. */
/*! @{ */
#define PLU_OUTPUTS_OUTPUT_STATE_MASK (0xFFU)
#define PLU_OUTPUTS_OUTPUT_STATE_SHIFT (0U)
/*! OUTPUT_STATE - Provides the current state of the 8 designated PLU Outputs..
*/
#define PLU_OUTPUTS_OUTPUT_STATE(x) (((uint32_t)(((uint32_t)(x)) << PLU_OUTPUTS_OUTPUT_STATE_SHIFT)) & PLU_OUTPUTS_OUTPUT_STATE_MASK)
/*! @} */
/*! @name OUTPUT_MUX - Selects the source to be connected to PLU Output 0..Selects the source to be connected to PLU Output 7 */
/*! @{ */
#define PLU_OUTPUT_MUX_OUTPUTn_MASK (0x1FU)
#define PLU_OUTPUT_MUX_OUTPUTn_SHIFT (0U)
/*! OUTPUTn - Selects the source to be connected to PLU Output 7.
* 0b00000..The PLU output 0.
* 0b00001..The PLU output 1.
* 0b00010..The PLU output 2.
* 0b00011..The PLU output 3.
* 0b00100..The PLU output 4.
* 0b00101..The PLU output 5.
* 0b00110..The PLU output 6.
* 0b00111..The PLU output 7.
* 0b01000..The PLU output 8.
* 0b01001..The PLU output 9.
* 0b01010..The PLU output 10.
* 0b01011..The PLU output 11.
* 0b01100..The PLU output 12.
* 0b01101..The PLU output 13.
* 0b01110..The PLU output 14.
* 0b01111..The PLU output 15.
* 0b10000..The PLU output 16.
* 0b10001..The PLU output 17.
* 0b10010..The PLU output 18.
* 0b10011..The PLU output 19.
* 0b10100..The PLU output 20.
* 0b10101..The PLU output 21.
* 0b10110..The PLU output 22.
* 0b10111..The PLU output 23.
* 0b11000..The PLU output 24.
* 0b11001..The PLU output 25.
* 0b11010..state(0).
* 0b11011..state(1).
* 0b11100..state(2).
* 0b11101..state(3).
*/
#define PLU_OUTPUT_MUX_OUTPUTn(x) (((uint32_t)(((uint32_t)(x)) << PLU_OUTPUT_MUX_OUTPUTn_SHIFT)) & PLU_OUTPUT_MUX_OUTPUTn_MASK)
/*! @} */
/* The count of PLU_OUTPUT_MUX */
#define PLU_OUTPUT_MUX_COUNT (8U)
/*!
* @}
*/ /* end of group PLU_Register_Masks */
/* PLU - Peripheral instance base addresses */
/** Peripheral PLU base address */
#define PLU_BASE (0x40028000u)
/** Peripheral PLU base pointer */
#define PLU ((PLU_Type *)PLU_BASE)
/** Array initializer of PLU peripheral base addresses */
#define PLU_BASE_ADDRS { PLU_BASE }
/** Array initializer of PLU peripheral base pointers */
#define PLU_BASE_PTRS { PLU }
/*!
* @}
*/ /* end of group PLU_Peripheral_Access_Layer */
/* ----------------------------------------------------------------------------
-- PMU Peripheral Access Layer
---------------------------------------------------------------------------- */
/*!
* @addtogroup PMU_Peripheral_Access_Layer PMU Peripheral Access Layer
* @{
*/
/** PMU - Register Layout Typedef */
typedef struct {
__IO uint32_t PCON; /**< Power control register, offset: 0x0 */
__IO uint32_t GPREG[5]; /**< General purpose register N, array offset: 0x4, array step: 0x4 */
uint8_t RESERVED_0[8];
__IO uint32_t WUSRCREG; /**< Pin wake-up source register, offset: 0x20 */
__IO uint32_t WUENAREG; /**< Pin wake-up enable register, offset: 0x24 */
} PMU_Type;
/* ----------------------------------------------------------------------------
-- PMU Register Masks
---------------------------------------------------------------------------- */
/*!
* @addtogroup PMU_Register_Masks PMU Register Masks
* @{
*/
/*! @name PCON - Power control register */
/*! @{ */
#define PMU_PCON_PM_MASK (0x7U)
#define PMU_PCON_PM_SHIFT (0U)
/*! PM - Power mode
* 0b000..Default. The part is in active or sleep mode.
* 0b001..Deep-sleep mode. ARM WFI will enter Deep-sleep mode.
* 0b010..Power-down mode. ARM WFI will enter Power-down mode.
* 0b011..Deep power-down mode. ARM WFI will enter Deep-power down mode (ARM Cortex-M0+ core powered-down).
*/
#define PMU_PCON_PM(x) (((uint32_t)(((uint32_t)(x)) << PMU_PCON_PM_SHIFT)) & PMU_PCON_PM_MASK)
#define PMU_PCON_NODPD_MASK (0x8U)
#define PMU_PCON_NODPD_SHIFT (3U)
/*! NODPD - A 1 in this bit prevents entry to Deep power-down mode when 0x3 is written to the PM
* field above, the SLEEPDEEP bit is set, and a WFI is executed. This bit is cleared only by
* power-on reset, so writing a one to this bit locks the part in a mode in which Deep power-down mode
* is blocked.
*/
#define PMU_PCON_NODPD(x) (((uint32_t)(((uint32_t)(x)) << PMU_PCON_NODPD_SHIFT)) & PMU_PCON_NODPD_MASK)
#define PMU_PCON_SLEEPFLAG_MASK (0x100U)
#define PMU_PCON_SLEEPFLAG_SHIFT (8U)
/*! SLEEPFLAG - Sleep mode flag
* 0b0..Active mode. Read: No power-down mode entered. Part is in Active mode. Write: No effect.
* 0b1..Low power mode. Read: Sleep, Deep-sleep or Power-down mode entered. Write: Writing a 1 clears the SLEEPFLAG bit to 0.
*/
#define PMU_PCON_SLEEPFLAG(x) (((uint32_t)(((uint32_t)(x)) << PMU_PCON_SLEEPFLAG_SHIFT)) & PMU_PCON_SLEEPFLAG_MASK)
#define PMU_PCON_DPDFLAG_MASK (0x800U)
#define PMU_PCON_DPDFLAG_SHIFT (11U)
/*! DPDFLAG - Deep power-down flag
* 0b0..Not Deep power-down. Read: Deep power-down mode not entered. Write: No effect.
* 0b1..Deep power-down. Read: Deep power-down mode entered. Write: Clear the Deep power-down flag.
*/
#define PMU_PCON_DPDFLAG(x) (((uint32_t)(((uint32_t)(x)) << PMU_PCON_DPDFLAG_SHIFT)) & PMU_PCON_DPDFLAG_MASK)
/*! @} */
/*! @name GPREG - General purpose register N */
/*! @{ */
#define PMU_GPREG_GPDATA_MASK (0xFFFFFFFFU)
#define PMU_GPREG_GPDATA_SHIFT (0U)
/*! GPDATA - Data retained during Deep power-down mode.
*/
#define PMU_GPREG_GPDATA(x) (((uint32_t)(((uint32_t)(x)) << PMU_GPREG_GPDATA_SHIFT)) & PMU_GPREG_GPDATA_MASK)
/*! @} */
/* The count of PMU_GPREG */
#define PMU_GPREG_COUNT (5U)
/*! @name WUSRCREG - Pin wake-up source register */
/*! @{ */
#define PMU_WUSRCREG_WUSRCREG_MASK (0xFFU)
#define PMU_WUSRCREG_WUSRCREG_SHIFT (0U)
/*! WUSRCREG - Pin wake-up source
*/
#define PMU_WUSRCREG_WUSRCREG(x) (((uint32_t)(((uint32_t)(x)) << PMU_WUSRCREG_WUSRCREG_SHIFT)) & PMU_WUSRCREG_WUSRCREG_MASK)
/*! @} */
/*! @name WUENAREG - Pin wake-up enable register */
/*! @{ */
#define PMU_WUENAREG_WUENAREG_MASK (0xFFU)
#define PMU_WUENAREG_WUENAREG_SHIFT (0U)
/*! WUENAREG - Pin wake-up enable
*/
#define PMU_WUENAREG_WUENAREG(x) (((uint32_t)(((uint32_t)(x)) << PMU_WUENAREG_WUENAREG_SHIFT)) & PMU_WUENAREG_WUENAREG_MASK)
/*! @} */
/*!
* @}
*/ /* end of group PMU_Register_Masks */
/* PMU - Peripheral instance base addresses */
/** Peripheral PMU base address */
#define PMU_BASE (0x40020000u)
/** Peripheral PMU base pointer */
#define PMU ((PMU_Type *)PMU_BASE)
/** Array initializer of PMU peripheral base addresses */
#define PMU_BASE_ADDRS { PMU_BASE }
/** Array initializer of PMU peripheral base pointers */
#define PMU_BASE_PTRS { PMU }
/*!
* @}
*/ /* end of group PMU_Peripheral_Access_Layer */
/* ----------------------------------------------------------------------------
-- SPI Peripheral Access Layer
---------------------------------------------------------------------------- */
/*!
* @addtogroup SPI_Peripheral_Access_Layer SPI Peripheral Access Layer
* @{
*/
/** SPI - Register Layout Typedef */
typedef struct {
__IO uint32_t CFG; /**< SPI Configuration register, offset: 0x0 */
__IO uint32_t DLY; /**< SPI Delay register, offset: 0x4 */
__IO uint32_t STAT; /**< SPI Status. Some status flags can be cleared by writing a 1 to that bit position, offset: 0x8 */
__IO uint32_t INTENSET; /**< SPI Interrupt Enable read and Set. A complete value may be read from this register. Writing a 1 to any implemented bit position causes that bit to be set., offset: 0xC */
__O uint32_t INTENCLR; /**< SPI Interrupt Enable Clear. Writing a 1 to any implemented bit position causes the corresponding bit in INTENSET to be cleared., offset: 0x10 */
__I uint32_t RXDAT; /**< SPI Receive Data, offset: 0x14 */
__IO uint32_t TXDATCTL; /**< SPI Transmit Data with Control, offset: 0x18 */
__IO uint32_t TXDAT; /**< SPI Transmit Data., offset: 0x1C */
__IO uint32_t TXCTL; /**< SPI Transmit Control, offset: 0x20 */
__IO uint32_t DIV; /**< SPI clock Divider, offset: 0x24 */
__I uint32_t INTSTAT; /**< SPI Interrupt Status, offset: 0x28 */
} SPI_Type;
/* ----------------------------------------------------------------------------
-- SPI Register Masks
---------------------------------------------------------------------------- */
/*!
* @addtogroup SPI_Register_Masks SPI Register Masks
* @{
*/
/*! @name CFG - SPI Configuration register */
/*! @{ */
#define SPI_CFG_ENABLE_MASK (0x1U)
#define SPI_CFG_ENABLE_SHIFT (0U)
/*! ENABLE - SPI enable.
* 0b0..Disabled. The SPI is disabled and the internal state machine and counters are reset.
* 0b1..Enabled. The SPI is enabled for operation.
*/
#define SPI_CFG_ENABLE(x) (((uint32_t)(((uint32_t)(x)) << SPI_CFG_ENABLE_SHIFT)) & SPI_CFG_ENABLE_MASK)
#define SPI_CFG_MASTER_MASK (0x4U)
#define SPI_CFG_MASTER_SHIFT (2U)
/*! MASTER - Master mode select.
* 0b0..Slave mode. The SPI will operate in slave mode. SCK, MOSI, and the SSEL signals are inputs, MISO is an output.
* 0b1..Master mode. The SPI will operate in master mode. SCK, MOSI, and the SSEL signals are outputs, MISO is an input.
*/
#define SPI_CFG_MASTER(x) (((uint32_t)(((uint32_t)(x)) << SPI_CFG_MASTER_SHIFT)) & SPI_CFG_MASTER_MASK)
#define SPI_CFG_LSBF_MASK (0x8U)
#define SPI_CFG_LSBF_SHIFT (3U)
/*! LSBF - LSB First mode enable.
* 0b0..Standard. Data is transmitted and received in standard MSB first order.
* 0b1..Reverse. Data is transmitted and received in reverse order (LSB first).
*/
#define SPI_CFG_LSBF(x) (((uint32_t)(((uint32_t)(x)) << SPI_CFG_LSBF_SHIFT)) & SPI_CFG_LSBF_MASK)
#define SPI_CFG_CPHA_MASK (0x10U)
#define SPI_CFG_CPHA_SHIFT (4U)
/*! CPHA - Clock Phase select.
* 0b0..Change. The SPI captures serial data on the first clock transition of the transfer (when the clock
* changes away from the rest state). Data is changed on the following edge.
* 0b1..Capture. The SPI changes serial data on the first clock transition of the transfer (when the clock
* changes away from the rest state). Data is captured on the following edge.
*/
#define SPI_CFG_CPHA(x) (((uint32_t)(((uint32_t)(x)) << SPI_CFG_CPHA_SHIFT)) & SPI_CFG_CPHA_MASK)
#define SPI_CFG_CPOL_MASK (0x20U)
#define SPI_CFG_CPOL_SHIFT (5U)
/*! CPOL - Clock Polarity select.
* 0b0..Low. The rest state of the clock (between transfers) is low.
* 0b1..High. The rest state of the clock (between transfers) is high.
*/
#define SPI_CFG_CPOL(x) (((uint32_t)(((uint32_t)(x)) << SPI_CFG_CPOL_SHIFT)) & SPI_CFG_CPOL_MASK)
#define SPI_CFG_LOOP_MASK (0x80U)
#define SPI_CFG_LOOP_SHIFT (7U)
/*! LOOP - Loopback mode enable. Loopback mode applies only to Master mode, and connects transmit
* and receive data connected together to allow simple software testing.
* 0b0..Disabled.
* 0b1..Enabled.
*/
#define SPI_CFG_LOOP(x) (((uint32_t)(((uint32_t)(x)) << SPI_CFG_LOOP_SHIFT)) & SPI_CFG_LOOP_MASK)
#define SPI_CFG_SPOL0_MASK (0x100U)
#define SPI_CFG_SPOL0_SHIFT (8U)
/*! SPOL0 - SSEL0 Polarity select.
* 0b0..Low. The SSEL0 pin is active low.
* 0b1..High. The SSEL0 pin is active high.
*/
#define SPI_CFG_SPOL0(x) (((uint32_t)(((uint32_t)(x)) << SPI_CFG_SPOL0_SHIFT)) & SPI_CFG_SPOL0_MASK)
#define SPI_CFG_SPOL1_MASK (0x200U)
#define SPI_CFG_SPOL1_SHIFT (9U)
/*! SPOL1 - SSEL1 Polarity select.
* 0b0..Low. The SSEL1 pin is active low.
* 0b1..High. The SSEL1 pin is active high.
*/
#define SPI_CFG_SPOL1(x) (((uint32_t)(((uint32_t)(x)) << SPI_CFG_SPOL1_SHIFT)) & SPI_CFG_SPOL1_MASK)
/*! @} */
/*! @name DLY - SPI Delay register */
/*! @{ */
#define SPI_DLY_PRE_DELAY_MASK (0xFU)
#define SPI_DLY_PRE_DELAY_SHIFT (0U)
/*! PRE_DELAY - Controls the amount of time between SSEL assertion and the beginning of a data
* transfer. There is always one SPI clock time between SSEL assertion and the first clock edge. This
* is not considered part of the pre-delay. 0x0 = No additional time is inserted. 0x1 = 1 SPI
* clock time is inserted. 0x2 = 2 SPI clock times are inserted. 0xF = 15 SPI clock times are
* inserted.
*/
#define SPI_DLY_PRE_DELAY(x) (((uint32_t)(((uint32_t)(x)) << SPI_DLY_PRE_DELAY_SHIFT)) & SPI_DLY_PRE_DELAY_MASK)
#define SPI_DLY_POST_DELAY_MASK (0xF0U)
#define SPI_DLY_POST_DELAY_SHIFT (4U)
/*! POST_DELAY - Controls the amount of time between the end of a data transfer and SSEL
* deassertion. 0x0 = No additional time is inserted. 0x1 = 1 SPI clock time is inserted. 0x2 = 2 SPI clock
* times are inserted. 0xF = 15 SPI clock times are inserted.
*/
#define SPI_DLY_POST_DELAY(x) (((uint32_t)(((uint32_t)(x)) << SPI_DLY_POST_DELAY_SHIFT)) & SPI_DLY_POST_DELAY_MASK)
#define SPI_DLY_FRAME_DELAY_MASK (0xF00U)
#define SPI_DLY_FRAME_DELAY_SHIFT (8U)
/*! FRAME_DELAY - If the EOF flag is set, controls the minimum amount of time between the current
* frame and the next frame (or SSEL deassertion if EOT). 0x0 = No additional time is inserted. 0x1
* = 1 SPI clock time is inserted. 0x2 = 2 SPI clock times are inserted. 0xF = 15 SPI clock
* times are inserted.
*/
#define SPI_DLY_FRAME_DELAY(x) (((uint32_t)(((uint32_t)(x)) << SPI_DLY_FRAME_DELAY_SHIFT)) & SPI_DLY_FRAME_DELAY_MASK)
#define SPI_DLY_TRANSFER_DELAY_MASK (0xF000U)
#define SPI_DLY_TRANSFER_DELAY_SHIFT (12U)
/*! TRANSFER_DELAY - Controls the minimum amount of time that the SSEL is deasserted between
* transfers. 0x0 = The minimum time that SSEL is deasserted is 1 SPI clock time. (Zero added time.) 0x1
* = The minimum time that SSEL is deasserted is 2 SPI clock times. 0x2 = The minimum time that
* SSEL is deasserted is 3 SPI clock times. 0xF = The minimum time that SSEL is deasserted is 16
* SPI clock times.
*/
#define SPI_DLY_TRANSFER_DELAY(x) (((uint32_t)(((uint32_t)(x)) << SPI_DLY_TRANSFER_DELAY_SHIFT)) & SPI_DLY_TRANSFER_DELAY_MASK)
/*! @} */
/*! @name STAT - SPI Status. Some status flags can be cleared by writing a 1 to that bit position */
/*! @{ */
#define SPI_STAT_RXRDY_MASK (0x1U)
#define SPI_STAT_RXRDY_SHIFT (0U)
/*! RXRDY - Receiver Ready flag. When 1, indicates that data is available to be read from the
* receiver buffer. Cleared after a read of the RXDAT register.
*/
#define SPI_STAT_RXRDY(x) (((uint32_t)(((uint32_t)(x)) << SPI_STAT_RXRDY_SHIFT)) & SPI_STAT_RXRDY_MASK)
#define SPI_STAT_TXRDY_MASK (0x2U)
#define SPI_STAT_TXRDY_SHIFT (1U)
/*! TXRDY - Transmitter Ready flag. When 1, this bit indicates that data may be written to the
* transmit buffer. Previous data may still be in the process of being transmitted. Cleared when data
* is written to TXDAT or TXDATCTL until the data is moved to the transmit shift register.
*/
#define SPI_STAT_TXRDY(x) (((uint32_t)(((uint32_t)(x)) << SPI_STAT_TXRDY_SHIFT)) & SPI_STAT_TXRDY_MASK)
#define SPI_STAT_RXOV_MASK (0x4U)
#define SPI_STAT_RXOV_SHIFT (2U)
/*! RXOV - Receiver Overrun interrupt flag. This flag applies only to slave mode (Master = 0). This
* flag is set when the beginning of a received character is detected while the receiver buffer
* is still in use. If this occurs, the receiver buffer contents are preserved, and the incoming
* data is lost. Data received by the SPI should be considered undefined if RxOv is set.
*/
#define SPI_STAT_RXOV(x) (((uint32_t)(((uint32_t)(x)) << SPI_STAT_RXOV_SHIFT)) & SPI_STAT_RXOV_MASK)
#define SPI_STAT_TXUR_MASK (0x8U)
#define SPI_STAT_TXUR_SHIFT (3U)
/*! TXUR - Transmitter Underrun interrupt flag. This flag applies only to slave mode (Master = 0).
* In this case, the transmitter must begin sending new data on the next input clock if the
* transmitter is idle. If that data is not available in the transmitter holding register at that
* point, there is no data to transmit and the TXUR flag is set. Data transmitted by the SPI should be
* considered undefined if TXUR is set.
*/
#define SPI_STAT_TXUR(x) (((uint32_t)(((uint32_t)(x)) << SPI_STAT_TXUR_SHIFT)) & SPI_STAT_TXUR_MASK)
#define SPI_STAT_SSA_MASK (0x10U)
#define SPI_STAT_SSA_SHIFT (4U)
/*! SSA - Slave Select Assert. This flag is set whenever any slave select transitions from
* deasserted to asserted, in both master and slave modes. This allows determining when the SPI
* transmit/receive functions become busy, and allows waking up the device from reduced power modes when a
* slave mode access begins. This flag is cleared by software.
*/
#define SPI_STAT_SSA(x) (((uint32_t)(((uint32_t)(x)) << SPI_STAT_SSA_SHIFT)) & SPI_STAT_SSA_MASK)
#define SPI_STAT_SSD_MASK (0x20U)
#define SPI_STAT_SSD_SHIFT (5U)
/*! SSD - Slave Select Deassert. This flag is set whenever any asserted slave selects transition to
* deasserted, in both master and slave modes. This allows determining when the SPI
* transmit/receive functions become idle. This flag is cleared by software.
*/
#define SPI_STAT_SSD(x) (((uint32_t)(((uint32_t)(x)) << SPI_STAT_SSD_SHIFT)) & SPI_STAT_SSD_MASK)
#define SPI_STAT_STALLED_MASK (0x40U)
#define SPI_STAT_STALLED_SHIFT (6U)
/*! STALLED - Stalled status flag. This indicates whether the SPI is currently in a stall condition.
*/
#define SPI_STAT_STALLED(x) (((uint32_t)(((uint32_t)(x)) << SPI_STAT_STALLED_SHIFT)) & SPI_STAT_STALLED_MASK)
#define SPI_STAT_ENDTRANSFER_MASK (0x80U)
#define SPI_STAT_ENDTRANSFER_SHIFT (7U)
/*! ENDTRANSFER - End Transfer control bit. Software can set this bit to force an end to the current
* transfer when the transmitter finishes any activity already in progress, as if the EOT flag
* had been set prior to the last transmission. This capability is included to support cases where
* it is not known when transmit data is written that it will be the end of a transfer. The bit
* is cleared when the transmitter becomes idle as the transfer comes to an end. Forcing an end
* of transfer in this manner causes any specified FRAME_DELAY and TRANSFER_DELAY to be inserted.
*/
#define SPI_STAT_ENDTRANSFER(x) (((uint32_t)(((uint32_t)(x)) << SPI_STAT_ENDTRANSFER_SHIFT)) & SPI_STAT_ENDTRANSFER_MASK)
#define SPI_STAT_MSTIDLE_MASK (0x100U)
#define SPI_STAT_MSTIDLE_SHIFT (8U)
/*! MSTIDLE - Master idle status flag. This bit is 1 whenever the SPI master function is fully idle.
* This means that the transmit holding register is empty and the transmitter is not in the
* process of sending data.
*/
#define SPI_STAT_MSTIDLE(x) (((uint32_t)(((uint32_t)(x)) << SPI_STAT_MSTIDLE_SHIFT)) & SPI_STAT_MSTIDLE_MASK)
/*! @} */
/*! @name INTENSET - SPI Interrupt Enable read and Set. A complete value may be read from this register. Writing a 1 to any implemented bit position causes that bit to be set. */
/*! @{ */
#define SPI_INTENSET_RXRDYEN_MASK (0x1U)
#define SPI_INTENSET_RXRDYEN_SHIFT (0U)
/*! RXRDYEN - Determines whether an interrupt occurs when receiver data is available.
* 0b0..No interrupt will be generated when receiver data is available.
* 0b1..An interrupt will be generated when receiver data is available in the RXDAT register.
*/
#define SPI_INTENSET_RXRDYEN(x) (((uint32_t)(((uint32_t)(x)) << SPI_INTENSET_RXRDYEN_SHIFT)) & SPI_INTENSET_RXRDYEN_MASK)
#define SPI_INTENSET_TXRDYEN_MASK (0x2U)
#define SPI_INTENSET_TXRDYEN_SHIFT (1U)
/*! TXRDYEN - Determines whether an interrupt occurs when the transmitter holding register is available.
* 0b0..No interrupt will be generated when the transmitter holding register is available.
* 0b1..An interrupt will be generated when data may be written to TXDAT.
*/
#define SPI_INTENSET_TXRDYEN(x) (((uint32_t)(((uint32_t)(x)) << SPI_INTENSET_TXRDYEN_SHIFT)) & SPI_INTENSET_TXRDYEN_MASK)
#define SPI_INTENSET_RXOVEN_MASK (0x4U)
#define SPI_INTENSET_RXOVEN_SHIFT (2U)
/*! RXOVEN - Determines whether an interrupt occurs when a receiver overrun occurs. This happens in
* slave mode when there is a need for the receiver to move newly received data to the RXDAT
* register when it is already in use. The interface prevents receiver overrun in Master mode by not
* allowing a new transmission to begin when a receiver overrun would otherwise occur.
* 0b0..No interrupt will be generated when a receiver overrun occurs.
* 0b1..An interrupt will be generated if a receiver overrun occurs.
*/
#define SPI_INTENSET_RXOVEN(x) (((uint32_t)(((uint32_t)(x)) << SPI_INTENSET_RXOVEN_SHIFT)) & SPI_INTENSET_RXOVEN_MASK)
#define SPI_INTENSET_TXUREN_MASK (0x8U)
#define SPI_INTENSET_TXUREN_SHIFT (3U)
/*! TXUREN - Determines whether an interrupt occurs when a transmitter underrun occurs. This happens
* in slave mode when there is a need to transmit data when none is available.
* 0b0..No interrupt will be generated when the transmitter underruns.
* 0b1..An interrupt will be generated if the transmitter underruns.
*/
#define SPI_INTENSET_TXUREN(x) (((uint32_t)(((uint32_t)(x)) << SPI_INTENSET_TXUREN_SHIFT)) & SPI_INTENSET_TXUREN_MASK)
#define SPI_INTENSET_SSAEN_MASK (0x10U)
#define SPI_INTENSET_SSAEN_SHIFT (4U)
/*! SSAEN - Determines whether an interrupt occurs when the Slave Select is asserted.
* 0b0..No interrupt will be generated when any Slave Select transitions from deasserted to asserted.
* 0b1..An interrupt will be generated when any Slave Select transitions from deasserted to asserted.
*/
#define SPI_INTENSET_SSAEN(x) (((uint32_t)(((uint32_t)(x)) << SPI_INTENSET_SSAEN_SHIFT)) & SPI_INTENSET_SSAEN_MASK)
#define SPI_INTENSET_SSDEN_MASK (0x20U)
#define SPI_INTENSET_SSDEN_SHIFT (5U)
/*! SSDEN - Determines whether an interrupt occurs when the Slave Select is deasserted.
* 0b0..No interrupt will be generated when all asserted Slave Selects transition to deasserted.
* 0b1..An interrupt will be generated when all asserted Slave Selects transition to deasserted.
*/
#define SPI_INTENSET_SSDEN(x) (((uint32_t)(((uint32_t)(x)) << SPI_INTENSET_SSDEN_SHIFT)) & SPI_INTENSET_SSDEN_MASK)
#define SPI_INTENSET_MSTIDLEEN_MASK (0x100U)
#define SPI_INTENSET_MSTIDLEEN_SHIFT (8U)
/*! MSTIDLEEN - Determines whether an interrupt occurs when the MSTIDLE enable
* 0b0..No interrupt will be generated when MSTIDLE enabled.
* 0b1..An interrupt will be generated when MSTIDLE enabled.
*/
#define SPI_INTENSET_MSTIDLEEN(x) (((uint32_t)(((uint32_t)(x)) << SPI_INTENSET_MSTIDLEEN_SHIFT)) & SPI_INTENSET_MSTIDLEEN_MASK)
/*! @} */
/*! @name INTENCLR - SPI Interrupt Enable Clear. Writing a 1 to any implemented bit position causes the corresponding bit in INTENSET to be cleared. */
/*! @{ */
#define SPI_INTENCLR_RXRDYEN_MASK (0x1U)
#define SPI_INTENCLR_RXRDYEN_SHIFT (0U)
/*! RXRDYEN - Writing 1 clears the corresponding bits in the INTENSET register.
*/
#define SPI_INTENCLR_RXRDYEN(x) (((uint32_t)(((uint32_t)(x)) << SPI_INTENCLR_RXRDYEN_SHIFT)) & SPI_INTENCLR_RXRDYEN_MASK)
#define SPI_INTENCLR_TXRDYEN_MASK (0x2U)
#define SPI_INTENCLR_TXRDYEN_SHIFT (1U)
/*! TXRDYEN - Writing 1 clears the corresponding bits in the INTENSET register.
*/
#define SPI_INTENCLR_TXRDYEN(x) (((uint32_t)(((uint32_t)(x)) << SPI_INTENCLR_TXRDYEN_SHIFT)) & SPI_INTENCLR_TXRDYEN_MASK)
#define SPI_INTENCLR_RXOVEN_MASK (0x4U)
#define SPI_INTENCLR_RXOVEN_SHIFT (2U)
/*! RXOVEN - Writing 1 clears the corresponding bits in the INTENSET register.
*/
#define SPI_INTENCLR_RXOVEN(x) (((uint32_t)(((uint32_t)(x)) << SPI_INTENCLR_RXOVEN_SHIFT)) & SPI_INTENCLR_RXOVEN_MASK)
#define SPI_INTENCLR_TXUREN_MASK (0x8U)
#define SPI_INTENCLR_TXUREN_SHIFT (3U)
/*! TXUREN - Writing 1 clears the corresponding bits in the INTENSET register.
*/
#define SPI_INTENCLR_TXUREN(x) (((uint32_t)(((uint32_t)(x)) << SPI_INTENCLR_TXUREN_SHIFT)) & SPI_INTENCLR_TXUREN_MASK)
#define SPI_INTENCLR_SSAEN_MASK (0x10U)
#define SPI_INTENCLR_SSAEN_SHIFT (4U)
/*! SSAEN - Writing 1 clears the corresponding bits in the INTENSET register.
*/
#define SPI_INTENCLR_SSAEN(x) (((uint32_t)(((uint32_t)(x)) << SPI_INTENCLR_SSAEN_SHIFT)) & SPI_INTENCLR_SSAEN_MASK)
#define SPI_INTENCLR_SSDEN_MASK (0x20U)
#define SPI_INTENCLR_SSDEN_SHIFT (5U)
/*! SSDEN - Writing 1 clears the corresponding bits in the INTENSET register.
*/
#define SPI_INTENCLR_SSDEN(x) (((uint32_t)(((uint32_t)(x)) << SPI_INTENCLR_SSDEN_SHIFT)) & SPI_INTENCLR_SSDEN_MASK)
#define SPI_INTENCLR_MSTIDLE_MASK (0x100U)
#define SPI_INTENCLR_MSTIDLE_SHIFT (8U)
/*! MSTIDLE - Writing 1 clears the corresponding bits in the INTENSET register.
*/
#define SPI_INTENCLR_MSTIDLE(x) (((uint32_t)(((uint32_t)(x)) << SPI_INTENCLR_MSTIDLE_SHIFT)) & SPI_INTENCLR_MSTIDLE_MASK)
/*! @} */
/*! @name RXDAT - SPI Receive Data */
/*! @{ */
#define SPI_RXDAT_RXDAT_MASK (0xFFFFU)
#define SPI_RXDAT_RXDAT_SHIFT (0U)
/*! RXDAT - Receiver Data. This contains the next piece of received data. The number of bits that
* are used depends on the LEN setting in TXCTL / TXDATCTL.
*/
#define SPI_RXDAT_RXDAT(x) (((uint32_t)(((uint32_t)(x)) << SPI_RXDAT_RXDAT_SHIFT)) & SPI_RXDAT_RXDAT_MASK)
#define SPI_RXDAT_RXSSEL0_N_MASK (0x10000U)
#define SPI_RXDAT_RXSSEL0_N_SHIFT (16U)
/*! RXSSEL0_N - Slave Select for receive. This field allows the state of the SSEL0 pin to be saved
* along with received data. The value will reflect the SSEL0 pin for both master and slave
* operation. A zero indicates that a slave select is active. The actual polarity of each slave select
* pin is configured by the related SPOL bit in CFG.
*/
#define SPI_RXDAT_RXSSEL0_N(x) (((uint32_t)(((uint32_t)(x)) << SPI_RXDAT_RXSSEL0_N_SHIFT)) & SPI_RXDAT_RXSSEL0_N_MASK)
#define SPI_RXDAT_RXSSEL1_N_MASK (0x20000U)
#define SPI_RXDAT_RXSSEL1_N_SHIFT (17U)
/*! RXSSEL1_N - Slave Select for receive. This field allows the state of the SSEL1 pin to be saved
* along with received data. The value will reflect the SSEL1 pin for both master and slave
* operation. A zero indicates that a slave select is active. The actual polarity of each slave select
* pin is configured by the related SPOL bit in CFG.
*/
#define SPI_RXDAT_RXSSEL1_N(x) (((uint32_t)(((uint32_t)(x)) << SPI_RXDAT_RXSSEL1_N_SHIFT)) & SPI_RXDAT_RXSSEL1_N_MASK)
#define SPI_RXDAT_RXSSEL2_N_MASK (0x40000U)
#define SPI_RXDAT_RXSSEL2_N_SHIFT (18U)
/*! RXSSEL2_N - Slave Select for receive. This field allows the state of the SSEL2 pin to be saved
* along with received data. The value will reflect the SSEL2 pin for both master and slave
* operation. A zero indicates that a slave select is active. The actual polarity of each slave select
* pin is configured by the related SPOL bit in CFG.
*/
#define SPI_RXDAT_RXSSEL2_N(x) (((uint32_t)(((uint32_t)(x)) << SPI_RXDAT_RXSSEL2_N_SHIFT)) & SPI_RXDAT_RXSSEL2_N_MASK)
#define SPI_RXDAT_RXSSEL3_N_MASK (0x80000U)
#define SPI_RXDAT_RXSSEL3_N_SHIFT (19U)
/*! RXSSEL3_N - Slave Select for receive. This field allows the state of the SSEL3 pin to be saved
* along with received data. The value will reflect the SSEL3 pin for both master and slave
* operation. A zero indicates that a slave select is active. The actual polarity of each slave select
* pin is configured by the related SPOL bit in CFG.
*/
#define SPI_RXDAT_RXSSEL3_N(x) (((uint32_t)(((uint32_t)(x)) << SPI_RXDAT_RXSSEL3_N_SHIFT)) & SPI_RXDAT_RXSSEL3_N_MASK)
#define SPI_RXDAT_SOT_MASK (0x100000U)
#define SPI_RXDAT_SOT_SHIFT (20U)
/*! SOT - Start of Transfer flag. This flag will be 1 if this is the first data after the SSELs went
* from deasserted to asserted (i.e., any previous transfer has ended). This information can be
* used to identify the first piece of data in cases where the transfer length is greater than 16
* bit.
*/
#define SPI_RXDAT_SOT(x) (((uint32_t)(((uint32_t)(x)) << SPI_RXDAT_SOT_SHIFT)) & SPI_RXDAT_SOT_MASK)
/*! @} */
/*! @name TXDATCTL - SPI Transmit Data with Control */
/*! @{ */
#define SPI_TXDATCTL_TXDAT_MASK (0xFFFFU)
#define SPI_TXDATCTL_TXDAT_SHIFT (0U)
/*! TXDAT - Transmit Data. This field provides from 1 to 16 bits of data to be transmitted.
*/
#define SPI_TXDATCTL_TXDAT(x) (((uint32_t)(((uint32_t)(x)) << SPI_TXDATCTL_TXDAT_SHIFT)) & SPI_TXDATCTL_TXDAT_MASK)
#define SPI_TXDATCTL_TXSSEL0_N_MASK (0x10000U)
#define SPI_TXDATCTL_TXSSEL0_N_SHIFT (16U)
/*! TXSSEL0_N - Transmit Slave Select. This field asserts SSEL0 in master mode. The output on the
* pin is active LOW by default. Remark: The active state of the SSEL0 pin is configured by bits in
* the CFG register.
* 0b0..SSEL0 asserted.
* 0b1..SSEL0 not asserted.
*/
#define SPI_TXDATCTL_TXSSEL0_N(x) (((uint32_t)(((uint32_t)(x)) << SPI_TXDATCTL_TXSSEL0_N_SHIFT)) & SPI_TXDATCTL_TXSSEL0_N_MASK)
#define SPI_TXDATCTL_TXSSEL1_N_MASK (0x20000U)
#define SPI_TXDATCTL_TXSSEL1_N_SHIFT (17U)
/*! TXSSEL1_N - Transmit Slave Select. This field asserts SSEL1 in master mode. The output on the
* pin is active LOW by default. Remark: The active state of the SSEL1 pin is configured by bits in
* the CFG register.
* 0b0..SSEL1 asserted.
* 0b1..SSEL1 not asserted.
*/
#define SPI_TXDATCTL_TXSSEL1_N(x) (((uint32_t)(((uint32_t)(x)) << SPI_TXDATCTL_TXSSEL1_N_SHIFT)) & SPI_TXDATCTL_TXSSEL1_N_MASK)
#define SPI_TXDATCTL_EOT_MASK (0x100000U)
#define SPI_TXDATCTL_EOT_SHIFT (20U)
/*! EOT - End of Transfer. The asserted SSEL will be deasserted at the end of a transfer, and remain
* so for at least the time specified by the Transfer_delay value in the DLY register.
* 0b0..This piece of data is not treated as the end of a transfer. SSEL will not be deasserted at the end of this data.
* 0b1..This piece of data is treated as the end of a transfer. SSEL will be deasserted at the end of this piece of data.
*/
#define SPI_TXDATCTL_EOT(x) (((uint32_t)(((uint32_t)(x)) << SPI_TXDATCTL_EOT_SHIFT)) & SPI_TXDATCTL_EOT_MASK)
#define SPI_TXDATCTL_EOF_MASK (0x200000U)
#define SPI_TXDATCTL_EOF_SHIFT (21U)
/*! EOF - End of Frame. Between frames, a delay may be inserted, as defined by the FRAME_DELAY value
* in the DLY register. The end of a frame may not be particularly meaningful if the FRAME_DELAY
* value = 0. This control can be used as part of the support for frame lengths greater than 16
* bits.
* 0b0..This piece of data transmitted is not treated as the end of a frame.
* 0b1..This piece of data is treated as the end of a frame, causing the FRAME_DELAY time to be inserted before subsequent data is transmitted.
*/
#define SPI_TXDATCTL_EOF(x) (((uint32_t)(((uint32_t)(x)) << SPI_TXDATCTL_EOF_SHIFT)) & SPI_TXDATCTL_EOF_MASK)
#define SPI_TXDATCTL_RXIGNORE_MASK (0x400000U)
#define SPI_TXDATCTL_RXIGNORE_SHIFT (22U)
/*! RXIGNORE - Receive Ignore. This allows data to be transmitted using the SPI without the need to
* read unneeded data from the receiver.Setting this bit simplifies the transmit process and can
* be used with the DMA.
* 0b0..Received data must be read in order to allow transmission to progress. In slave mode, an overrun error
* will occur if received data is not read before new data is received.
* 0b1..Received data is ignored, allowing transmission without reading unneeded received data. No receiver flags are generated.
*/
#define SPI_TXDATCTL_RXIGNORE(x) (((uint32_t)(((uint32_t)(x)) << SPI_TXDATCTL_RXIGNORE_SHIFT)) & SPI_TXDATCTL_RXIGNORE_MASK)
#define SPI_TXDATCTL_LEN_MASK (0xF000000U)
#define SPI_TXDATCTL_LEN_SHIFT (24U)
/*! LEN - Data Length. Specifies the data length from 1 to 16 bits. Note that transfer lengths
* greater than 16 bits are supported by implementing multiple sequential transmits. 0x0 = Data
* transfer is 1 bit in length. 0x1 = Data transfer is 2 bits in length. 0x2 = Data transfer is 3 bits
* in length. ... 0xF = Data transfer is 16 bits in length.
* 0b0000..
* 0b0001..Data transfer is 1 bit in length.
* 0b0010..Data transfer is 2 bit in length.
* 0b0011..Data transfer is 3 bit in length.
* 0b0100..Data transfer is 4 bit in length.
* 0b0101..Data transfer is 5 bit in length.
* 0b0110..Data transfer is 6 bit in length.
* 0b0111..Data transfer is 7 bit in length.
* 0b1000..Data transfer is 8 bit in length.
* 0b1001..Data transfer is 9 bit in length.
* 0b1010..Data transfer is 10 bit in length.
* 0b1011..Data transfer is 11 bit in length.
* 0b1100..Data transfer is 12 bit in length.
* 0b1101..Data transfer is 13 bit in length.
* 0b1110..Data transfer is 14 bit in length.
* 0b1111..Data transfer is 15 bit in length.
*/
#define SPI_TXDATCTL_LEN(x) (((uint32_t)(((uint32_t)(x)) << SPI_TXDATCTL_LEN_SHIFT)) & SPI_TXDATCTL_LEN_MASK)
/*! @} */
/*! @name TXDAT - SPI Transmit Data. */
/*! @{ */
#define SPI_TXDAT_DATA_MASK (0xFFFFU)
#define SPI_TXDAT_DATA_SHIFT (0U)
/*! DATA - Transmit Data. This field provides from 4 to 16 bits of data to be transmitted.
*/
#define SPI_TXDAT_DATA(x) (((uint32_t)(((uint32_t)(x)) << SPI_TXDAT_DATA_SHIFT)) & SPI_TXDAT_DATA_MASK)
/*! @} */
/*! @name TXCTL - SPI Transmit Control */
/*! @{ */
#define SPI_TXCTL_TXSSEL0_N_MASK (0x10000U)
#define SPI_TXCTL_TXSSEL0_N_SHIFT (16U)
/*! TXSSEL0_N - Transmit Slave Select 0.
*/
#define SPI_TXCTL_TXSSEL0_N(x) (((uint32_t)(((uint32_t)(x)) << SPI_TXCTL_TXSSEL0_N_SHIFT)) & SPI_TXCTL_TXSSEL0_N_MASK)
#define SPI_TXCTL_TXSSEL1_N_MASK (0x20000U)
#define SPI_TXCTL_TXSSEL1_N_SHIFT (17U)
/*! TXSSEL1_N - Transmit Slave Select 1.
*/
#define SPI_TXCTL_TXSSEL1_N(x) (((uint32_t)(((uint32_t)(x)) << SPI_TXCTL_TXSSEL1_N_SHIFT)) & SPI_TXCTL_TXSSEL1_N_MASK)
#define SPI_TXCTL_EOT_MASK (0x100000U)
#define SPI_TXCTL_EOT_SHIFT (20U)
/*! EOT - End of Transfer.
*/
#define SPI_TXCTL_EOT(x) (((uint32_t)(((uint32_t)(x)) << SPI_TXCTL_EOT_SHIFT)) & SPI_TXCTL_EOT_MASK)
#define SPI_TXCTL_EOF_MASK (0x200000U)
#define SPI_TXCTL_EOF_SHIFT (21U)
/*! EOF - End of Frame.
*/
#define SPI_TXCTL_EOF(x) (((uint32_t)(((uint32_t)(x)) << SPI_TXCTL_EOF_SHIFT)) & SPI_TXCTL_EOF_MASK)
#define SPI_TXCTL_RXIGNORE_MASK (0x400000U)
#define SPI_TXCTL_RXIGNORE_SHIFT (22U)
/*! RXIGNORE - Receive Ignore.
*/
#define SPI_TXCTL_RXIGNORE(x) (((uint32_t)(((uint32_t)(x)) << SPI_TXCTL_RXIGNORE_SHIFT)) & SPI_TXCTL_RXIGNORE_MASK)
#define SPI_TXCTL_LEN_MASK (0xF000000U)
#define SPI_TXCTL_LEN_SHIFT (24U)
/*! LEN - Data transfer Length.
*/
#define SPI_TXCTL_LEN(x) (((uint32_t)(((uint32_t)(x)) << SPI_TXCTL_LEN_SHIFT)) & SPI_TXCTL_LEN_MASK)
/*! @} */
/*! @name DIV - SPI clock Divider */
/*! @{ */
#define SPI_DIV_DIVVAL_MASK (0xFFFFU)
#define SPI_DIV_DIVVAL_SHIFT (0U)
/*! DIVVAL - Rate divider value. Specifies how the Flexcomm clock (FCLK) is divided to produce the
* SPI clock rate in master mode. DIVVAL is -1 encoded such that the value 0 results in FCLK/1,
* the value 1 results in FCLK/2, up to the maximum possible divide value of 0xFFFF, which results
* in FCLK/65536.
*/
#define SPI_DIV_DIVVAL(x) (((uint32_t)(((uint32_t)(x)) << SPI_DIV_DIVVAL_SHIFT)) & SPI_DIV_DIVVAL_MASK)
/*! @} */
/*! @name INTSTAT - SPI Interrupt Status */
/*! @{ */
#define SPI_INTSTAT_RXRDY_MASK (0x1U)
#define SPI_INTSTAT_RXRDY_SHIFT (0U)
/*! RXRDY - Receiver Ready flag.
*/
#define SPI_INTSTAT_RXRDY(x) (((uint32_t)(((uint32_t)(x)) << SPI_INTSTAT_RXRDY_SHIFT)) & SPI_INTSTAT_RXRDY_MASK)
#define SPI_INTSTAT_TXRDY_MASK (0x2U)
#define SPI_INTSTAT_TXRDY_SHIFT (1U)
/*! TXRDY - Transmitter Ready flag.
*/
#define SPI_INTSTAT_TXRDY(x) (((uint32_t)(((uint32_t)(x)) << SPI_INTSTAT_TXRDY_SHIFT)) & SPI_INTSTAT_TXRDY_MASK)
#define SPI_INTSTAT_RXOV_MASK (0x4U)
#define SPI_INTSTAT_RXOV_SHIFT (2U)
/*! RXOV - Receiver Overrun interrupt flag.
*/
#define SPI_INTSTAT_RXOV(x) (((uint32_t)(((uint32_t)(x)) << SPI_INTSTAT_RXOV_SHIFT)) & SPI_INTSTAT_RXOV_MASK)
#define SPI_INTSTAT_TXUR_MASK (0x8U)
#define SPI_INTSTAT_TXUR_SHIFT (3U)
/*! TXUR - Transmitter Underrun interrupt flag.
*/
#define SPI_INTSTAT_TXUR(x) (((uint32_t)(((uint32_t)(x)) << SPI_INTSTAT_TXUR_SHIFT)) & SPI_INTSTAT_TXUR_MASK)
#define SPI_INTSTAT_SSA_MASK (0x10U)
#define SPI_INTSTAT_SSA_SHIFT (4U)
/*! SSA - Slave Select Assert.
*/
#define SPI_INTSTAT_SSA(x) (((uint32_t)(((uint32_t)(x)) << SPI_INTSTAT_SSA_SHIFT)) & SPI_INTSTAT_SSA_MASK)
#define SPI_INTSTAT_SSD_MASK (0x20U)
#define SPI_INTSTAT_SSD_SHIFT (5U)
/*! SSD - Slave Select Deassert.
*/
#define SPI_INTSTAT_SSD(x) (((uint32_t)(((uint32_t)(x)) << SPI_INTSTAT_SSD_SHIFT)) & SPI_INTSTAT_SSD_MASK)
#define SPI_INTSTAT_MSTIDLE_MASK (0x100U)
#define SPI_INTSTAT_MSTIDLE_SHIFT (8U)
/*! MSTIDLE - Master Idle status flag.
*/
#define SPI_INTSTAT_MSTIDLE(x) (((uint32_t)(((uint32_t)(x)) << SPI_INTSTAT_MSTIDLE_SHIFT)) & SPI_INTSTAT_MSTIDLE_MASK)
/*! @} */
/*!
* @}
*/ /* end of group SPI_Register_Masks */
/* SPI - Peripheral instance base addresses */
/** Peripheral SPI0 base address */
#define SPI0_BASE (0x40058000u)
/** Peripheral SPI0 base pointer */
#define SPI0 ((SPI_Type *)SPI0_BASE)
/** Array initializer of SPI peripheral base addresses */
#define SPI_BASE_ADDRS { SPI0_BASE }
/** Array initializer of SPI peripheral base pointers */
#define SPI_BASE_PTRS { SPI0 }
/** Interrupt vectors for the SPI peripheral type */
#define SPI_IRQS { SPI0_IRQn }
/*!
* @}
*/ /* end of group SPI_Peripheral_Access_Layer */
/* ----------------------------------------------------------------------------
-- SWM Peripheral Access Layer
---------------------------------------------------------------------------- */
/*!
* @addtogroup SWM_Peripheral_Access_Layer SWM Peripheral Access Layer
* @{
*/
/** SWM - Register Layout Typedef */
typedef struct {
union { /* offset: 0x0 */
struct { /* offset: 0x0 */
__IO uint32_t PINASSIGN0; /**< Pin assign register 0. Assign movable functions U0_TXD, U0_RXD, U0_RTS, U0_CTS., offset: 0x0 */
__IO uint32_t PINASSIGN1; /**< Pin assign register 1. Assign movable functions U0_SCLK, U1_TXD, U1_RXD, U1_SCLK., offset: 0x4 */
__IO uint32_t PINASSIGN2; /**< Pin assign register 2. Assign movable functions SPI0_SCK, SPI0_MOSI,SPI0_MISO,SPI0_SSEL0., offset: 0x8 */
__IO uint32_t PINASSIGN3; /**< Pin assign register 3. Assign movable function SPI0_SSEL1, T0_CAP0, T0_CAP1, T0_CAP2., offset: 0xC */
__IO uint32_t PINASSIGN4; /**< Pin assign register 4. Assign movable functions T0_MAT0, T0_MAT1,T0_MAT2,T0_MAT3., offset: 0x10 */
__IO uint32_t PINASSIGN5; /**< Pin assign register 5. Assign movable functions I2C0_SDA, I2C0_SCL, COMP0_OUT, CLKOUT, offset: 0x14 */
__IO uint32_t PINASSIGN6; /**< Pin assign register 6. Assign movable functions GPIO_INT_BMAT, LVLSHFT_IN0, LVLSHFT_IN1, LVLSHFT_OUT0., offset: 0x18 */
__IO uint32_t PINASSIGN7; /**< Pin assign register 7. Assign movable functions LVLSHFT_OUT1, I2C1_SDA, I2C1_SCL, PLU_CLKIN., offset: 0x1C */
__IO uint32_t PINASSIGN8; /**< Pin assign register 8. Assign movable functions CAPT_X0, CAPT_X1, CAPT_X2, CAPT_X3., offset: 0x20 */
__IO uint32_t PINASSIGN9; /**< Pin assign register 9. Assign movable functions CAPT_X4, CAPT_YL, CAPT_YH., offset: 0x24 */
} PINASSIGN;
__IO uint32_t PINASSIGN_DATA[10]; /**< Pin assign register, array offset: 0x0, array step: 0x4 */
};
uint8_t RESERVED_0[344];
__IO uint32_t PINASSIGNFIXED0; /**< Pin assign to fixed bits register 0. Pin assign to fixed bits register 0. Assign movable functions PLU_INPUT0 to PLU_INPUT5 and PLU_OUT0 to PLU_INPUT7., offset: 0x180 */
uint8_t RESERVED_1[60];
__IO uint32_t PINENABLE0; /**< Pin enable register 0. Enables fixed-pin functions ACMP_I1, ACMP_I2, ACMP_I3,ACMP_I4, SWCLK, SWDIO, RESETN, CLKIN,WKCLK_IN, VDDCMP, ADC_0 - ADC_11,ACMP_I5,DACOUT0., offset: 0x1C0 */
} SWM_Type;
/* ----------------------------------------------------------------------------
-- SWM Register Masks
---------------------------------------------------------------------------- */
/*!
* @addtogroup SWM_Register_Masks SWM Register Masks
* @{
*/
/*! @name PINASSIGN0 - Pin assign register 0. Assign movable functions U0_TXD, U0_RXD, U0_RTS, U0_CTS. */
/*! @{ */
#define SWM_PINASSIGN0_U0_TXD_O_MASK (0xFFU)
#define SWM_PINASSIGN0_U0_TXD_O_SHIFT (0U)
/*! U0_TXD_O - U0_TXD function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (= 0x7)
* to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN0_U0_TXD_O(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN0_U0_TXD_O_SHIFT)) & SWM_PINASSIGN0_U0_TXD_O_MASK)
#define SWM_PINASSIGN0_U0_RXD_I_MASK (0xFF00U)
#define SWM_PINASSIGN0_U0_RXD_I_SHIFT (8U)
/*! U0_RXD_I - U0_RXD function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (= 0x7)
* to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN0_U0_RXD_I(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN0_U0_RXD_I_SHIFT)) & SWM_PINASSIGN0_U0_RXD_I_MASK)
#define SWM_PINASSIGN0_U0_RTS_O_MASK (0xFF0000U)
#define SWM_PINASSIGN0_U0_RTS_O_SHIFT (16U)
/*! U0_RTS_O - U0_RTS function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (= 0x7)
* to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN0_U0_RTS_O(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN0_U0_RTS_O_SHIFT)) & SWM_PINASSIGN0_U0_RTS_O_MASK)
#define SWM_PINASSIGN0_U0_CTS_I_MASK (0xFF000000U)
#define SWM_PINASSIGN0_U0_CTS_I_SHIFT (24U)
/*! U0_CTS_I - U0_CTS function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (= 0x7)
* to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN0_U0_CTS_I(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN0_U0_CTS_I_SHIFT)) & SWM_PINASSIGN0_U0_CTS_I_MASK)
/*! @} */
/*! @name PINASSIGN1 - Pin assign register 1. Assign movable functions U0_SCLK, U1_TXD, U1_RXD, U1_SCLK. */
/*! @{ */
#define SWM_PINASSIGN1_U0_SCLK_IO_MASK (0xFFU)
#define SWM_PINASSIGN1_U0_SCLK_IO_SHIFT (0U)
/*! U0_SCLK_IO - U0_SCLK function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (=
* 0x7) to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN1_U0_SCLK_IO(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN1_U0_SCLK_IO_SHIFT)) & SWM_PINASSIGN1_U0_SCLK_IO_MASK)
#define SWM_PINASSIGN1_U1_TXD_O_MASK (0xFF00U)
#define SWM_PINASSIGN1_U1_TXD_O_SHIFT (8U)
/*! U1_TXD_O - U1_TXD function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (= 0x7)
* to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN1_U1_TXD_O(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN1_U1_TXD_O_SHIFT)) & SWM_PINASSIGN1_U1_TXD_O_MASK)
#define SWM_PINASSIGN1_U1_RXD_I_MASK (0xFF0000U)
#define SWM_PINASSIGN1_U1_RXD_I_SHIFT (16U)
/*! U1_RXD_I - U1_RXD function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (= 0x7)
* to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN1_U1_RXD_I(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN1_U1_RXD_I_SHIFT)) & SWM_PINASSIGN1_U1_RXD_I_MASK)
#define SWM_PINASSIGN1_U1_SCLK_IO_MASK (0xFF000000U)
#define SWM_PINASSIGN1_U1_SCLK_IO_SHIFT (24U)
/*! U1_SCLK_IO - U1_SCLK function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (=
* 0x7) to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN1_U1_SCLK_IO(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN1_U1_SCLK_IO_SHIFT)) & SWM_PINASSIGN1_U1_SCLK_IO_MASK)
/*! @} */
/*! @name PINASSIGN2 - Pin assign register 2. Assign movable functions SPI0_SCK, SPI0_MOSI,SPI0_MISO,SPI0_SSEL0. */
/*! @{ */
#define SWM_PINASSIGN2_SPI0_SCK_IO_MASK (0xFFU)
#define SWM_PINASSIGN2_SPI0_SCK_IO_SHIFT (0U)
/*! SPI0_SCK_IO - SPI0_SCK function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (=
* 0x7) to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN2_SPI0_SCK_IO(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN2_SPI0_SCK_IO_SHIFT)) & SWM_PINASSIGN2_SPI0_SCK_IO_MASK)
#define SWM_PINASSIGN2_SPI0_MOSI_IO_MASK (0xFF00U)
#define SWM_PINASSIGN2_SPI0_MOSI_IO_SHIFT (8U)
/*! SPI0_MOSI_IO - SPI0_MOSI function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (=
* 0x7) to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN2_SPI0_MOSI_IO(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN2_SPI0_MOSI_IO_SHIFT)) & SWM_PINASSIGN2_SPI0_MOSI_IO_MASK)
#define SWM_PINASSIGN2_SPI0_MISO_IO_MASK (0xFF0000U)
#define SWM_PINASSIGN2_SPI0_MISO_IO_SHIFT (16U)
/*! SPI0_MISO_IO - SPI0_MISO function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (=
* 0x7) to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN2_SPI0_MISO_IO(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN2_SPI0_MISO_IO_SHIFT)) & SWM_PINASSIGN2_SPI0_MISO_IO_MASK)
#define SWM_PINASSIGN2_SPI0_SSEL0_IO_MASK (0xFF000000U)
#define SWM_PINASSIGN2_SPI0_SSEL0_IO_SHIFT (24U)
/*! SPI0_SSEL0_IO - SPI0_SSEL0 function assignment. The value is the pin number to be assigned to
* this function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7
* (= 0x7) to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN2_SPI0_SSEL0_IO(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN2_SPI0_SSEL0_IO_SHIFT)) & SWM_PINASSIGN2_SPI0_SSEL0_IO_MASK)
/*! @} */
/*! @name PINASSIGN3 - Pin assign register 3. Assign movable function SPI0_SSEL1, T0_CAP0, T0_CAP1, T0_CAP2. */
/*! @{ */
#define SWM_PINASSIGN3_SPI0_SSEL1_IO_MASK (0xFFU)
#define SWM_PINASSIGN3_SPI0_SSEL1_IO_SHIFT (0U)
/*! SPI0_SSEL1_IO - SPI0_SSEL1 function assignment. The value is the pin number to be assigned to
* this function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7
* (= 0x7) to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN3_SPI0_SSEL1_IO(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN3_SPI0_SSEL1_IO_SHIFT)) & SWM_PINASSIGN3_SPI0_SSEL1_IO_MASK)
#define SWM_PINASSIGN3_T0_CAP0_MASK (0xFF00U)
#define SWM_PINASSIGN3_T0_CAP0_SHIFT (8U)
/*! T0_CAP0 - T0_CAP0 function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (= 0x7)
* to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN3_T0_CAP0(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN3_T0_CAP0_SHIFT)) & SWM_PINASSIGN3_T0_CAP0_MASK)
#define SWM_PINASSIGN3_T0_CAP1_MASK (0xFF0000U)
#define SWM_PINASSIGN3_T0_CAP1_SHIFT (16U)
/*! T0_CAP1 - T0_CAP1 function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (= 0x7)
* to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN3_T0_CAP1(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN3_T0_CAP1_SHIFT)) & SWM_PINASSIGN3_T0_CAP1_MASK)
#define SWM_PINASSIGN3_T0_CAP2_MASK (0xFF000000U)
#define SWM_PINASSIGN3_T0_CAP2_SHIFT (24U)
/*! T0_CAP2 - T0_CAP2 function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (= 0x7)
* to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN3_T0_CAP2(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN3_T0_CAP2_SHIFT)) & SWM_PINASSIGN3_T0_CAP2_MASK)
/*! @} */
/*! @name PINASSIGN4 - Pin assign register 4. Assign movable functions T0_MAT0, T0_MAT1,T0_MAT2,T0_MAT3. */
/*! @{ */
#define SWM_PINASSIGN4_T0_MAT0_MASK (0xFFU)
#define SWM_PINASSIGN4_T0_MAT0_SHIFT (0U)
/*! T0_MAT0 - T0_MAT0 function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (= 0x7)
* to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN4_T0_MAT0(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN4_T0_MAT0_SHIFT)) & SWM_PINASSIGN4_T0_MAT0_MASK)
#define SWM_PINASSIGN4_T0_MAT1_MASK (0xFF00U)
#define SWM_PINASSIGN4_T0_MAT1_SHIFT (8U)
/*! T0_MAT1 - T0_MAT1 function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (= 0x7)
* to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN4_T0_MAT1(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN4_T0_MAT1_SHIFT)) & SWM_PINASSIGN4_T0_MAT1_MASK)
#define SWM_PINASSIGN4_T0_MAT2_MASK (0xFF0000U)
#define SWM_PINASSIGN4_T0_MAT2_SHIFT (16U)
/*! T0_MAT2 - T0_MAT2 function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (= 0x7)
* to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN4_T0_MAT2(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN4_T0_MAT2_SHIFT)) & SWM_PINASSIGN4_T0_MAT2_MASK)
#define SWM_PINASSIGN4_T0_MAT3_MASK (0xFF000000U)
#define SWM_PINASSIGN4_T0_MAT3_SHIFT (24U)
/*! T0_MAT3 - T0_MAT3 function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (= 0x7)
* to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN4_T0_MAT3(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN4_T0_MAT3_SHIFT)) & SWM_PINASSIGN4_T0_MAT3_MASK)
/*! @} */
/*! @name PINASSIGN5 - Pin assign register 5. Assign movable functions I2C0_SDA, I2C0_SCL, COMP0_OUT, CLKOUT */
/*! @{ */
#define SWM_PINASSIGN5_I2C0_SDA_IO_MASK (0xFFU)
#define SWM_PINASSIGN5_I2C0_SDA_IO_SHIFT (0U)
/*! I2C0_SDA_IO - I2C0_SDA function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (=
* 0x7) to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN5_I2C0_SDA_IO(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN5_I2C0_SDA_IO_SHIFT)) & SWM_PINASSIGN5_I2C0_SDA_IO_MASK)
#define SWM_PINASSIGN5_I2C0_SCL_IO_MASK (0xFF00U)
#define SWM_PINASSIGN5_I2C0_SCL_IO_SHIFT (8U)
/*! I2C0_SCL_IO - I2C0_SCL function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (=
* 0x7) to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN5_I2C0_SCL_IO(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN5_I2C0_SCL_IO_SHIFT)) & SWM_PINASSIGN5_I2C0_SCL_IO_MASK)
#define SWM_PINASSIGN5_COMP0_OUT_O_MASK (0xFF0000U)
#define SWM_PINASSIGN5_COMP0_OUT_O_SHIFT (16U)
/*! COMP0_OUT_O - COMP0_OUT function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (=
* 0x7) to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN5_COMP0_OUT_O(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN5_COMP0_OUT_O_SHIFT)) & SWM_PINASSIGN5_COMP0_OUT_O_MASK)
#define SWM_PINASSIGN5_CLKOUT_O_MASK (0xFF000000U)
#define SWM_PINASSIGN5_CLKOUT_O_SHIFT (24U)
/*! CLKOUT_O - CLKOUT function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (= 0x7)
* to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN5_CLKOUT_O(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN5_CLKOUT_O_SHIFT)) & SWM_PINASSIGN5_CLKOUT_O_MASK)
/*! @} */
/*! @name PINASSIGN6 - Pin assign register 6. Assign movable functions GPIO_INT_BMAT, LVLSHFT_IN0, LVLSHFT_IN1, LVLSHFT_OUT0. */
/*! @{ */
#define SWM_PINASSIGN6_GPIO_INT_BMAT_O_MASK (0xFFU)
#define SWM_PINASSIGN6_GPIO_INT_BMAT_O_SHIFT (0U)
/*! GPIO_INT_BMAT_O - GPIO_INT_BMAT function assignment. The value is the pin number to be assigned
* to this function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from
* PIO0_7 (= 0x7) to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN6_GPIO_INT_BMAT_O(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN6_GPIO_INT_BMAT_O_SHIFT)) & SWM_PINASSIGN6_GPIO_INT_BMAT_O_MASK)
#define SWM_PINASSIGN6_LVLSHFT_IN0_MASK (0xFF00U)
#define SWM_PINASSIGN6_LVLSHFT_IN0_SHIFT (8U)
/*! LVLSHFT_IN0 - LVLSHFT_IN0 function assignment. The value is the pin number to be assigned to
* this function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7
* (= 0x7) to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN6_LVLSHFT_IN0(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN6_LVLSHFT_IN0_SHIFT)) & SWM_PINASSIGN6_LVLSHFT_IN0_MASK)
#define SWM_PINASSIGN6_LVLSHFT_IN1_MASK (0xFF0000U)
#define SWM_PINASSIGN6_LVLSHFT_IN1_SHIFT (16U)
/*! LVLSHFT_IN1 - LVLSHFT_IN1 function assignment. The value is the pin number to be assigned to
* this function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7
* (= 0x7) to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN6_LVLSHFT_IN1(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN6_LVLSHFT_IN1_SHIFT)) & SWM_PINASSIGN6_LVLSHFT_IN1_MASK)
#define SWM_PINASSIGN6_LVLSHFT_OUT0_MASK (0xFF000000U)
#define SWM_PINASSIGN6_LVLSHFT_OUT0_SHIFT (24U)
/*! LVLSHFT_OUT0 - LVLSHFT_OUT0 function assignment. The value is the pin number to be assigned to
* this function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7
* (= 0x7) to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN6_LVLSHFT_OUT0(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN6_LVLSHFT_OUT0_SHIFT)) & SWM_PINASSIGN6_LVLSHFT_OUT0_MASK)
/*! @} */
/*! @name PINASSIGN7 - Pin assign register 7. Assign movable functions LVLSHFT_OUT1, I2C1_SDA, I2C1_SCL, PLU_CLKIN. */
/*! @{ */
#define SWM_PINASSIGN7_LVLSHFT_OUT1_MASK (0xFFU)
#define SWM_PINASSIGN7_LVLSHFT_OUT1_SHIFT (0U)
/*! LVLSHFT_OUT1 - LVLSHFT_OUT1 function assignment. The value is the pin number to be assigned to
* this function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7
* (= 0x7) to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN7_LVLSHFT_OUT1(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN7_LVLSHFT_OUT1_SHIFT)) & SWM_PINASSIGN7_LVLSHFT_OUT1_MASK)
#define SWM_PINASSIGN7_I2C1_SDA_IO_MASK (0xFF00U)
#define SWM_PINASSIGN7_I2C1_SDA_IO_SHIFT (8U)
/*! I2C1_SDA_IO - I2C1_SDA function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (=
* 0x7) to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN7_I2C1_SDA_IO(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN7_I2C1_SDA_IO_SHIFT)) & SWM_PINASSIGN7_I2C1_SDA_IO_MASK)
#define SWM_PINASSIGN7_I2C1_SCL_IO_MASK (0xFF0000U)
#define SWM_PINASSIGN7_I2C1_SCL_IO_SHIFT (16U)
/*! I2C1_SCL_IO - I2C1_SCL function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (=
* 0x7) to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN7_I2C1_SCL_IO(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN7_I2C1_SCL_IO_SHIFT)) & SWM_PINASSIGN7_I2C1_SCL_IO_MASK)
#define SWM_PINASSIGN7_PLU_CLKIN_IN_MASK (0xFF000000U)
#define SWM_PINASSIGN7_PLU_CLKIN_IN_SHIFT (24U)
/*! PLU_CLKIN_IN - PLU_CLKIN function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (=
* 0x7) to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN7_PLU_CLKIN_IN(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN7_PLU_CLKIN_IN_SHIFT)) & SWM_PINASSIGN7_PLU_CLKIN_IN_MASK)
/*! @} */
/*! @name PINASSIGN8 - Pin assign register 8. Assign movable functions CAPT_X0, CAPT_X1, CAPT_X2, CAPT_X3. */
/*! @{ */
#define SWM_PINASSIGN8_CAPT_X0_O_MASK (0xFFU)
#define SWM_PINASSIGN8_CAPT_X0_O_SHIFT (0U)
/*! CAPT_X0_O - CAPT_X0 function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (= 0x7)
* to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN8_CAPT_X0_O(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN8_CAPT_X0_O_SHIFT)) & SWM_PINASSIGN8_CAPT_X0_O_MASK)
#define SWM_PINASSIGN8_CAPT_X1_O_MASK (0xFF00U)
#define SWM_PINASSIGN8_CAPT_X1_O_SHIFT (8U)
/*! CAPT_X1_O - CAPT_X1 function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (= 0x7)
* to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN8_CAPT_X1_O(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN8_CAPT_X1_O_SHIFT)) & SWM_PINASSIGN8_CAPT_X1_O_MASK)
#define SWM_PINASSIGN8_CAPT_X2_O_MASK (0xFF0000U)
#define SWM_PINASSIGN8_CAPT_X2_O_SHIFT (16U)
/*! CAPT_X2_O - CAPT_X2 function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (= 0x7)
* to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN8_CAPT_X2_O(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN8_CAPT_X2_O_SHIFT)) & SWM_PINASSIGN8_CAPT_X2_O_MASK)
#define SWM_PINASSIGN8_CAPT_X3_O_MASK (0xFF000000U)
#define SWM_PINASSIGN8_CAPT_X3_O_SHIFT (24U)
/*! CAPT_X3_O - CAPT_X3 function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (= 0x7)
* to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN8_CAPT_X3_O(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN8_CAPT_X3_O_SHIFT)) & SWM_PINASSIGN8_CAPT_X3_O_MASK)
/*! @} */
/*! @name PINASSIGN9 - Pin assign register 9. Assign movable functions CAPT_X4, CAPT_YL, CAPT_YH. */
/*! @{ */
#define SWM_PINASSIGN9_CAPT_X4_O_MASK (0xFFU)
#define SWM_PINASSIGN9_CAPT_X4_O_SHIFT (0U)
/*! CAPT_X4_O - CAPT_X4 function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (= 0x7)
* to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN9_CAPT_X4_O(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN9_CAPT_X4_O_SHIFT)) & SWM_PINASSIGN9_CAPT_X4_O_MASK)
#define SWM_PINASSIGN9_CAPT_YL_O_MASK (0xFF00U)
#define SWM_PINASSIGN9_CAPT_YL_O_SHIFT (8U)
/*! CAPT_YL_O - CAPT_YL function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (= 0x7)
* to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN9_CAPT_YL_O(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN9_CAPT_YL_O_SHIFT)) & SWM_PINASSIGN9_CAPT_YL_O_MASK)
#define SWM_PINASSIGN9_CAPT_YH_O_MASK (0xFF0000U)
#define SWM_PINASSIGN9_CAPT_YH_O_SHIFT (16U)
/*! CAPT_YH_O - CAPT_YH_O function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (=
* 0x7) to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN9_CAPT_YH_O(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN9_CAPT_YH_O_SHIFT)) & SWM_PINASSIGN9_CAPT_YH_O_MASK)
/*! @} */
/*! @name PINASSIGN_DATA - Pin assign register */
/*! @{ */
#define SWM_PINASSIGN_DATA_T0_MAT3_MASK (0xFFU)
#define SWM_PINASSIGN_DATA_T0_MAT3_SHIFT (0U)
/*! T0_MAT3 - T0_MAT3 function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (= 0x7)
* to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN_DATA_T0_MAT3(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN_DATA_T0_MAT3_SHIFT)) & SWM_PINASSIGN_DATA_T0_MAT3_MASK)
#define SWM_PINASSIGN_DATA_T0_CAP0_MASK (0xFF00U)
#define SWM_PINASSIGN_DATA_T0_CAP0_SHIFT (8U)
/*! T0_CAP0 - T0_CAP0 function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (= 0x7)
* to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN_DATA_T0_CAP0(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN_DATA_T0_CAP0_SHIFT)) & SWM_PINASSIGN_DATA_T0_CAP0_MASK)
#define SWM_PINASSIGN_DATA_T0_CAP1_MASK (0xFF0000U)
#define SWM_PINASSIGN_DATA_T0_CAP1_SHIFT (16U)
/*! T0_CAP1 - T0_CAP1 function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (= 0x7)
* to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN_DATA_T0_CAP1(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN_DATA_T0_CAP1_SHIFT)) & SWM_PINASSIGN_DATA_T0_CAP1_MASK)
#define SWM_PINASSIGN_DATA_T0_CAP2_MASK (0xFF000000U)
#define SWM_PINASSIGN_DATA_T0_CAP2_SHIFT (24U)
/*! T0_CAP2 - T0_CAP2 function assignment. The value is the pin number to be assigned to this
* function. The following pins are available: PIO0_0 (= 0) to PIO0_5 (= 0x5) and from PIO0_7 (= 0x7)
* to PIO0_30 (= 0x1E).
*/
#define SWM_PINASSIGN_DATA_T0_CAP2(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGN_DATA_T0_CAP2_SHIFT)) & SWM_PINASSIGN_DATA_T0_CAP2_MASK)
/*! @} */
/* The count of SWM_PINASSIGN_DATA */
#define SWM_PINASSIGN_DATA_COUNT (10U)
/*! @name PINASSIGNFIXED0 - Pin assign to fixed bits register 0. Pin assign to fixed bits register 0. Assign movable functions PLU_INPUT0 to PLU_INPUT5 and PLU_OUT0 to PLU_INPUT7. */
/*! @{ */
#define SWM_PINASSIGNFIXED0_PLU_INPUT0_MASK (0x3U)
#define SWM_PINASSIGNFIXED0_PLU_INPUT0_SHIFT (0U)
/*! PLU_INPUT0 - PLU_INPUT0 function assignment.
* 0b00..Assign to PIO0_00.
* 0b01..Assign to PIO0_08.
* 0b10..Assign to PIO0_17.
* 0b11..None.
*/
#define SWM_PINASSIGNFIXED0_PLU_INPUT0(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGNFIXED0_PLU_INPUT0_SHIFT)) & SWM_PINASSIGNFIXED0_PLU_INPUT0_MASK)
#define SWM_PINASSIGNFIXED0_PLU_INPUT1_MASK (0xCU)
#define SWM_PINASSIGNFIXED0_PLU_INPUT1_SHIFT (2U)
/*! PLU_INPUT1 - PLU_INPUT1 function assignment
* 0b00..Assign to PIO0_01.
* 0b01..Assign to PIO0_09.
* 0b10..Assign to PIO0_18.
* 0b11..None.
*/
#define SWM_PINASSIGNFIXED0_PLU_INPUT1(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGNFIXED0_PLU_INPUT1_SHIFT)) & SWM_PINASSIGNFIXED0_PLU_INPUT1_MASK)
#define SWM_PINASSIGNFIXED0_PLU_INPUT2_MASK (0x30U)
#define SWM_PINASSIGNFIXED0_PLU_INPUT2_SHIFT (4U)
/*! PLU_INPUT2 - PLU_INPUT2 function assignment.
* 0b00..Assign to PIO0_02.
* 0b01..Assign to PIO0_10.
* 0b10..Assign to PIO0_19.
* 0b11..None.
*/
#define SWM_PINASSIGNFIXED0_PLU_INPUT2(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGNFIXED0_PLU_INPUT2_SHIFT)) & SWM_PINASSIGNFIXED0_PLU_INPUT2_MASK)
#define SWM_PINASSIGNFIXED0_PLU_INPUT3_MASK (0xC0U)
#define SWM_PINASSIGNFIXED0_PLU_INPUT3_SHIFT (6U)
/*! PLU_INPUT3 - PLU_INPUT3 function assignment.
* 0b00..Assign to PIO0_03.
* 0b01..Assign to PIO0_11.
* 0b10..Assign to PIO0_20.
* 0b11..None.
*/
#define SWM_PINASSIGNFIXED0_PLU_INPUT3(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGNFIXED0_PLU_INPUT3_SHIFT)) & SWM_PINASSIGNFIXED0_PLU_INPUT3_MASK)
#define SWM_PINASSIGNFIXED0_PLU_INPUT4_MASK (0x300U)
#define SWM_PINASSIGNFIXED0_PLU_INPUT4_SHIFT (8U)
/*! PLU_INPUT4 - PLU_INPUT4 function assignment.
* 0b00..Assign to PIO0_04.
* 0b01..Assign to PIO0_12.
* 0b10..Assign to PIO0_21.
* 0b11..None.
*/
#define SWM_PINASSIGNFIXED0_PLU_INPUT4(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGNFIXED0_PLU_INPUT4_SHIFT)) & SWM_PINASSIGNFIXED0_PLU_INPUT4_MASK)
#define SWM_PINASSIGNFIXED0_PLU_INPUT5_MASK (0xC00U)
#define SWM_PINASSIGNFIXED0_PLU_INPUT5_SHIFT (10U)
/*! PLU_INPUT5 - PLU_INPUT5 function assignment.
* 0b00..Assign to PIO0_05.
* 0b01..Assign to PIO0_13.
* 0b10..Assign to PIO0_22.
* 0b11..None.
*/
#define SWM_PINASSIGNFIXED0_PLU_INPUT5(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGNFIXED0_PLU_INPUT5_SHIFT)) & SWM_PINASSIGNFIXED0_PLU_INPUT5_MASK)
#define SWM_PINASSIGNFIXED0_PLU_OUT0_MASK (0x3000U)
#define SWM_PINASSIGNFIXED0_PLU_OUT0_SHIFT (12U)
/*! PLU_OUT0 - PLU_OUT0 function assignment.
* 0b00..Assign to PIO0_07.
* 0b01..Assign to PIO0_14.
* 0b10..Assign to PIO0_23.
* 0b11..None.
*/
#define SWM_PINASSIGNFIXED0_PLU_OUT0(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGNFIXED0_PLU_OUT0_SHIFT)) & SWM_PINASSIGNFIXED0_PLU_OUT0_MASK)
#define SWM_PINASSIGNFIXED0_PLU_OUT1_MASK (0xC000U)
#define SWM_PINASSIGNFIXED0_PLU_OUT1_SHIFT (14U)
/*! PLU_OUT1 - PLU_OUT1 function assignment.
* 0b00..Assign to PIO0_08.
* 0b01..Assign to PIO0_15.
* 0b10..Assign to PIO0_24.
* 0b11..None.
*/
#define SWM_PINASSIGNFIXED0_PLU_OUT1(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGNFIXED0_PLU_OUT1_SHIFT)) & SWM_PINASSIGNFIXED0_PLU_OUT1_MASK)
#define SWM_PINASSIGNFIXED0_PLU_OUT2_MASK (0x30000U)
#define SWM_PINASSIGNFIXED0_PLU_OUT2_SHIFT (16U)
/*! PLU_OUT2 - PLU_OUT2 function assignment.
* 0b00..Assign to PIO0_09.
* 0b01..Assign to PIO0_16.
* 0b10..Assign to PIO0_25.
* 0b11..None.
*/
#define SWM_PINASSIGNFIXED0_PLU_OUT2(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGNFIXED0_PLU_OUT2_SHIFT)) & SWM_PINASSIGNFIXED0_PLU_OUT2_MASK)
#define SWM_PINASSIGNFIXED0_PLU_OUT3_MASK (0xC0000U)
#define SWM_PINASSIGNFIXED0_PLU_OUT3_SHIFT (18U)
/*! PLU_OUT3 - PLU_OUT3 function assignment.
* 0b00..Assign to PIO0_10.
* 0b01..Assign to PIO0_17.
* 0b10..Assign to PIO0_26.
* 0b11..None.
*/
#define SWM_PINASSIGNFIXED0_PLU_OUT3(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGNFIXED0_PLU_OUT3_SHIFT)) & SWM_PINASSIGNFIXED0_PLU_OUT3_MASK)
#define SWM_PINASSIGNFIXED0_PLU_OUT4_MASK (0x300000U)
#define SWM_PINASSIGNFIXED0_PLU_OUT4_SHIFT (20U)
/*! PLU_OUT4 - PLU_OUT4 function assignment.
* 0b00..Assign to PIO0_11.
* 0b01..Assign to PIO0_18.
* 0b10..Assign to PIO0_27.
* 0b11..None.
*/
#define SWM_PINASSIGNFIXED0_PLU_OUT4(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGNFIXED0_PLU_OUT4_SHIFT)) & SWM_PINASSIGNFIXED0_PLU_OUT4_MASK)
#define SWM_PINASSIGNFIXED0_PLU_OUT5_MASK (0xC00000U)
#define SWM_PINASSIGNFIXED0_PLU_OUT5_SHIFT (22U)
/*! PLU_OUT5 - PLU_OUT5 function assignment.
* 0b00..Assign to PIO0_12.
* 0b01..Assign to PIO0_19.
* 0b10..Assign to PIO0_28.
* 0b11..None.
*/
#define SWM_PINASSIGNFIXED0_PLU_OUT5(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGNFIXED0_PLU_OUT5_SHIFT)) & SWM_PINASSIGNFIXED0_PLU_OUT5_MASK)
#define SWM_PINASSIGNFIXED0_PLU_OUT6_MASK (0x3000000U)
#define SWM_PINASSIGNFIXED0_PLU_OUT6_SHIFT (24U)
/*! PLU_OUT6 - PLU_OUT6 function assignment.
* 0b00..Assign to PIO0_13.
* 0b01..Assign to PIO0_20.
* 0b10..Assign to PIO0_29.
* 0b11..None.
*/
#define SWM_PINASSIGNFIXED0_PLU_OUT6(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGNFIXED0_PLU_OUT6_SHIFT)) & SWM_PINASSIGNFIXED0_PLU_OUT6_MASK)
#define SWM_PINASSIGNFIXED0_PLU_OUT7_MASK (0xC000000U)
#define SWM_PINASSIGNFIXED0_PLU_OUT7_SHIFT (26U)
/*! PLU_OUT7 - PLU_OUT7 function assignment.
* 0b00..Assign to PIO0_14.
* 0b01..Assign to PIO0_21.
* 0b10..Assign to PIO0_30.
* 0b11..None.
*/
#define SWM_PINASSIGNFIXED0_PLU_OUT7(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINASSIGNFIXED0_PLU_OUT7_SHIFT)) & SWM_PINASSIGNFIXED0_PLU_OUT7_MASK)
/*! @} */
/*! @name PINENABLE0 - Pin enable register 0. Enables fixed-pin functions ACMP_I1, ACMP_I2, ACMP_I3,ACMP_I4, SWCLK, SWDIO, RESETN, CLKIN,WKCLK_IN, VDDCMP, ADC_0 - ADC_11,ACMP_I5,DACOUT0. */
/*! @{ */
#define SWM_PINENABLE0_ACMP_I1_MASK (0x1U)
#define SWM_PINENABLE0_ACMP_I1_SHIFT (0U)
/*! ACMP_I1 - ACMP_I1 function select.
* 0b0..ACMP_I1 enabled on pin PIO0_00.
* 0b1..ACMP_I1 disabled.
*/
#define SWM_PINENABLE0_ACMP_I1(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINENABLE0_ACMP_I1_SHIFT)) & SWM_PINENABLE0_ACMP_I1_MASK)
#define SWM_PINENABLE0_ACMP_I2_MASK (0x2U)
#define SWM_PINENABLE0_ACMP_I2_SHIFT (1U)
/*! ACMP_I2 - ACMP_I2 function select.
* 0b0..ACMP_I2 enabled on pin PIO0_1.
* 0b1..ACMP_I2 disabled.
*/
#define SWM_PINENABLE0_ACMP_I2(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINENABLE0_ACMP_I2_SHIFT)) & SWM_PINENABLE0_ACMP_I2_MASK)
#define SWM_PINENABLE0_ACMP_I3_MASK (0x4U)
#define SWM_PINENABLE0_ACMP_I3_SHIFT (2U)
/*! ACMP_I3 - ACMP_I3 function select.
* 0b0..ACMP_I3 enabled on pin PIO0_14.
* 0b1..ACMP_I3 disabled.
*/
#define SWM_PINENABLE0_ACMP_I3(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINENABLE0_ACMP_I3_SHIFT)) & SWM_PINENABLE0_ACMP_I3_MASK)
#define SWM_PINENABLE0_ACMP_I4_MASK (0x8U)
#define SWM_PINENABLE0_ACMP_I4_SHIFT (3U)
/*! ACMP_I4 - ACMP_I4 function select.
* 0b0..ACMP_I4 enabled on pin PIO0_16.
* 0b1..ACMP_I4 disabled.
*/
#define SWM_PINENABLE0_ACMP_I4(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINENABLE0_ACMP_I4_SHIFT)) & SWM_PINENABLE0_ACMP_I4_MASK)
#define SWM_PINENABLE0_SWCLK_MASK (0x10U)
#define SWM_PINENABLE0_SWCLK_SHIFT (4U)
/*! SWCLK - SWCLK function select.
* 0b0..SWCLK enabled on pin PIO0_3.
* 0b1..SWCLK disabled.
*/
#define SWM_PINENABLE0_SWCLK(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINENABLE0_SWCLK_SHIFT)) & SWM_PINENABLE0_SWCLK_MASK)
#define SWM_PINENABLE0_SWDIO_MASK (0x20U)
#define SWM_PINENABLE0_SWDIO_SHIFT (5U)
/*! SWDIO - SWDIO function select.
* 0b0..SWDIO enabled on pin PIO0_2.
* 0b1..SWDIO disabled.
*/
#define SWM_PINENABLE0_SWDIO(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINENABLE0_SWDIO_SHIFT)) & SWM_PINENABLE0_SWDIO_MASK)
#define SWM_PINENABLE0_RESETN_MASK (0x40U)
#define SWM_PINENABLE0_RESETN_SHIFT (6U)
/*! RESETN - RESETN function select.
* 0b0..RESETN enabled on pin PIO0_5.
* 0b1..RESETN disabled.
*/
#define SWM_PINENABLE0_RESETN(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINENABLE0_RESETN_SHIFT)) & SWM_PINENABLE0_RESETN_MASK)
#define SWM_PINENABLE0_CLKIN_MASK (0x80U)
#define SWM_PINENABLE0_CLKIN_SHIFT (7U)
/*! CLKIN - CLKIN function select.
* 0b0..CLKIN enabled on pin PIO0_1.
* 0b1..CLKIN disabled.
*/
#define SWM_PINENABLE0_CLKIN(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINENABLE0_CLKIN_SHIFT)) & SWM_PINENABLE0_CLKIN_MASK)
#define SWM_PINENABLE0_WKCLKIN_MASK (0x100U)
#define SWM_PINENABLE0_WKCLKIN_SHIFT (8U)
/*! WKCLKIN - WKCLK_IN function select.
* 0b0..WKCLK_IN enabled on pin PIO0_11.
* 0b1..WKCLK_IN disabled.
*/
#define SWM_PINENABLE0_WKCLKIN(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINENABLE0_WKCLKIN_SHIFT)) & SWM_PINENABLE0_WKCLKIN_MASK)
#define SWM_PINENABLE0_VDDCMP_MASK (0x200U)
#define SWM_PINENABLE0_VDDCMP_SHIFT (9U)
/*! VDDCMP - VDDCMP function select.
* 0b0..VDDCMP enabled on pin PIO0_6.
* 0b1..VDDCMP disabled.
*/
#define SWM_PINENABLE0_VDDCMP(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINENABLE0_VDDCMP_SHIFT)) & SWM_PINENABLE0_VDDCMP_MASK)
#define SWM_PINENABLE0_ADC_0_MASK (0x400U)
#define SWM_PINENABLE0_ADC_0_SHIFT (10U)
/*! ADC_0 - ADC_0 function select.
* 0b0..ADC_0 enabled on pin PIO0_1.
* 0b1..ADC_0 disabled.
*/
#define SWM_PINENABLE0_ADC_0(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINENABLE0_ADC_0_SHIFT)) & SWM_PINENABLE0_ADC_0_MASK)
#define SWM_PINENABLE0_ADC_1_MASK (0x800U)
#define SWM_PINENABLE0_ADC_1_SHIFT (11U)
/*! ADC_1 - ADC_1 function select.
* 0b0..ADC_1 enabled on pin PIO0_7.
* 0b1..ADC_1 disabled.
*/
#define SWM_PINENABLE0_ADC_1(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINENABLE0_ADC_1_SHIFT)) & SWM_PINENABLE0_ADC_1_MASK)
#define SWM_PINENABLE0_ADC_2_MASK (0x1000U)
#define SWM_PINENABLE0_ADC_2_SHIFT (12U)
/*! ADC_2 - ADC_2 function select.
* 0b0..ADC_2 enabled on pin PIO0_14.
* 0b1..ADC_2 disabled.
*/
#define SWM_PINENABLE0_ADC_2(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINENABLE0_ADC_2_SHIFT)) & SWM_PINENABLE0_ADC_2_MASK)
#define SWM_PINENABLE0_ADC_3_MASK (0x2000U)
#define SWM_PINENABLE0_ADC_3_SHIFT (13U)
/*! ADC_3 - ADC_3 function select.
* 0b0..ADC_3 enabled on pin PIO0_16.
* 0b1..ADC_3 disabled.
*/
#define SWM_PINENABLE0_ADC_3(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINENABLE0_ADC_3_SHIFT)) & SWM_PINENABLE0_ADC_3_MASK)
#define SWM_PINENABLE0_ADC_4_MASK (0x4000U)
#define SWM_PINENABLE0_ADC_4_SHIFT (14U)
/*! ADC_4 - ADC_4 function select.
* 0b0..ADC_4 enabled on pin PIO0_9.
* 0b1..ADC_4 disabled.
*/
#define SWM_PINENABLE0_ADC_4(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINENABLE0_ADC_4_SHIFT)) & SWM_PINENABLE0_ADC_4_MASK)
#define SWM_PINENABLE0_ADC_5_MASK (0x8000U)
#define SWM_PINENABLE0_ADC_5_SHIFT (15U)
/*! ADC_5 - ADC_5 function select.
* 0b0..ADC_5 enabled on pin PIO0_8.
* 0b1..ADC_5 disabled.
*/
#define SWM_PINENABLE0_ADC_5(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINENABLE0_ADC_5_SHIFT)) & SWM_PINENABLE0_ADC_5_MASK)
#define SWM_PINENABLE0_ADC_6_MASK (0x10000U)
#define SWM_PINENABLE0_ADC_6_SHIFT (16U)
/*! ADC_6 - ADC_6 function select.
* 0b0..ADC_6 enabled on pin PIO0_11.
* 0b1..ADC_6 disabled.
*/
#define SWM_PINENABLE0_ADC_6(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINENABLE0_ADC_6_SHIFT)) & SWM_PINENABLE0_ADC_6_MASK)
#define SWM_PINENABLE0_ADC_7_MASK (0x20000U)
#define SWM_PINENABLE0_ADC_7_SHIFT (17U)
/*! ADC_7 - ADC_7 function select.
* 0b0..ADC_7 enabled on pin PIO0_10.
* 0b1..ADC_7 disabled.
*/
#define SWM_PINENABLE0_ADC_7(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINENABLE0_ADC_7_SHIFT)) & SWM_PINENABLE0_ADC_7_MASK)
#define SWM_PINENABLE0_ADC_8_MASK (0x40000U)
#define SWM_PINENABLE0_ADC_8_SHIFT (18U)
/*! ADC_8 - ADC_8 function select.
* 0b0..ADC_8 enabled on pin PIO0_15.
* 0b1..ADC_8 disabled.
*/
#define SWM_PINENABLE0_ADC_8(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINENABLE0_ADC_8_SHIFT)) & SWM_PINENABLE0_ADC_8_MASK)
#define SWM_PINENABLE0_ADC_9_MASK (0x80000U)
#define SWM_PINENABLE0_ADC_9_SHIFT (19U)
/*! ADC_9 - ADC_9 function select.
* 0b0..ADC_9 enabled on pin PIO0_17.
* 0b1..ADC_9 disabled.
*/
#define SWM_PINENABLE0_ADC_9(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINENABLE0_ADC_9_SHIFT)) & SWM_PINENABLE0_ADC_9_MASK)
#define SWM_PINENABLE0_ADC_10_MASK (0x100000U)
#define SWM_PINENABLE0_ADC_10_SHIFT (20U)
/*! ADC_10 - ADC_10 function select.
* 0b0..ADC_10 enabled on pin PIO0_13.
* 0b1..ADC_10 disabled.
*/
#define SWM_PINENABLE0_ADC_10(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINENABLE0_ADC_10_SHIFT)) & SWM_PINENABLE0_ADC_10_MASK)
#define SWM_PINENABLE0_ADC_11_MASK (0x200000U)
#define SWM_PINENABLE0_ADC_11_SHIFT (21U)
/*! ADC_11 - ADC_11 function select.
* 0b0..ADC_11 enabled on pin PIO0_4.
* 0b1..ADC_11 disabled.
*/
#define SWM_PINENABLE0_ADC_11(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINENABLE0_ADC_11_SHIFT)) & SWM_PINENABLE0_ADC_11_MASK)
#define SWM_PINENABLE0_ACMP_I5_MASK (0x400000U)
#define SWM_PINENABLE0_ACMP_I5_SHIFT (22U)
/*! ACMP_I5 - ACMP_I5 function select.
* 0b0..ACMP_I5 enabled on pin PIO0_21.
* 0b1..ACMP_I5 disabled.
*/
#define SWM_PINENABLE0_ACMP_I5(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINENABLE0_ACMP_I5_SHIFT)) & SWM_PINENABLE0_ACMP_I5_MASK)
#define SWM_PINENABLE0_DACOUT0_MASK (0x800000U)
#define SWM_PINENABLE0_DACOUT0_SHIFT (23U)
/*! DACOUT0 - DACOUT0 function select.
* 0b0..DACOUT0 enabled on pin PIO0_19.
* 0b1..DACOUT0 disabled.
*/
#define SWM_PINENABLE0_DACOUT0(x) (((uint32_t)(((uint32_t)(x)) << SWM_PINENABLE0_DACOUT0_SHIFT)) & SWM_PINENABLE0_DACOUT0_MASK)
/*! @} */
/*!
* @}
*/ /* end of group SWM_Register_Masks */
/* SWM - Peripheral instance base addresses */
/** Peripheral SWM0 base address */
#define SWM0_BASE (0x4000C000u)
/** Peripheral SWM0 base pointer */
#define SWM0 ((SWM_Type *)SWM0_BASE)
/** Array initializer of SWM peripheral base addresses */
#define SWM_BASE_ADDRS { SWM0_BASE }
/** Array initializer of SWM peripheral base pointers */
#define SWM_BASE_PTRS { SWM0 }
/*!
* @}
*/ /* end of group SWM_Peripheral_Access_Layer */
/* ----------------------------------------------------------------------------
-- SYSCON Peripheral Access Layer
---------------------------------------------------------------------------- */
/*!
* @addtogroup SYSCON_Peripheral_Access_Layer SYSCON Peripheral Access Layer
* @{
*/
/** SYSCON - Register Layout Typedef */
typedef struct {
__IO uint32_t SYSMEMREMAP; /**< System Remap register, offset: 0x0 */
uint8_t RESERVED_0[52];
__IO uint32_t SYSRSTSTAT; /**< System reset status register., offset: 0x38 */
uint8_t RESERVED_1[20];
__IO uint32_t MAINCLKSEL; /**< Main clock source select register, offset: 0x50 */
__IO uint32_t MAINCLKUEN; /**< Main clock source update enable register., offset: 0x54 */
__IO uint32_t SYSAHBCLKDIV; /**< System clock divider register, offset: 0x58 */
uint8_t RESERVED_2[4];
__IO uint32_t CAPTCLKSEL; /**< Capacitive Touch clock source select., offset: 0x60 */
__IO uint32_t ADCCLKSEL; /**< ADC clock source select register, offset: 0x64 */
__IO uint32_t ADCCLKDIV; /**< ADC clock divider register, offset: 0x68 */
uint8_t RESERVED_3[16];
__IO uint32_t LPOSCCLKEN; /**< WDT and Wake Timer clock enable control., offset: 0x7C */
__IO uint32_t SYSAHBCLKCTRL0; /**< System clock group 0 control register, offset: 0x80 */
__IO uint32_t SYSAHBCLKCTRL1; /**< System clock group 1 control register, offset: 0x84 */
__IO uint32_t PRESETCTRL0; /**< Peripheral reset group 0 control register, offset: 0x88 */
__IO uint32_t PRESETCTRL1; /**< Peripheral reset group 1 control register, offset: 0x8C */
__IO uint32_t UART0CLKSEL; /**< Function clock source select for UART0., offset: 0x90 */
__IO uint32_t UART1CLKSEL; /**< Function clock source select for UART1., offset: 0x94 */
uint8_t RESERVED_4[12];
__IO uint32_t I2C0CLKSEL; /**< Function clock source select for I2C0., offset: 0xA4 */
__IO uint32_t I2C1CLKSEL; /**< Function clock source select for I2C1., offset: 0xA8 */
uint8_t RESERVED_5[8];
__IO uint32_t SPI0CLKSEL; /**< Function clock source select for SPI0., offset: 0xB4 */
uint8_t RESERVED_6[24];
struct { /* offset: 0xD0, array step: 0xC */
__IO uint32_t FRGDIV; /**< fractional generator divider value register, array offset: 0xD0, array step: 0xC */
__IO uint32_t FRGMULT; /**< fractional generator multiplier value register, array offset: 0xD4, array step: 0xC */
__IO uint32_t FRGCLKSEL; /**< FRG clock source select register, array offset: 0xD8, array step: 0xC */
} FRG[1];
uint8_t RESERVED_7[20];
__IO uint32_t CLKOUTSEL; /**< CLKOUT clock source select register, offset: 0xF0 */
__IO uint32_t CLKOUTDIV; /**< CLKOUT clock divider registers, offset: 0xF4 */
uint8_t RESERVED_8[8];
__IO uint32_t PIOPORACP; /**< POR captured PIO0 status 0, offset: 0x100 */
uint8_t RESERVED_9[76];
__IO uint32_t BODCTRL; /**< BOD control register, offset: 0x150 */
__IO uint32_t SYSTCKCAL; /**< System tick timer calibration register, offset: 0x154 */
uint8_t RESERVED_10[24];
__IO uint32_t IRQLATENCY; /**< IRQ latency register, offset: 0x170 */
__IO uint32_t NMISRC; /**< NMI source selection register, offset: 0x174 */
__IO uint32_t PINTSEL[8]; /**< Pin interrupt select registers N, array offset: 0x178, array step: 0x4 */
uint8_t RESERVED_11[108];
__IO uint32_t STARTERP0; /**< Start logic 0 pin wake-up enable register 0, offset: 0x204 */
uint8_t RESERVED_12[12];
__IO uint32_t STARTERP1; /**< Start logic 0 pin wake-up enable register 1, offset: 0x214 */
uint8_t RESERVED_13[24];
__IO uint32_t PDSLEEPCFG; /**< Deep-sleep configuration register, offset: 0x230 */
__IO uint32_t PDAWAKECFG; /**< Wake-up configuration register, offset: 0x234 */
__IO uint32_t PDRUNCFG; /**< Power configuration register, offset: 0x238 */
uint8_t RESERVED_14[444];
__I uint32_t DEVICE_ID; /**< Device ID register, offset: 0x3F8 */
} SYSCON_Type;
/* ----------------------------------------------------------------------------
-- SYSCON Register Masks
---------------------------------------------------------------------------- */
/*!
* @addtogroup SYSCON_Register_Masks SYSCON Register Masks
* @{
*/
/*! @name SYSMEMREMAP - System Remap register */
/*! @{ */
#define SYSCON_SYSMEMREMAP_MAP_MASK (0x3U)
#define SYSCON_SYSMEMREMAP_MAP_SHIFT (0U)
/*! MAP - System memory remap. Value 0x2 is reserved.
* 0b00..Boot Loader Mode. Interrupt vectors are re-mapped to Boot ROM.
* 0b01..User RAM Mode. Interrupt vectors are re-mapped to Static RAM.
* 0b10..User Flash Mode. Interrupt vectors are not re-mapped and reside in Flash.
*/
#define SYSCON_SYSMEMREMAP_MAP(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSMEMREMAP_MAP_SHIFT)) & SYSCON_SYSMEMREMAP_MAP_MASK)
/*! @} */
/*! @name SYSRSTSTAT - System reset status register. */
/*! @{ */
#define SYSCON_SYSRSTSTAT_POR_BOD_MASK (0x1U)
#define SYSCON_SYSRSTSTAT_POR_BOD_SHIFT (0U)
/*! POR_BOD - POR and BOD reset status
*/
#define SYSCON_SYSRSTSTAT_POR_BOD(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSRSTSTAT_POR_BOD_SHIFT)) & SYSCON_SYSRSTSTAT_POR_BOD_MASK)
#define SYSCON_SYSRSTSTAT_EXTRST_MASK (0x2U)
#define SYSCON_SYSRSTSTAT_EXTRST_SHIFT (1U)
/*! EXTRST - Status of the external RESET pin
* 0b0..
*/
#define SYSCON_SYSRSTSTAT_EXTRST(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSRSTSTAT_EXTRST_SHIFT)) & SYSCON_SYSRSTSTAT_EXTRST_MASK)
#define SYSCON_SYSRSTSTAT_WDT_MASK (0x4U)
#define SYSCON_SYSRSTSTAT_WDT_SHIFT (2U)
/*! WDT - Status of the Watchdog reset.
*/
#define SYSCON_SYSRSTSTAT_WDT(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSRSTSTAT_WDT_SHIFT)) & SYSCON_SYSRSTSTAT_WDT_MASK)
#define SYSCON_SYSRSTSTAT_SYSRST_MASK (0x10U)
#define SYSCON_SYSRSTSTAT_SYSRST_SHIFT (4U)
/*! SYSRST - Status of the software system reset.
*/
#define SYSCON_SYSRSTSTAT_SYSRST(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSRSTSTAT_SYSRST_SHIFT)) & SYSCON_SYSRSTSTAT_SYSRST_MASK)
/*! @} */
/*! @name MAINCLKSEL - Main clock source select register */
/*! @{ */
#define SYSCON_MAINCLKSEL_SEL_MASK (0x3U)
#define SYSCON_MAINCLKSEL_SEL_SHIFT (0U)
/*! SEL - Clock source for main clock.
* 0b00..FRO.
* 0b01..External clock.
* 0b10..Low power oscillator.
* 0b11..FRO_DIV.
*/
#define SYSCON_MAINCLKSEL_SEL(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_MAINCLKSEL_SEL_SHIFT)) & SYSCON_MAINCLKSEL_SEL_MASK)
/*! @} */
/*! @name MAINCLKUEN - Main clock source update enable register. */
/*! @{ */
#define SYSCON_MAINCLKUEN_ENA_MASK (0x1U)
#define SYSCON_MAINCLKUEN_ENA_SHIFT (0U)
/*! ENA - Enable main clock source update
* 0b0..no change
* 0b1..update clock source
*/
#define SYSCON_MAINCLKUEN_ENA(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_MAINCLKUEN_ENA_SHIFT)) & SYSCON_MAINCLKUEN_ENA_MASK)
/*! @} */
/*! @name SYSAHBCLKDIV - System clock divider register */
/*! @{ */
#define SYSCON_SYSAHBCLKDIV_DIV_MASK (0xFFU)
#define SYSCON_SYSAHBCLKDIV_DIV_SHIFT (0U)
/*! DIV - System AHB clock divider values 0: System clock disabled. 1: Divide by 1. to 255: Divide by 255.
*/
#define SYSCON_SYSAHBCLKDIV_DIV(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSAHBCLKDIV_DIV_SHIFT)) & SYSCON_SYSAHBCLKDIV_DIV_MASK)
/*! @} */
/*! @name CAPTCLKSEL - Capacitive Touch clock source select. */
/*! @{ */
#define SYSCON_CAPTCLKSEL_SEL_MASK (0x7U)
#define SYSCON_CAPTCLKSEL_SEL_SHIFT (0U)
/*! SEL - Peripheral clock source.
* 0b000..FRO
* 0b001..Main clock
* 0b010..Reserved
* 0b011..FRO_DIV = FRO/2
* 0b100..Low power oscillator
* 0b101..Reserved
* 0b110..Reserved
* 0b111..None
*/
#define SYSCON_CAPTCLKSEL_SEL(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_CAPTCLKSEL_SEL_SHIFT)) & SYSCON_CAPTCLKSEL_SEL_MASK)
/*! @} */
/*! @name ADCCLKSEL - ADC clock source select register */
/*! @{ */
#define SYSCON_ADCCLKSEL_SEL_MASK (0x3U)
#define SYSCON_ADCCLKSEL_SEL_SHIFT (0U)
/*! SEL - Clock source for ADC clock
* 0b00..FRO
* 0b01..External clock
* 0b10..Reserved
* 0b11..None
*/
#define SYSCON_ADCCLKSEL_SEL(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_ADCCLKSEL_SEL_SHIFT)) & SYSCON_ADCCLKSEL_SEL_MASK)
/*! @} */
/*! @name ADCCLKDIV - ADC clock divider register */
/*! @{ */
#define SYSCON_ADCCLKDIV_DIV_MASK (0xFFU)
#define SYSCON_ADCCLKDIV_DIV_SHIFT (0U)
/*! DIV - ADC clock divider values 0: ADC clock disabled. 1: Divide by 1. to 255: Divide by 255.
*/
#define SYSCON_ADCCLKDIV_DIV(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_ADCCLKDIV_DIV_SHIFT)) & SYSCON_ADCCLKDIV_DIV_MASK)
/*! @} */
/*! @name LPOSCCLKEN - WDT and Wake Timer clock enable control. */
/*! @{ */
#define SYSCON_LPOSCCLKEN_WDT_MASK (0x1U)
#define SYSCON_LPOSCCLKEN_WDT_SHIFT (0U)
/*! WDT - Enables clock for WDT
* 0b0..Disable
* 0b1..Enable
*/
#define SYSCON_LPOSCCLKEN_WDT(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_LPOSCCLKEN_WDT_SHIFT)) & SYSCON_LPOSCCLKEN_WDT_MASK)
#define SYSCON_LPOSCCLKEN_WKT_MASK (0x2U)
#define SYSCON_LPOSCCLKEN_WKT_SHIFT (1U)
/*! WKT - Enables clock for Wake Timer
* 0b0..Disable
* 0b1..Enable
*/
#define SYSCON_LPOSCCLKEN_WKT(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_LPOSCCLKEN_WKT_SHIFT)) & SYSCON_LPOSCCLKEN_WKT_MASK)
/*! @} */
/*! @name SYSAHBCLKCTRL0 - System clock group 0 control register */
/*! @{ */
#define SYSCON_SYSAHBCLKCTRL0_SYS_MASK (0x1U)
#define SYSCON_SYSAHBCLKCTRL0_SYS_SHIFT (0U)
/*! SYS - Enables the clock for the AHB, the APB bridge, the Cortex-M0+ core clocks, SYSCON, and the
* PMU. This bit is read only and always reads as 1.
*/
#define SYSCON_SYSAHBCLKCTRL0_SYS(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSAHBCLKCTRL0_SYS_SHIFT)) & SYSCON_SYSAHBCLKCTRL0_SYS_MASK)
#define SYSCON_SYSAHBCLKCTRL0_ROM_MASK (0x2U)
#define SYSCON_SYSAHBCLKCTRL0_ROM_SHIFT (1U)
/*! ROM - Enables clock for ROM.
* 0b0..disable
* 0b1..enable
*/
#define SYSCON_SYSAHBCLKCTRL0_ROM(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSAHBCLKCTRL0_ROM_SHIFT)) & SYSCON_SYSAHBCLKCTRL0_ROM_MASK)
#define SYSCON_SYSAHBCLKCTRL0_RAM0_MASK (0x4U)
#define SYSCON_SYSAHBCLKCTRL0_RAM0_SHIFT (2U)
/*! RAM0 - Enables clock for SRAM0
* 0b0..disable
* 0b1..enable
*/
#define SYSCON_SYSAHBCLKCTRL0_RAM0(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSAHBCLKCTRL0_RAM0_SHIFT)) & SYSCON_SYSAHBCLKCTRL0_RAM0_MASK)
#define SYSCON_SYSAHBCLKCTRL0_FLASH_MASK (0x10U)
#define SYSCON_SYSAHBCLKCTRL0_FLASH_SHIFT (4U)
/*! FLASH - Enables clock for flash.
* 0b0..disable
* 0b1..enable
*/
#define SYSCON_SYSAHBCLKCTRL0_FLASH(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSAHBCLKCTRL0_FLASH_SHIFT)) & SYSCON_SYSAHBCLKCTRL0_FLASH_MASK)
#define SYSCON_SYSAHBCLKCTRL0_I2C0_MASK (0x20U)
#define SYSCON_SYSAHBCLKCTRL0_I2C0_SHIFT (5U)
/*! I2C0 - Enables clock for I2C0.
* 0b0..disable
* 0b1..enable
*/
#define SYSCON_SYSAHBCLKCTRL0_I2C0(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSAHBCLKCTRL0_I2C0_SHIFT)) & SYSCON_SYSAHBCLKCTRL0_I2C0_MASK)
#define SYSCON_SYSAHBCLKCTRL0_GPIO0_MASK (0x40U)
#define SYSCON_SYSAHBCLKCTRL0_GPIO0_SHIFT (6U)
/*! GPIO0 - Enables clock for GPIO0 port registers.
* 0b0..disable
* 0b1..enable
*/
#define SYSCON_SYSAHBCLKCTRL0_GPIO0(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSAHBCLKCTRL0_GPIO0_SHIFT)) & SYSCON_SYSAHBCLKCTRL0_GPIO0_MASK)
#define SYSCON_SYSAHBCLKCTRL0_SWM_MASK (0x80U)
#define SYSCON_SYSAHBCLKCTRL0_SWM_SHIFT (7U)
/*! SWM - Enables clock for switch matrix.
* 0b0..disable
* 0b1..enable
*/
#define SYSCON_SYSAHBCLKCTRL0_SWM(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSAHBCLKCTRL0_SWM_SHIFT)) & SYSCON_SYSAHBCLKCTRL0_SWM_MASK)
#define SYSCON_SYSAHBCLKCTRL0_WKT_MASK (0x200U)
#define SYSCON_SYSAHBCLKCTRL0_WKT_SHIFT (9U)
/*! WKT - Enables clock for self-wake-up timer.
* 0b0..disable
* 0b1..enable
*/
#define SYSCON_SYSAHBCLKCTRL0_WKT(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSAHBCLKCTRL0_WKT_SHIFT)) & SYSCON_SYSAHBCLKCTRL0_WKT_MASK)
#define SYSCON_SYSAHBCLKCTRL0_MRT_MASK (0x400U)
#define SYSCON_SYSAHBCLKCTRL0_MRT_SHIFT (10U)
/*! MRT - Enables clock for multi-rate timer.
* 0b0..disable
* 0b1..enable
*/
#define SYSCON_SYSAHBCLKCTRL0_MRT(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSAHBCLKCTRL0_MRT_SHIFT)) & SYSCON_SYSAHBCLKCTRL0_MRT_MASK)
#define SYSCON_SYSAHBCLKCTRL0_SPI0_MASK (0x800U)
#define SYSCON_SYSAHBCLKCTRL0_SPI0_SHIFT (11U)
/*! SPI0 - Enables clock for SPI0.
* 0b0..disable
* 0b1..enable
*/
#define SYSCON_SYSAHBCLKCTRL0_SPI0(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSAHBCLKCTRL0_SPI0_SHIFT)) & SYSCON_SYSAHBCLKCTRL0_SPI0_MASK)
#define SYSCON_SYSAHBCLKCTRL0_CRC_MASK (0x2000U)
#define SYSCON_SYSAHBCLKCTRL0_CRC_SHIFT (13U)
/*! CRC - Enables clock for CRC.
* 0b0..disable
* 0b1..enable
*/
#define SYSCON_SYSAHBCLKCTRL0_CRC(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSAHBCLKCTRL0_CRC_SHIFT)) & SYSCON_SYSAHBCLKCTRL0_CRC_MASK)
#define SYSCON_SYSAHBCLKCTRL0_UART0_MASK (0x4000U)
#define SYSCON_SYSAHBCLKCTRL0_UART0_SHIFT (14U)
/*! UART0 - Enables clock for UART0.
* 0b0..disable
* 0b1..enable
*/
#define SYSCON_SYSAHBCLKCTRL0_UART0(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSAHBCLKCTRL0_UART0_SHIFT)) & SYSCON_SYSAHBCLKCTRL0_UART0_MASK)
#define SYSCON_SYSAHBCLKCTRL0_UART1_MASK (0x8000U)
#define SYSCON_SYSAHBCLKCTRL0_UART1_SHIFT (15U)
/*! UART1 - Enables clock for UART1.
* 0b0..disable
* 0b1..enable
*/
#define SYSCON_SYSAHBCLKCTRL0_UART1(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSAHBCLKCTRL0_UART1_SHIFT)) & SYSCON_SYSAHBCLKCTRL0_UART1_MASK)
#define SYSCON_SYSAHBCLKCTRL0_WWDT_MASK (0x20000U)
#define SYSCON_SYSAHBCLKCTRL0_WWDT_SHIFT (17U)
/*! WWDT - Enables clock for WWDT.
* 0b0..disable
* 0b1..enable
*/
#define SYSCON_SYSAHBCLKCTRL0_WWDT(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSAHBCLKCTRL0_WWDT_SHIFT)) & SYSCON_SYSAHBCLKCTRL0_WWDT_MASK)
#define SYSCON_SYSAHBCLKCTRL0_IOCON_MASK (0x40000U)
#define SYSCON_SYSAHBCLKCTRL0_IOCON_SHIFT (18U)
/*! IOCON - Enables clock for IOCON.
* 0b0..disable
* 0b1..enable
*/
#define SYSCON_SYSAHBCLKCTRL0_IOCON(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSAHBCLKCTRL0_IOCON_SHIFT)) & SYSCON_SYSAHBCLKCTRL0_IOCON_MASK)
#define SYSCON_SYSAHBCLKCTRL0_ACMP_MASK (0x80000U)
#define SYSCON_SYSAHBCLKCTRL0_ACMP_SHIFT (19U)
/*! ACMP - Enables clock for analog comparator.
* 0b0..disable
* 0b1..enable
*/
#define SYSCON_SYSAHBCLKCTRL0_ACMP(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSAHBCLKCTRL0_ACMP_SHIFT)) & SYSCON_SYSAHBCLKCTRL0_ACMP_MASK)
#define SYSCON_SYSAHBCLKCTRL0_I2C1_MASK (0x200000U)
#define SYSCON_SYSAHBCLKCTRL0_I2C1_SHIFT (21U)
/*! I2C1 - Enables clock for I2C1.
* 0b0..disable
* 0b1..enable
*/
#define SYSCON_SYSAHBCLKCTRL0_I2C1(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSAHBCLKCTRL0_I2C1_SHIFT)) & SYSCON_SYSAHBCLKCTRL0_I2C1_MASK)
#define SYSCON_SYSAHBCLKCTRL0_ADC_MASK (0x1000000U)
#define SYSCON_SYSAHBCLKCTRL0_ADC_SHIFT (24U)
/*! ADC - Enables clock for ADC.
* 0b0..disable
* 0b1..enable
*/
#define SYSCON_SYSAHBCLKCTRL0_ADC(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSAHBCLKCTRL0_ADC_SHIFT)) & SYSCON_SYSAHBCLKCTRL0_ADC_MASK)
#define SYSCON_SYSAHBCLKCTRL0_CTIMER_MASK (0x2000000U)
#define SYSCON_SYSAHBCLKCTRL0_CTIMER_SHIFT (25U)
/*! CTIMER - Enables clock for CTIMER.
* 0b0..disable
* 0b1..enable
*/
#define SYSCON_SYSAHBCLKCTRL0_CTIMER(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSAHBCLKCTRL0_CTIMER_SHIFT)) & SYSCON_SYSAHBCLKCTRL0_CTIMER_MASK)
#define SYSCON_SYSAHBCLKCTRL0_DAC_MASK (0x8000000U)
#define SYSCON_SYSAHBCLKCTRL0_DAC_SHIFT (27U)
/*! DAC - Enables clock for DAC.
* 0b0..disable
* 0b1..enable
*/
#define SYSCON_SYSAHBCLKCTRL0_DAC(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSAHBCLKCTRL0_DAC_SHIFT)) & SYSCON_SYSAHBCLKCTRL0_DAC_MASK)
#define SYSCON_SYSAHBCLKCTRL0_GPIO_INT_MASK (0x10000000U)
#define SYSCON_SYSAHBCLKCTRL0_GPIO_INT_SHIFT (28U)
/*! GPIO_INT - Enable clock for GPIO pin interrupt registers
* 0b0..disable
* 0b1..enable
*/
#define SYSCON_SYSAHBCLKCTRL0_GPIO_INT(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSAHBCLKCTRL0_GPIO_INT_SHIFT)) & SYSCON_SYSAHBCLKCTRL0_GPIO_INT_MASK)
/*! @} */
/*! @name SYSAHBCLKCTRL1 - System clock group 1 control register */
/*! @{ */
#define SYSCON_SYSAHBCLKCTRL1_CAPT_MASK (0x1U)
#define SYSCON_SYSAHBCLKCTRL1_CAPT_SHIFT (0U)
/*! CAPT - Enables the clock for Capacitive Touch.
*/
#define SYSCON_SYSAHBCLKCTRL1_CAPT(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSAHBCLKCTRL1_CAPT_SHIFT)) & SYSCON_SYSAHBCLKCTRL1_CAPT_MASK)
#define SYSCON_SYSAHBCLKCTRL1_PLU_MASK (0x20U)
#define SYSCON_SYSAHBCLKCTRL1_PLU_SHIFT (5U)
/*! PLU - Enables clock for PLU.
* 0b0..disable
* 0b1..enable
*/
#define SYSCON_SYSAHBCLKCTRL1_PLU(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSAHBCLKCTRL1_PLU_SHIFT)) & SYSCON_SYSAHBCLKCTRL1_PLU_MASK)
/*! @} */
/*! @name PRESETCTRL0 - Peripheral reset group 0 control register */
/*! @{ */
#define SYSCON_PRESETCTRL0_FLASH_RST_N_MASK (0x10U)
#define SYSCON_PRESETCTRL0_FLASH_RST_N_SHIFT (4U)
/*! FLASH_RST_N - flash controller reset control
* 0b0..Assert the flash controller reset.
* 0b1..Clear the flash controller reset.
*/
#define SYSCON_PRESETCTRL0_FLASH_RST_N(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PRESETCTRL0_FLASH_RST_N_SHIFT)) & SYSCON_PRESETCTRL0_FLASH_RST_N_MASK)
#define SYSCON_PRESETCTRL0_I2C0_RST_N_MASK (0x20U)
#define SYSCON_PRESETCTRL0_I2C0_RST_N_SHIFT (5U)
/*! I2C0_RST_N - I2C0 reset control
* 0b0..Assert the I2C0 reset.
* 0b1..Clear the I2C0 reset.
*/
#define SYSCON_PRESETCTRL0_I2C0_RST_N(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PRESETCTRL0_I2C0_RST_N_SHIFT)) & SYSCON_PRESETCTRL0_I2C0_RST_N_MASK)
#define SYSCON_PRESETCTRL0_GPIO0_RST_N_MASK (0x40U)
#define SYSCON_PRESETCTRL0_GPIO0_RST_N_SHIFT (6U)
/*! GPIO0_RST_N - GPIO0 reset control
* 0b0..Assert the GPIO0 reset.
* 0b1..Clear the GPIO0 reset.
*/
#define SYSCON_PRESETCTRL0_GPIO0_RST_N(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PRESETCTRL0_GPIO0_RST_N_SHIFT)) & SYSCON_PRESETCTRL0_GPIO0_RST_N_MASK)
#define SYSCON_PRESETCTRL0_SWM_RST_N_MASK (0x80U)
#define SYSCON_PRESETCTRL0_SWM_RST_N_SHIFT (7U)
/*! SWM_RST_N - SWM reset control
* 0b0..Assert the SWM reset.
* 0b1..Clear the SWM reset.
*/
#define SYSCON_PRESETCTRL0_SWM_RST_N(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PRESETCTRL0_SWM_RST_N_SHIFT)) & SYSCON_PRESETCTRL0_SWM_RST_N_MASK)
#define SYSCON_PRESETCTRL0_WKT_RST_N_MASK (0x200U)
#define SYSCON_PRESETCTRL0_WKT_RST_N_SHIFT (9U)
/*! WKT_RST_N - Self-wake-up timer (WKT) reset control
* 0b0..Assert the WKT reset.
* 0b1..Clear the WKT reset.
*/
#define SYSCON_PRESETCTRL0_WKT_RST_N(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PRESETCTRL0_WKT_RST_N_SHIFT)) & SYSCON_PRESETCTRL0_WKT_RST_N_MASK)
#define SYSCON_PRESETCTRL0_MRT_RST_N_MASK (0x400U)
#define SYSCON_PRESETCTRL0_MRT_RST_N_SHIFT (10U)
/*! MRT_RST_N - Multi-rate timer (MRT) reset control
* 0b0..Assert the MRT reset.
* 0b1..Clear the MRT reset.
*/
#define SYSCON_PRESETCTRL0_MRT_RST_N(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PRESETCTRL0_MRT_RST_N_SHIFT)) & SYSCON_PRESETCTRL0_MRT_RST_N_MASK)
#define SYSCON_PRESETCTRL0_SPI0_RST_N_MASK (0x800U)
#define SYSCON_PRESETCTRL0_SPI0_RST_N_SHIFT (11U)
/*! SPI0_RST_N - SPI0 reset control
* 0b0..Assert the SPI0 reset.
* 0b1..Clear the SPI0 reset.
*/
#define SYSCON_PRESETCTRL0_SPI0_RST_N(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PRESETCTRL0_SPI0_RST_N_SHIFT)) & SYSCON_PRESETCTRL0_SPI0_RST_N_MASK)
#define SYSCON_PRESETCTRL0_CRC_RST_N_MASK (0x2000U)
#define SYSCON_PRESETCTRL0_CRC_RST_N_SHIFT (13U)
/*! CRC_RST_N - CRC engine reset control
* 0b0..Assert the CRC reset.
* 0b1..Clear the CRC reset.
*/
#define SYSCON_PRESETCTRL0_CRC_RST_N(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PRESETCTRL0_CRC_RST_N_SHIFT)) & SYSCON_PRESETCTRL0_CRC_RST_N_MASK)
#define SYSCON_PRESETCTRL0_UART0_RST_N_MASK (0x4000U)
#define SYSCON_PRESETCTRL0_UART0_RST_N_SHIFT (14U)
/*! UART0_RST_N - UART0 reset control
* 0b0..Assert the UART0 reset.
* 0b1..Clear the UART0 reset.
*/
#define SYSCON_PRESETCTRL0_UART0_RST_N(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PRESETCTRL0_UART0_RST_N_SHIFT)) & SYSCON_PRESETCTRL0_UART0_RST_N_MASK)
#define SYSCON_PRESETCTRL0_UART1_RST_N_MASK (0x8000U)
#define SYSCON_PRESETCTRL0_UART1_RST_N_SHIFT (15U)
/*! UART1_RST_N - UART1 reset control
* 0b0..Assert the UART1 reset.
* 0b1..Clear the UART1 reset.
*/
#define SYSCON_PRESETCTRL0_UART1_RST_N(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PRESETCTRL0_UART1_RST_N_SHIFT)) & SYSCON_PRESETCTRL0_UART1_RST_N_MASK)
#define SYSCON_PRESETCTRL0_IOCON_RST_N_MASK (0x40000U)
#define SYSCON_PRESETCTRL0_IOCON_RST_N_SHIFT (18U)
/*! IOCON_RST_N - IOCON reset control
* 0b0..Assert the IOCON reset.
* 0b1..Clear the IOCON reset.
*/
#define SYSCON_PRESETCTRL0_IOCON_RST_N(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PRESETCTRL0_IOCON_RST_N_SHIFT)) & SYSCON_PRESETCTRL0_IOCON_RST_N_MASK)
#define SYSCON_PRESETCTRL0_ACMP_RST_N_MASK (0x80000U)
#define SYSCON_PRESETCTRL0_ACMP_RST_N_SHIFT (19U)
/*! ACMP_RST_N - Analog comparator reset control
* 0b0..Assert the analog comparator reset.
* 0b1..Clear the analog comparator reset.
*/
#define SYSCON_PRESETCTRL0_ACMP_RST_N(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PRESETCTRL0_ACMP_RST_N_SHIFT)) & SYSCON_PRESETCTRL0_ACMP_RST_N_MASK)
#define SYSCON_PRESETCTRL0_I2C1_RST_N_MASK (0x200000U)
#define SYSCON_PRESETCTRL0_I2C1_RST_N_SHIFT (21U)
/*! I2C1_RST_N - I2C1 reset control.
* 0b0..Assert the I2C1 reset.
* 0b1..Clear the I2C1 reset.
*/
#define SYSCON_PRESETCTRL0_I2C1_RST_N(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PRESETCTRL0_I2C1_RST_N_SHIFT)) & SYSCON_PRESETCTRL0_I2C1_RST_N_MASK)
#define SYSCON_PRESETCTRL0_ADC_RST_N_MASK (0x1000000U)
#define SYSCON_PRESETCTRL0_ADC_RST_N_SHIFT (24U)
/*! ADC_RST_N - ADC reset control
* 0b0..Assert the ADC reset.
* 0b1..Clear the ADC reset.
*/
#define SYSCON_PRESETCTRL0_ADC_RST_N(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PRESETCTRL0_ADC_RST_N_SHIFT)) & SYSCON_PRESETCTRL0_ADC_RST_N_MASK)
#define SYSCON_PRESETCTRL0_CTIMER0_RST_N_MASK (0x2000000U)
#define SYSCON_PRESETCTRL0_CTIMER0_RST_N_SHIFT (25U)
/*! CTIMER0_RST_N - CTIMER reset control
* 0b0..Assert the CTIMER reset.
* 0b1..Clear the CTIMER reset.
*/
#define SYSCON_PRESETCTRL0_CTIMER0_RST_N(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PRESETCTRL0_CTIMER0_RST_N_SHIFT)) & SYSCON_PRESETCTRL0_CTIMER0_RST_N_MASK)
#define SYSCON_PRESETCTRL0_DAC0_RST_N_MASK (0x8000000U)
#define SYSCON_PRESETCTRL0_DAC0_RST_N_SHIFT (27U)
/*! DAC0_RST_N - DAC0 reset control.
* 0b0..Assert the DAC0 reset.
* 0b1..Clear the DAC0 reset.
*/
#define SYSCON_PRESETCTRL0_DAC0_RST_N(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PRESETCTRL0_DAC0_RST_N_SHIFT)) & SYSCON_PRESETCTRL0_DAC0_RST_N_MASK)
#define SYSCON_PRESETCTRL0_GPIOINT_RST_N_MASK (0x10000000U)
#define SYSCON_PRESETCTRL0_GPIOINT_RST_N_SHIFT (28U)
/*! GPIOINT_RST_N - GPIOINT reset control
* 0b0..Assert the GPIOINT reset.
* 0b1..Clear the GPIOINT reset.
*/
#define SYSCON_PRESETCTRL0_GPIOINT_RST_N(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PRESETCTRL0_GPIOINT_RST_N_SHIFT)) & SYSCON_PRESETCTRL0_GPIOINT_RST_N_MASK)
/*! @} */
/*! @name PRESETCTRL1 - Peripheral reset group 1 control register */
/*! @{ */
#define SYSCON_PRESETCTRL1_CAPT_RST_N_MASK (0x1U)
#define SYSCON_PRESETCTRL1_CAPT_RST_N_SHIFT (0U)
/*! CAPT_RST_N - Capacitive Touch reset control.
* 0b0..Assert Capacitive Touch reset.
* 0b1..Clear Capacitive Touch reset.
*/
#define SYSCON_PRESETCTRL1_CAPT_RST_N(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PRESETCTRL1_CAPT_RST_N_SHIFT)) & SYSCON_PRESETCTRL1_CAPT_RST_N_MASK)
#define SYSCON_PRESETCTRL1_FRG0_RST_N_MASK (0x8U)
#define SYSCON_PRESETCTRL1_FRG0_RST_N_SHIFT (3U)
/*! FRG0_RST_N - Fractional baud rate generator 0 reset control
* 0b0..Assert the FRG0 reset.
* 0b1..Clear the FRG0 reset.
*/
#define SYSCON_PRESETCTRL1_FRG0_RST_N(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PRESETCTRL1_FRG0_RST_N_SHIFT)) & SYSCON_PRESETCTRL1_FRG0_RST_N_MASK)
#define SYSCON_PRESETCTRL1_PLU_RST_N_MASK (0x20U)
#define SYSCON_PRESETCTRL1_PLU_RST_N_SHIFT (5U)
/*! PLU_RST_N - PLU reset control.
* 0b0..Assert PLU reset.
* 0b1..Clear PLU reset.
*/
#define SYSCON_PRESETCTRL1_PLU_RST_N(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PRESETCTRL1_PLU_RST_N_SHIFT)) & SYSCON_PRESETCTRL1_PLU_RST_N_MASK)
/*! @} */
/*! @name UART0CLKSEL - Function clock source select for UART0. */
/*! @{ */
#define SYSCON_UART0CLKSEL_SEL_MASK (0x7U)
#define SYSCON_UART0CLKSEL_SEL_SHIFT (0U)
/*! SEL - Peripheral clock source
* 0b000..FRO
* 0b001..main clock
* 0b010..Frg0clk
* 0b011..none
* 0b100..FRO_DIV
* 0b101..none
* 0b110..none
* 0b111..none
*/
#define SYSCON_UART0CLKSEL_SEL(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_UART0CLKSEL_SEL_SHIFT)) & SYSCON_UART0CLKSEL_SEL_MASK)
/*! @} */
/*! @name UART1CLKSEL - Function clock source select for UART1. */
/*! @{ */
#define SYSCON_UART1CLKSEL_SEL_MASK (0x7U)
#define SYSCON_UART1CLKSEL_SEL_SHIFT (0U)
/*! SEL - Peripheral clock source
* 0b000..FRO
* 0b001..main clock
* 0b010..Frg0clk
* 0b011..none
* 0b100..FRO_DIV
* 0b101..none
* 0b110..none
* 0b111..none
*/
#define SYSCON_UART1CLKSEL_SEL(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_UART1CLKSEL_SEL_SHIFT)) & SYSCON_UART1CLKSEL_SEL_MASK)
/*! @} */
/*! @name I2C0CLKSEL - Function clock source select for I2C0. */
/*! @{ */
#define SYSCON_I2C0CLKSEL_SEL_MASK (0x7U)
#define SYSCON_I2C0CLKSEL_SEL_SHIFT (0U)
/*! SEL - Peripheral clock source
* 0b000..FRO
* 0b001..main clock
* 0b010..Frg0clk
* 0b011..none
* 0b100..FRO_DIV
* 0b101..none
* 0b110..none
* 0b111..none
*/
#define SYSCON_I2C0CLKSEL_SEL(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_I2C0CLKSEL_SEL_SHIFT)) & SYSCON_I2C0CLKSEL_SEL_MASK)
/*! @} */
/*! @name I2C1CLKSEL - Function clock source select for I2C1. */
/*! @{ */
#define SYSCON_I2C1CLKSEL_SEL_MASK (0x7U)
#define SYSCON_I2C1CLKSEL_SEL_SHIFT (0U)
/*! SEL - Peripheral clock source
* 0b000..FRO
* 0b001..main clock
* 0b010..Frg0clk
* 0b011..none
* 0b100..FRO_DIV
* 0b101..none
* 0b110..none
* 0b111..none
*/
#define SYSCON_I2C1CLKSEL_SEL(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_I2C1CLKSEL_SEL_SHIFT)) & SYSCON_I2C1CLKSEL_SEL_MASK)
/*! @} */
/*! @name SPI0CLKSEL - Function clock source select for SPI0. */
/*! @{ */
#define SYSCON_SPI0CLKSEL_SEL_MASK (0x7U)
#define SYSCON_SPI0CLKSEL_SEL_SHIFT (0U)
/*! SEL - Peripheral clock source
* 0b000..FRO
* 0b001..main clock
* 0b010..Frg0clk
* 0b011..none
* 0b100..FRO_DIV
* 0b101..none
* 0b110..none
* 0b111..none
*/
#define SYSCON_SPI0CLKSEL_SEL(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SPI0CLKSEL_SEL_SHIFT)) & SYSCON_SPI0CLKSEL_SEL_MASK)
/*! @} */
/*! @name FRG_FRGDIV - fractional generator divider value register */
/*! @{ */
#define SYSCON_FRG_FRGDIV_DIV_MASK (0xFFU)
#define SYSCON_FRG_FRGDIV_DIV_SHIFT (0U)
/*! DIV - Denominator of the fractional divider. DIV is equal to the programmed value +1. Always set
* to 0xFF to use with the fractional baud rate generator.
*/
#define SYSCON_FRG_FRGDIV_DIV(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_FRG_FRGDIV_DIV_SHIFT)) & SYSCON_FRG_FRGDIV_DIV_MASK)
/*! @} */
/* The count of SYSCON_FRG_FRGDIV */
#define SYSCON_FRG_FRGDIV_COUNT (1U)
/*! @name FRG_FRGMULT - fractional generator multiplier value register */
/*! @{ */
#define SYSCON_FRG_FRGMULT_MULT_MASK (0xFFU)
#define SYSCON_FRG_FRGMULT_MULT_SHIFT (0U)
/*! MULT - Numerator of the fractional divider. MULT is equal to the programmed value.
*/
#define SYSCON_FRG_FRGMULT_MULT(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_FRG_FRGMULT_MULT_SHIFT)) & SYSCON_FRG_FRGMULT_MULT_MASK)
/*! @} */
/* The count of SYSCON_FRG_FRGMULT */
#define SYSCON_FRG_FRGMULT_COUNT (1U)
/*! @name FRG_FRGCLKSEL - FRG clock source select register */
/*! @{ */
#define SYSCON_FRG_FRGCLKSEL_SEL_MASK (0x3U)
#define SYSCON_FRG_FRGCLKSEL_SEL_SHIFT (0U)
/*! SEL - Clock source for frgN_src clock
* 0b00..FRO
* 0b01..main clock
* 0b10..Reserved
* 0b11..None
*/
#define SYSCON_FRG_FRGCLKSEL_SEL(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_FRG_FRGCLKSEL_SEL_SHIFT)) & SYSCON_FRG_FRGCLKSEL_SEL_MASK)
/*! @} */
/* The count of SYSCON_FRG_FRGCLKSEL */
#define SYSCON_FRG_FRGCLKSEL_COUNT (1U)
/*! @name CLKOUTSEL - CLKOUT clock source select register */
/*! @{ */
#define SYSCON_CLKOUTSEL_SEL_MASK (0x7U)
#define SYSCON_CLKOUTSEL_SEL_SHIFT (0U)
/*! SEL - CLKOUT clock source
* 0b000..FRO
* 0b001..main clock
* 0b010..Reserved
* 0b011..external clock
* 0b100..Low power oscillator
* 0b101..Reserved
* 0b110..Reserved
* 0b111..None
*/
#define SYSCON_CLKOUTSEL_SEL(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_CLKOUTSEL_SEL_SHIFT)) & SYSCON_CLKOUTSEL_SEL_MASK)
/*! @} */
/*! @name CLKOUTDIV - CLKOUT clock divider registers */
/*! @{ */
#define SYSCON_CLKOUTDIV_DIV_MASK (0xFFU)
#define SYSCON_CLKOUTDIV_DIV_SHIFT (0U)
/*! DIV - CLKOUT clock divider values 0: Disable CLKOUT clock divider. 1: Divide by 1. to 255: Divide by 255.
*/
#define SYSCON_CLKOUTDIV_DIV(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_CLKOUTDIV_DIV_SHIFT)) & SYSCON_CLKOUTDIV_DIV_MASK)
/*! @} */
/*! @name PIOPORACP - POR captured PIO0 status 0 */
/*! @{ */
#define SYSCON_PIOPORACP_PIOSTAT_MASK (0xFFFFFFFFU)
#define SYSCON_PIOPORACP_PIOSTAT_SHIFT (0U)
/*! PIOSTAT - State of PIO0_0 to PIO0_5 and PIO0_7 to PIO0_17 at power-on reset
*/
#define SYSCON_PIOPORACP_PIOSTAT(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PIOPORACP_PIOSTAT_SHIFT)) & SYSCON_PIOPORACP_PIOSTAT_MASK)
/*! @} */
/*! @name BODCTRL - BOD control register */
/*! @{ */
#define SYSCON_BODCTRL_BODRSTLEV_MASK (0x3U)
#define SYSCON_BODCTRL_BODRSTLEV_SHIFT (0U)
/*! BODRSTLEV - BOD reset level
* 0b00..Reserved
* 0b01..Level 1
* 0b10..Level 2
* 0b11..Level 3
*/
#define SYSCON_BODCTRL_BODRSTLEV(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_BODCTRL_BODRSTLEV_SHIFT)) & SYSCON_BODCTRL_BODRSTLEV_MASK)
#define SYSCON_BODCTRL_BODINTVAL_MASK (0xCU)
#define SYSCON_BODCTRL_BODINTVAL_SHIFT (2U)
/*! BODINTVAL - BOD interrupt level
* 0b00..Reserved
* 0b01..Level 1
* 0b10..Level 2
* 0b11..Level 3
*/
#define SYSCON_BODCTRL_BODINTVAL(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_BODCTRL_BODINTVAL_SHIFT)) & SYSCON_BODCTRL_BODINTVAL_MASK)
#define SYSCON_BODCTRL_BODRSTENA_MASK (0x10U)
#define SYSCON_BODCTRL_BODRSTENA_SHIFT (4U)
/*! BODRSTENA - BOD reset enable
* 0b0..Disable reset function.
* 0b1..Enable reset function.
*/
#define SYSCON_BODCTRL_BODRSTENA(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_BODCTRL_BODRSTENA_SHIFT)) & SYSCON_BODCTRL_BODRSTENA_MASK)
/*! @} */
/*! @name SYSTCKCAL - System tick timer calibration register */
/*! @{ */
#define SYSCON_SYSTCKCAL_CAL_MASK (0x3FFFFFFU)
#define SYSCON_SYSTCKCAL_CAL_SHIFT (0U)
/*! CAL - System tick timer calibration value.
*/
#define SYSCON_SYSTCKCAL_CAL(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_SYSTCKCAL_CAL_SHIFT)) & SYSCON_SYSTCKCAL_CAL_MASK)
/*! @} */
/*! @name IRQLATENCY - IRQ latency register */
/*! @{ */
#define SYSCON_IRQLATENCY_LATENCY_MASK (0xFFU)
#define SYSCON_IRQLATENCY_LATENCY_SHIFT (0U)
/*! LATENCY - 8-bit latency value.
*/
#define SYSCON_IRQLATENCY_LATENCY(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_IRQLATENCY_LATENCY_SHIFT)) & SYSCON_IRQLATENCY_LATENCY_MASK)
/*! @} */
/*! @name NMISRC - NMI source selection register */
/*! @{ */
#define SYSCON_NMISRC_IRQN_MASK (0x1FU)
#define SYSCON_NMISRC_IRQN_SHIFT (0U)
/*! IRQN - The IRQ number of the interrupt that acts as the Non-Maskable Interrupt (NMI) if bit 31 is 1
*/
#define SYSCON_NMISRC_IRQN(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_NMISRC_IRQN_SHIFT)) & SYSCON_NMISRC_IRQN_MASK)
#define SYSCON_NMISRC_NMIEN_MASK (0x80000000U)
#define SYSCON_NMISRC_NMIEN_SHIFT (31U)
/*! NMIEN - Write a 1 to this bit to enable the Non-Maskable Interrupt (NMI) source selected by bits 4:0.
*/
#define SYSCON_NMISRC_NMIEN(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_NMISRC_NMIEN_SHIFT)) & SYSCON_NMISRC_NMIEN_MASK)
/*! @} */
/*! @name PINTSEL - Pin interrupt select registers N */
/*! @{ */
#define SYSCON_PINTSEL_INTPIN_MASK (0x3FU)
#define SYSCON_PINTSEL_INTPIN_SHIFT (0U)
/*! INTPIN - Pin number select for pin interrupt or pattern match engine input. (PIO0_0 to PIO0_5
* correspond to numbers 0 to 5. PIO0_7 to PIO0_30 correspond to numbers 7 to 30.)
*/
#define SYSCON_PINTSEL_INTPIN(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PINTSEL_INTPIN_SHIFT)) & SYSCON_PINTSEL_INTPIN_MASK)
/*! @} */
/* The count of SYSCON_PINTSEL */
#define SYSCON_PINTSEL_COUNT (8U)
/*! @name STARTERP0 - Start logic 0 pin wake-up enable register 0 */
/*! @{ */
#define SYSCON_STARTERP0_PINT0_MASK (0x1U)
#define SYSCON_STARTERP0_PINT0_SHIFT (0U)
/*! PINT0 - GPIO pin interrupt 0 wake-up
* 0b0..Disabled
* 0b1..Enabled
*/
#define SYSCON_STARTERP0_PINT0(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_STARTERP0_PINT0_SHIFT)) & SYSCON_STARTERP0_PINT0_MASK)
#define SYSCON_STARTERP0_PINT1_MASK (0x2U)
#define SYSCON_STARTERP0_PINT1_SHIFT (1U)
/*! PINT1 - GPIO pin interrupt 1 wake-up
* 0b0..Disabled
* 0b1..Enabled
*/
#define SYSCON_STARTERP0_PINT1(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_STARTERP0_PINT1_SHIFT)) & SYSCON_STARTERP0_PINT1_MASK)
#define SYSCON_STARTERP0_PINT2_MASK (0x4U)
#define SYSCON_STARTERP0_PINT2_SHIFT (2U)
/*! PINT2 - GPIO pin interrupt 2 wake-up
* 0b0..Disabled
* 0b1..Enabled
*/
#define SYSCON_STARTERP0_PINT2(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_STARTERP0_PINT2_SHIFT)) & SYSCON_STARTERP0_PINT2_MASK)
#define SYSCON_STARTERP0_PINT3_MASK (0x8U)
#define SYSCON_STARTERP0_PINT3_SHIFT (3U)
/*! PINT3 - GPIO pin interrupt 3 wake-up
* 0b0..Disabled
* 0b1..Enabled
*/
#define SYSCON_STARTERP0_PINT3(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_STARTERP0_PINT3_SHIFT)) & SYSCON_STARTERP0_PINT3_MASK)
#define SYSCON_STARTERP0_PINT4_MASK (0x10U)
#define SYSCON_STARTERP0_PINT4_SHIFT (4U)
/*! PINT4 - GPIO pin interrupt 4 wake-up
* 0b0..Disabled
* 0b1..Enabled
*/
#define SYSCON_STARTERP0_PINT4(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_STARTERP0_PINT4_SHIFT)) & SYSCON_STARTERP0_PINT4_MASK)
#define SYSCON_STARTERP0_PINT5_MASK (0x20U)
#define SYSCON_STARTERP0_PINT5_SHIFT (5U)
/*! PINT5 - GPIO pin interrupt 5 wake-up
* 0b0..Disabled
* 0b1..Enabled
*/
#define SYSCON_STARTERP0_PINT5(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_STARTERP0_PINT5_SHIFT)) & SYSCON_STARTERP0_PINT5_MASK)
#define SYSCON_STARTERP0_PINT6_MASK (0x40U)
#define SYSCON_STARTERP0_PINT6_SHIFT (6U)
/*! PINT6 - GPIO pin interrupt 6 wake-up
* 0b0..Disabled
* 0b1..Enabled
*/
#define SYSCON_STARTERP0_PINT6(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_STARTERP0_PINT6_SHIFT)) & SYSCON_STARTERP0_PINT6_MASK)
#define SYSCON_STARTERP0_PINT7_MASK (0x80U)
#define SYSCON_STARTERP0_PINT7_SHIFT (7U)
/*! PINT7 - GPIO pin interrupt 7 wake-up
* 0b0..Disabled
* 0b1..Enabled
*/
#define SYSCON_STARTERP0_PINT7(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_STARTERP0_PINT7_SHIFT)) & SYSCON_STARTERP0_PINT7_MASK)
/*! @} */
/*! @name STARTERP1 - Start logic 0 pin wake-up enable register 1 */
/*! @{ */
#define SYSCON_STARTERP1_SPI0_MASK (0x1U)
#define SYSCON_STARTERP1_SPI0_SHIFT (0U)
/*! SPI0 - SPI0 interrupt wake-up
* 0b0..Disabled
* 0b1..Enabled
*/
#define SYSCON_STARTERP1_SPI0(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_STARTERP1_SPI0_SHIFT)) & SYSCON_STARTERP1_SPI0_MASK)
#define SYSCON_STARTERP1_USART0_MASK (0x8U)
#define SYSCON_STARTERP1_USART0_SHIFT (3U)
/*! USART0 - USART0 interrupt wake-up. Configure USART in synchronous slave mode.
* 0b0..Disabled
* 0b1..Enabled
*/
#define SYSCON_STARTERP1_USART0(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_STARTERP1_USART0_SHIFT)) & SYSCON_STARTERP1_USART0_MASK)
#define SYSCON_STARTERP1_USART1_MASK (0x10U)
#define SYSCON_STARTERP1_USART1_SHIFT (4U)
/*! USART1 - USART1 interrupt wake-up. Configure USART in synchronous slave mode.
* 0b0..Disabled
* 0b1..Enabled
*/
#define SYSCON_STARTERP1_USART1(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_STARTERP1_USART1_SHIFT)) & SYSCON_STARTERP1_USART1_MASK)
#define SYSCON_STARTERP1_PLU_MASK (0x40U)
#define SYSCON_STARTERP1_PLU_SHIFT (6U)
/*! PLU - PLU interrupt wake-up.
* 0b0..Disabled
* 0b1..Enabled
*/
#define SYSCON_STARTERP1_PLU(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_STARTERP1_PLU_SHIFT)) & SYSCON_STARTERP1_PLU_MASK)
#define SYSCON_STARTERP1_I2C1_MASK (0x80U)
#define SYSCON_STARTERP1_I2C1_SHIFT (7U)
/*! I2C1 - I2C1 interrupt wake-up.
* 0b0..Disabled
* 0b1..Enabled
*/
#define SYSCON_STARTERP1_I2C1(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_STARTERP1_I2C1_SHIFT)) & SYSCON_STARTERP1_I2C1_MASK)
#define SYSCON_STARTERP1_I2C0_MASK (0x100U)
#define SYSCON_STARTERP1_I2C0_SHIFT (8U)
/*! I2C0 - I2C0 interrupt wake-up.
* 0b0..Disabled
* 0b1..Enabled
*/
#define SYSCON_STARTERP1_I2C0(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_STARTERP1_I2C0_SHIFT)) & SYSCON_STARTERP1_I2C0_MASK)
#define SYSCON_STARTERP1_CAPT_MASK (0x800U)
#define SYSCON_STARTERP1_CAPT_SHIFT (11U)
/*! CAPT - CAPT interrupt wake-up.
* 0b0..Disabled
* 0b1..Enabled
*/
#define SYSCON_STARTERP1_CAPT(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_STARTERP1_CAPT_SHIFT)) & SYSCON_STARTERP1_CAPT_MASK)
#define SYSCON_STARTERP1_WWDT_MASK (0x1000U)
#define SYSCON_STARTERP1_WWDT_SHIFT (12U)
/*! WWDT - WWDT interrupt wake-up
* 0b0..Disabled
* 0b1..Enabled
*/
#define SYSCON_STARTERP1_WWDT(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_STARTERP1_WWDT_SHIFT)) & SYSCON_STARTERP1_WWDT_MASK)
#define SYSCON_STARTERP1_BOD_MASK (0x2000U)
#define SYSCON_STARTERP1_BOD_SHIFT (13U)
/*! BOD - BOD interrupt wake-up
* 0b0..Disabled
* 0b1..Enabled
*/
#define SYSCON_STARTERP1_BOD(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_STARTERP1_BOD_SHIFT)) & SYSCON_STARTERP1_BOD_MASK)
#define SYSCON_STARTERP1_WKT_MASK (0x8000U)
#define SYSCON_STARTERP1_WKT_SHIFT (15U)
/*! WKT - Self-wake-up timer interrupt wake-up
* 0b0..Disabled
* 0b1..Enabled
*/
#define SYSCON_STARTERP1_WKT(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_STARTERP1_WKT_SHIFT)) & SYSCON_STARTERP1_WKT_MASK)
/*! @} */
/*! @name PDSLEEPCFG - Deep-sleep configuration register */
/*! @{ */
#define SYSCON_PDSLEEPCFG_BOD_PD_MASK (0x8U)
#define SYSCON_PDSLEEPCFG_BOD_PD_SHIFT (3U)
/*! BOD_PD - BOD power-down control for Deep-sleep and Power-down mode
* 0b0..powered
* 0b1..powered down
*/
#define SYSCON_PDSLEEPCFG_BOD_PD(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PDSLEEPCFG_BOD_PD_SHIFT)) & SYSCON_PDSLEEPCFG_BOD_PD_MASK)
#define SYSCON_PDSLEEPCFG_LPOSC_PD_MASK (0x40U)
#define SYSCON_PDSLEEPCFG_LPOSC_PD_SHIFT (6U)
/*! LPOSC_PD - Low power oscillator power-down control for deep-sleep and power-down mode. Changing
* this bit to powered-down has no effect when the LOCK bit in the WWDT MOD register is set. In
* this case, the low power oscillator is always running.
* 0b0..Disabled
* 0b1..Enabled
*/
#define SYSCON_PDSLEEPCFG_LPOSC_PD(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PDSLEEPCFG_LPOSC_PD_SHIFT)) & SYSCON_PDSLEEPCFG_LPOSC_PD_MASK)
/*! @} */
/*! @name PDAWAKECFG - Wake-up configuration register */
/*! @{ */
#define SYSCON_PDAWAKECFG_FROOUT_PD_MASK (0x1U)
#define SYSCON_PDAWAKECFG_FROOUT_PD_SHIFT (0U)
/*! FROOUT_PD - FRO oscillator output wake-up configuration
* 0b0..powered
* 0b1..powered down
*/
#define SYSCON_PDAWAKECFG_FROOUT_PD(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PDAWAKECFG_FROOUT_PD_SHIFT)) & SYSCON_PDAWAKECFG_FROOUT_PD_MASK)
#define SYSCON_PDAWAKECFG_FRO_PD_MASK (0x2U)
#define SYSCON_PDAWAKECFG_FRO_PD_SHIFT (1U)
/*! FRO_PD - FRO oscillator power-down wake-up configuration
* 0b0..powered
* 0b1..powered down
*/
#define SYSCON_PDAWAKECFG_FRO_PD(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PDAWAKECFG_FRO_PD_SHIFT)) & SYSCON_PDAWAKECFG_FRO_PD_MASK)
#define SYSCON_PDAWAKECFG_FLASH_PD_MASK (0x4U)
#define SYSCON_PDAWAKECFG_FLASH_PD_SHIFT (2U)
/*! FLASH_PD - Flash wake-up configuration
* 0b0..powered
* 0b1..powered down
*/
#define SYSCON_PDAWAKECFG_FLASH_PD(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PDAWAKECFG_FLASH_PD_SHIFT)) & SYSCON_PDAWAKECFG_FLASH_PD_MASK)
#define SYSCON_PDAWAKECFG_BOD_PD_MASK (0x8U)
#define SYSCON_PDAWAKECFG_BOD_PD_SHIFT (3U)
/*! BOD_PD - BOD wake-up configuration
* 0b0..powered
* 0b1..powered down
*/
#define SYSCON_PDAWAKECFG_BOD_PD(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PDAWAKECFG_BOD_PD_SHIFT)) & SYSCON_PDAWAKECFG_BOD_PD_MASK)
#define SYSCON_PDAWAKECFG_ADC_PD_MASK (0x10U)
#define SYSCON_PDAWAKECFG_ADC_PD_SHIFT (4U)
/*! ADC_PD - ADC wake-up configuration
* 0b0..powered
* 0b1..powered down
*/
#define SYSCON_PDAWAKECFG_ADC_PD(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PDAWAKECFG_ADC_PD_SHIFT)) & SYSCON_PDAWAKECFG_ADC_PD_MASK)
#define SYSCON_PDAWAKECFG_LPOSC_PD_MASK (0x40U)
#define SYSCON_PDAWAKECFG_LPOSC_PD_SHIFT (6U)
/*! LPOSC_PD - Low power oscillator wake-up configuration. Changing this bit to powered-down has no
* effect when the LOCK bit in the WWDT MOD register is set. In this case, the low power
* oscillator is always running.
* 0b0..Disabled
* 0b1..Enabled
*/
#define SYSCON_PDAWAKECFG_LPOSC_PD(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PDAWAKECFG_LPOSC_PD_SHIFT)) & SYSCON_PDAWAKECFG_LPOSC_PD_MASK)
#define SYSCON_PDAWAKECFG_DAC_MASK (0x2000U)
#define SYSCON_PDAWAKECFG_DAC_SHIFT (13U)
/*! DAC - DAC0 wake-up configuration.
* 0b0..Disabled
* 0b1..Enabled
*/
#define SYSCON_PDAWAKECFG_DAC(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PDAWAKECFG_DAC_SHIFT)) & SYSCON_PDAWAKECFG_DAC_MASK)
#define SYSCON_PDAWAKECFG_ACMP_MASK (0x8000U)
#define SYSCON_PDAWAKECFG_ACMP_SHIFT (15U)
/*! ACMP - Analog comparator wake-up configuration
* 0b0..Disabled
* 0b1..Enabled
*/
#define SYSCON_PDAWAKECFG_ACMP(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PDAWAKECFG_ACMP_SHIFT)) & SYSCON_PDAWAKECFG_ACMP_MASK)
/*! @} */
/*! @name PDRUNCFG - Power configuration register */
/*! @{ */
#define SYSCON_PDRUNCFG_FROOUT_PD_MASK (0x1U)
#define SYSCON_PDRUNCFG_FROOUT_PD_SHIFT (0U)
/*! FROOUT_PD - FRO oscillator output wake-up configuration
* 0b0..powered
* 0b1..powered down
*/
#define SYSCON_PDRUNCFG_FROOUT_PD(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PDRUNCFG_FROOUT_PD_SHIFT)) & SYSCON_PDRUNCFG_FROOUT_PD_MASK)
#define SYSCON_PDRUNCFG_FRO_PD_MASK (0x2U)
#define SYSCON_PDRUNCFG_FRO_PD_SHIFT (1U)
/*! FRO_PD - FRO oscillator power-down wake-up configuration
* 0b0..powered
* 0b1..powered down
*/
#define SYSCON_PDRUNCFG_FRO_PD(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PDRUNCFG_FRO_PD_SHIFT)) & SYSCON_PDRUNCFG_FRO_PD_MASK)
#define SYSCON_PDRUNCFG_FLASH_PD_MASK (0x4U)
#define SYSCON_PDRUNCFG_FLASH_PD_SHIFT (2U)
/*! FLASH_PD - Flash wake-up configuration
* 0b0..powered
* 0b1..powered down
*/
#define SYSCON_PDRUNCFG_FLASH_PD(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PDRUNCFG_FLASH_PD_SHIFT)) & SYSCON_PDRUNCFG_FLASH_PD_MASK)
#define SYSCON_PDRUNCFG_BOD_PD_MASK (0x8U)
#define SYSCON_PDRUNCFG_BOD_PD_SHIFT (3U)
/*! BOD_PD - BOD wake-up configuration
* 0b0..powered
* 0b1..powered down
*/
#define SYSCON_PDRUNCFG_BOD_PD(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PDRUNCFG_BOD_PD_SHIFT)) & SYSCON_PDRUNCFG_BOD_PD_MASK)
#define SYSCON_PDRUNCFG_ADC_PD_MASK (0x10U)
#define SYSCON_PDRUNCFG_ADC_PD_SHIFT (4U)
/*! ADC_PD - ADC wake-up configuration
* 0b0..powered
* 0b1..powered down
*/
#define SYSCON_PDRUNCFG_ADC_PD(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PDRUNCFG_ADC_PD_SHIFT)) & SYSCON_PDRUNCFG_ADC_PD_MASK)
#define SYSCON_PDRUNCFG_LPOSC_PD_MASK (0x40U)
#define SYSCON_PDRUNCFG_LPOSC_PD_SHIFT (6U)
/*! LPOSC_PD - Low power oscillator power down. Changing this bit to powered-down has no effect when
* the LOCK bit in the WWDT MOD register is set. In this case, the low power oscillator is
* always running.
* 0b0..Disabled
* 0b1..Enabled
*/
#define SYSCON_PDRUNCFG_LPOSC_PD(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PDRUNCFG_LPOSC_PD_SHIFT)) & SYSCON_PDRUNCFG_LPOSC_PD_MASK)
#define SYSCON_PDRUNCFG_DAC0_MASK (0x2000U)
#define SYSCON_PDRUNCFG_DAC0_SHIFT (13U)
/*! DAC0 - DAC0 wake-up configuration.
* 0b0..Disabled
* 0b1..Enabled
*/
#define SYSCON_PDRUNCFG_DAC0(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PDRUNCFG_DAC0_SHIFT)) & SYSCON_PDRUNCFG_DAC0_MASK)
#define SYSCON_PDRUNCFG_ACMP_MASK (0x8000U)
#define SYSCON_PDRUNCFG_ACMP_SHIFT (15U)
/*! ACMP - Analog comparator wake-up configuration
* 0b0..Disabled
* 0b1..Enabled
*/
#define SYSCON_PDRUNCFG_ACMP(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_PDRUNCFG_ACMP_SHIFT)) & SYSCON_PDRUNCFG_ACMP_MASK)
/*! @} */
/*! @name DEVICE_ID - Device ID register */
/*! @{ */
#define SYSCON_DEVICE_ID_DEVICEID_MASK (0xFFFFFFFFU)
#define SYSCON_DEVICE_ID_DEVICEID_SHIFT (0U)
/*! DEVICEID - Used to read the part identification number.
*/
#define SYSCON_DEVICE_ID_DEVICEID(x) (((uint32_t)(((uint32_t)(x)) << SYSCON_DEVICE_ID_DEVICEID_SHIFT)) & SYSCON_DEVICE_ID_DEVICEID_MASK)
/*! @} */
/*!
* @}
*/ /* end of group SYSCON_Register_Masks */
/* SYSCON - Peripheral instance base addresses */
/** Peripheral SYSCON base address */
#define SYSCON_BASE (0x40048000u)
/** Peripheral SYSCON base pointer */
#define SYSCON ((SYSCON_Type *)SYSCON_BASE)
/** Array initializer of SYSCON peripheral base addresses */
#define SYSCON_BASE_ADDRS { SYSCON_BASE }
/** Array initializer of SYSCON peripheral base pointers */
#define SYSCON_BASE_PTRS { SYSCON }
/*!
* @}
*/ /* end of group SYSCON_Peripheral_Access_Layer */
/* ----------------------------------------------------------------------------
-- USART Peripheral Access Layer
---------------------------------------------------------------------------- */
/*!
* @addtogroup USART_Peripheral_Access_Layer USART Peripheral Access Layer
* @{
*/
/** USART - Register Layout Typedef */
typedef struct {
__IO uint32_t CFG; /**< USART Configuration register. Basic USART configuration settings that typically are not changed during operation., offset: 0x0 */
__IO uint32_t CTL; /**< USART Control register. USART control settings that are more likely to change during operation., offset: 0x4 */
__IO uint32_t STAT; /**< USART Status register. The complete status value can be read here. Writing ones clears some bits in the register. Some bits can be cleared by writing a 1 to them., offset: 0x8 */
__IO uint32_t INTENSET; /**< Interrupt Enable read and Set register. Contains an individual interrupt enable bit for each potential USART interrupt. A complete value may be read from this register. Writing a 1 to any implemented bit position causes that bit to be set., offset: 0xC */
__O uint32_t INTENCLR; /**< Interrupt Enable Clear register. Allows clearing any combination of bits in the INTENSET register. Writing a 1 to any implemented bit position causes the corresponding bit to be cleared., offset: 0x10 */
__I uint32_t RXDAT; /**< Receiver Data register. Contains the last character received., offset: 0x14 */
__I uint32_t RXDATSTAT; /**< Receiver Data with Status register. Combines the last character received with the current USART receive status. Allows DMA or software to recover incoming data and status together., offset: 0x18 */
__IO uint32_t TXDAT; /**< Transmit Data register. Data to be transmitted is written here., offset: 0x1C */
__IO uint32_t BRG; /**< Baud Rate Generator register. 16-bit integer baud rate divisor value., offset: 0x20 */
__I uint32_t INTSTAT; /**< Interrupt status register. Reflects interrupts that are currently enabled., offset: 0x24 */
__IO uint32_t OSR; /**< Oversample selection register for asynchronous communication., offset: 0x28 */
__IO uint32_t ADDR; /**< Address register for automatic address matching., offset: 0x2C */
} USART_Type;
/* ----------------------------------------------------------------------------
-- USART Register Masks
---------------------------------------------------------------------------- */
/*!
* @addtogroup USART_Register_Masks USART Register Masks
* @{
*/
/*! @name CFG - USART Configuration register. Basic USART configuration settings that typically are not changed during operation. */
/*! @{ */
#define USART_CFG_ENABLE_MASK (0x1U)
#define USART_CFG_ENABLE_SHIFT (0U)
/*! ENABLE - USART Enable.
* 0b0..Disabled. The USART is disabled and the internal state machine and counters are reset. While Enable = 0,
* all USART interrupts and DMA transfers are disabled. When Enable is set again, CFG and most other control
* bits remain unchanged. When re-enabled, the USART will immediately be ready to transmit because the
* transmitter has been reset and is therefore available.
* 0b1..Enabled. The USART is enabled for operation.
*/
#define USART_CFG_ENABLE(x) (((uint32_t)(((uint32_t)(x)) << USART_CFG_ENABLE_SHIFT)) & USART_CFG_ENABLE_MASK)
#define USART_CFG_DATALEN_MASK (0xCU)
#define USART_CFG_DATALEN_SHIFT (2U)
/*! DATALEN - Selects the data size for the USART.
* 0b00..7 bit Data length.
* 0b01..8 bit Data length.
* 0b10..9 bit data length. The 9th bit is commonly used for addressing in multidrop mode. See the ADDRDET bit in the CTL register.
* 0b11..Reserved.
*/
#define USART_CFG_DATALEN(x) (((uint32_t)(((uint32_t)(x)) << USART_CFG_DATALEN_SHIFT)) & USART_CFG_DATALEN_MASK)
#define USART_CFG_PARITYSEL_MASK (0x30U)
#define USART_CFG_PARITYSEL_SHIFT (4U)
/*! PARITYSEL - Selects what type of parity is used by the USART.
* 0b00..No parity.
* 0b01..Reserved.
* 0b10..Even parity. Adds a bit to each character such that the number of 1s in a transmitted character is even,
* and the number of 1s in a received character is expected to be even.
* 0b11..Odd parity. Adds a bit to each character such that the number of 1s in a transmitted character is odd,
* and the number of 1s in a received character is expected to be odd.
*/
#define USART_CFG_PARITYSEL(x) (((uint32_t)(((uint32_t)(x)) << USART_CFG_PARITYSEL_SHIFT)) & USART_CFG_PARITYSEL_MASK)
#define USART_CFG_STOPLEN_MASK (0x40U)
#define USART_CFG_STOPLEN_SHIFT (6U)
/*! STOPLEN - Number of stop bits appended to transmitted data. Only a single stop bit is required for received data.
* 0b0..1 stop bit.
* 0b1..2 stop bits. This setting should only be used for asynchronous communication.
*/
#define USART_CFG_STOPLEN(x) (((uint32_t)(((uint32_t)(x)) << USART_CFG_STOPLEN_SHIFT)) & USART_CFG_STOPLEN_MASK)
#define USART_CFG_CTSEN_MASK (0x200U)
#define USART_CFG_CTSEN_SHIFT (9U)
/*! CTSEN - CTS Enable. Determines whether CTS is used for flow control. CTS can be from the input
* pin, or from the USART's own RTS if loopback mode is enabled.
* 0b0..No flow control. The transmitter does not receive any automatic flow control signal.
* 0b1..Flow control enabled. The transmitter uses the CTS input (or RTS output in loopback mode) for flow control purposes.
*/
#define USART_CFG_CTSEN(x) (((uint32_t)(((uint32_t)(x)) << USART_CFG_CTSEN_SHIFT)) & USART_CFG_CTSEN_MASK)
#define USART_CFG_SYNCEN_MASK (0x800U)
#define USART_CFG_SYNCEN_SHIFT (11U)
/*! SYNCEN - Selects synchronous or asynchronous operation.
* 0b0..Asynchronous mode.
* 0b1..Synchronous mode.
*/
#define USART_CFG_SYNCEN(x) (((uint32_t)(((uint32_t)(x)) << USART_CFG_SYNCEN_SHIFT)) & USART_CFG_SYNCEN_MASK)
#define USART_CFG_CLKPOL_MASK (0x1000U)
#define USART_CFG_CLKPOL_SHIFT (12U)
/*! CLKPOL - Selects the clock polarity and sampling edge of received data in synchronous mode.
* 0b0..Falling edge. Un_RXD is sampled on the falling edge of SCLK.
* 0b1..Rising edge. Un_RXD is sampled on the rising edge of SCLK.
*/
#define USART_CFG_CLKPOL(x) (((uint32_t)(((uint32_t)(x)) << USART_CFG_CLKPOL_SHIFT)) & USART_CFG_CLKPOL_MASK)
#define USART_CFG_SYNCMST_MASK (0x4000U)
#define USART_CFG_SYNCMST_SHIFT (14U)
/*! SYNCMST - Synchronous mode Master select.
* 0b0..Slave. When synchronous mode is enabled, the USART is a slave.
* 0b1..Master. When synchronous mode is enabled, the USART is a master.
*/
#define USART_CFG_SYNCMST(x) (((uint32_t)(((uint32_t)(x)) << USART_CFG_SYNCMST_SHIFT)) & USART_CFG_SYNCMST_MASK)
#define USART_CFG_LOOP_MASK (0x8000U)
#define USART_CFG_LOOP_SHIFT (15U)
/*! LOOP - Selects data loopback mode.
* 0b0..Normal operation.
* 0b1..Loopback mode. This provides a mechanism to perform diagnostic loopback testing for USART data. Serial
* data from the transmitter (Un_TXD) is connected internally to serial input of the receive (Un_RXD). Un_TXD
* and Un_RTS activity will also appear on external pins if these functions are configured to appear on device
* pins. The receiver RTS signal is also looped back to CTS and performs flow control if enabled by CTSEN.
*/
#define USART_CFG_LOOP(x) (((uint32_t)(((uint32_t)(x)) << USART_CFG_LOOP_SHIFT)) & USART_CFG_LOOP_MASK)
#define USART_CFG_OETA_MASK (0x40000U)
#define USART_CFG_OETA_SHIFT (18U)
/*! OETA - Output Enable Turnaround time enable for RS-485 operation.
* 0b0..Disabled. If selected by OESEL, the Output Enable signal deasserted at the end of the last stop bit of a transmission.
* 0b1..Enabled. If selected by OESEL, the Output Enable signal remains asserted for one character time after the
* end of the last stop bit of a transmission. OE will also remain asserted if another transmit begins
* before it is deasserted.
*/
#define USART_CFG_OETA(x) (((uint32_t)(((uint32_t)(x)) << USART_CFG_OETA_SHIFT)) & USART_CFG_OETA_MASK)
#define USART_CFG_AUTOADDR_MASK (0x80000U)
#define USART_CFG_AUTOADDR_SHIFT (19U)
/*! AUTOADDR - Automatic Address matching enable.
* 0b0..Disabled. When addressing is enabled by ADDRDET, address matching is done by software. This provides the
* possibility of versatile addressing (e.g. respond to more than one address).
* 0b1..Enabled. When addressing is enabled by ADDRDET, address matching is done by hardware, using the value in
* the ADDR register as the address to match.
*/
#define USART_CFG_AUTOADDR(x) (((uint32_t)(((uint32_t)(x)) << USART_CFG_AUTOADDR_SHIFT)) & USART_CFG_AUTOADDR_MASK)
#define USART_CFG_OESEL_MASK (0x100000U)
#define USART_CFG_OESEL_SHIFT (20U)
/*! OESEL - Output Enable Select.
* 0b0..Standard. The RTS signal is used as the standard flow control function.
* 0b1..RS-485. The RTS signal configured to provide an output enable signal to control an RS-485 transceiver.
*/
#define USART_CFG_OESEL(x) (((uint32_t)(((uint32_t)(x)) << USART_CFG_OESEL_SHIFT)) & USART_CFG_OESEL_MASK)
#define USART_CFG_OEPOL_MASK (0x200000U)
#define USART_CFG_OEPOL_SHIFT (21U)
/*! OEPOL - Output Enable Polarity.
* 0b0..Low. If selected by OESEL, the output enable is active low.
* 0b1..High. If selected by OESEL, the output enable is active high.
*/
#define USART_CFG_OEPOL(x) (((uint32_t)(((uint32_t)(x)) << USART_CFG_OEPOL_SHIFT)) & USART_CFG_OEPOL_MASK)
#define USART_CFG_RXPOL_MASK (0x400000U)
#define USART_CFG_RXPOL_SHIFT (22U)
/*! RXPOL - Receive data polarity.
* 0b0..Standard. The RX signal is used as it arrives from the pin. This means that the RX rest value is 1, start
* bit is 0, data is not inverted, and the stop bit is 1.
* 0b1..Inverted. The RX signal is inverted before being used by the USART. This means that the RX rest value is
* 0, start bit is 1, data is inverted, and the stop bit is 0.
*/
#define USART_CFG_RXPOL(x) (((uint32_t)(((uint32_t)(x)) << USART_CFG_RXPOL_SHIFT)) & USART_CFG_RXPOL_MASK)
#define USART_CFG_TXPOL_MASK (0x800000U)
#define USART_CFG_TXPOL_SHIFT (23U)
/*! TXPOL - Transmit data polarity.
* 0b0..Standard. The TX signal is sent out without change. This means that the TX rest value is 1, start bit is
* 0, data is not inverted, and the stop bit is 1.
* 0b1..Inverted. The TX signal is inverted by the USART before being sent out. This means that the TX rest value
* is 0, start bit is 1, data is inverted, and the stop bit is 0.
*/
#define USART_CFG_TXPOL(x) (((uint32_t)(((uint32_t)(x)) << USART_CFG_TXPOL_SHIFT)) & USART_CFG_TXPOL_MASK)
/*! @} */
/*! @name CTL - USART Control register. USART control settings that are more likely to change during operation. */
/*! @{ */
#define USART_CTL_TXBRKEN_MASK (0x2U)
#define USART_CTL_TXBRKEN_SHIFT (1U)
/*! TXBRKEN - Break Enable.
* 0b0..Normal operation.
* 0b1..Continuous break. Continuous break is sent immediately when this bit is set, and remains until this bit
* is cleared. A break may be sent without danger of corrupting any currently transmitting character if the
* transmitter is first disabled (TXDIS in CTL is set) and then waiting for the transmitter to be disabled
* (TXDISINT in STAT = 1) before writing 1 to TXBRKEN.
*/
#define USART_CTL_TXBRKEN(x) (((uint32_t)(((uint32_t)(x)) << USART_CTL_TXBRKEN_SHIFT)) & USART_CTL_TXBRKEN_MASK)
#define USART_CTL_ADDRDET_MASK (0x4U)
#define USART_CTL_ADDRDET_SHIFT (2U)
/*! ADDRDET - Enable address detect mode.
* 0b0..Disabled. The USART presents all incoming data.
* 0b1..Enabled. The USART receiver ignores incoming data that does not have the most significant bit of the data
* (typically the 9th bit) = 1. When the data MSB bit = 1, the receiver treats the incoming data normally,
* generating a received data interrupt. Software can then check the data to see if this is an address that
* should be handled. If it is, the ADDRDET bit is cleared by software and further incoming data is handled
* normally.
*/
#define USART_CTL_ADDRDET(x) (((uint32_t)(((uint32_t)(x)) << USART_CTL_ADDRDET_SHIFT)) & USART_CTL_ADDRDET_MASK)
#define USART_CTL_TXDIS_MASK (0x40U)
#define USART_CTL_TXDIS_SHIFT (6U)
/*! TXDIS - Transmit Disable.
* 0b0..Not disabled. USART transmitter is not disabled.
* 0b1..Disabled. USART transmitter is disabled after any character currently being transmitted is complete. This
* feature can be used to facilitate software flow control.
*/
#define USART_CTL_TXDIS(x) (((uint32_t)(((uint32_t)(x)) << USART_CTL_TXDIS_SHIFT)) & USART_CTL_TXDIS_MASK)
#define USART_CTL_CC_MASK (0x100U)
#define USART_CTL_CC_SHIFT (8U)
/*! CC - Continuous Clock generation. By default, SCLK is only output while data is being transmitted in synchronous mode.
* 0b0..Clock on character. In synchronous mode, SCLK cycles only when characters are being sent on Un_TXD or to
* complete a character that is being received.
* 0b1..Continuous clock. SCLK runs continuously in synchronous mode, allowing characters to be received on
* Un_RxD independently from transmission on Un_TXD).
*/
#define USART_CTL_CC(x) (((uint32_t)(((uint32_t)(x)) << USART_CTL_CC_SHIFT)) & USART_CTL_CC_MASK)
#define USART_CTL_CLRCCONRX_MASK (0x200U)
#define USART_CTL_CLRCCONRX_SHIFT (9U)
/*! CLRCCONRX - Clear Continuous Clock.
* 0b0..No effect. No effect on the CC bit.
* 0b1..Auto-clear. The CC bit is automatically cleared when a complete character has been received. This bit is cleared at the same time.
*/
#define USART_CTL_CLRCCONRX(x) (((uint32_t)(((uint32_t)(x)) << USART_CTL_CLRCCONRX_SHIFT)) & USART_CTL_CLRCCONRX_MASK)
#define USART_CTL_AUTOBAUD_MASK (0x10000U)
#define USART_CTL_AUTOBAUD_SHIFT (16U)
/*! AUTOBAUD - Autobaud enable.
* 0b0..Disabled. USART is in normal operating mode.
* 0b1..Enabled. USART is in autobaud mode. This bit should only be set when the USART receiver is idle. The
* first start bit of RX is measured and used the update the BRG register to match the received data rate.
* AUTOBAUD is cleared once this process is complete, or if there is an AERR.
*/
#define USART_CTL_AUTOBAUD(x) (((uint32_t)(((uint32_t)(x)) << USART_CTL_AUTOBAUD_SHIFT)) & USART_CTL_AUTOBAUD_MASK)
/*! @} */
/*! @name STAT - USART Status register. The complete status value can be read here. Writing ones clears some bits in the register. Some bits can be cleared by writing a 1 to them. */
/*! @{ */
#define USART_STAT_RXRDY_MASK (0x1U)
#define USART_STAT_RXRDY_SHIFT (0U)
/*! RXRDY - Receiver Ready flag. When 1, indicates that data is available to be read from the
* receiver buffer. Cleared after a read of the RXDAT or RXDATSTAT registers.
*/
#define USART_STAT_RXRDY(x) (((uint32_t)(((uint32_t)(x)) << USART_STAT_RXRDY_SHIFT)) & USART_STAT_RXRDY_MASK)
#define USART_STAT_RXIDLE_MASK (0x2U)
#define USART_STAT_RXIDLE_SHIFT (1U)
/*! RXIDLE - Receiver Idle. When 0, indicates that the receiver is currently in the process of
* receiving data. When 1, indicates that the receiver is not currently in the process of receiving
* data.
*/
#define USART_STAT_RXIDLE(x) (((uint32_t)(((uint32_t)(x)) << USART_STAT_RXIDLE_SHIFT)) & USART_STAT_RXIDLE_MASK)
#define USART_STAT_TXRDY_MASK (0x4U)
#define USART_STAT_TXRDY_SHIFT (2U)
/*! TXRDY - Transmitter Ready flag. When 1, this bit indicates that data may be written to the
* transmit buffer. Previous data may still be in the process of being transmitted. Cleared when data
* is written to TXDAT. Set when the data is moved from the transmit buffer to the transmit shift
* register.
*/
#define USART_STAT_TXRDY(x) (((uint32_t)(((uint32_t)(x)) << USART_STAT_TXRDY_SHIFT)) & USART_STAT_TXRDY_MASK)
#define USART_STAT_TXIDLE_MASK (0x8U)
#define USART_STAT_TXIDLE_SHIFT (3U)
/*! TXIDLE - Transmitter Idle. When 0, indicates that the transmitter is currently in the process of
* sending data.When 1, indicate that the transmitter is not currently in the process of sending
* data.
*/
#define USART_STAT_TXIDLE(x) (((uint32_t)(((uint32_t)(x)) << USART_STAT_TXIDLE_SHIFT)) & USART_STAT_TXIDLE_MASK)
#define USART_STAT_CTS_MASK (0x10U)
#define USART_STAT_CTS_SHIFT (4U)
/*! CTS - This bit reflects the current state of the CTS signal, regardless of the setting of the
* CTSEN bit in the CFG register. This will be the value of the CTS input pin unless loopback mode
* is enabled.
*/
#define USART_STAT_CTS(x) (((uint32_t)(((uint32_t)(x)) << USART_STAT_CTS_SHIFT)) & USART_STAT_CTS_MASK)
#define USART_STAT_DELTACTS_MASK (0x20U)
#define USART_STAT_DELTACTS_SHIFT (5U)
/*! DELTACTS - This bit is set when a change in the state is detected for the CTS flag above. This bit is cleared by software.
*/
#define USART_STAT_DELTACTS(x) (((uint32_t)(((uint32_t)(x)) << USART_STAT_DELTACTS_SHIFT)) & USART_STAT_DELTACTS_MASK)
#define USART_STAT_TXDISSTAT_MASK (0x40U)
#define USART_STAT_TXDISSTAT_SHIFT (6U)
/*! TXDISSTAT - Transmitter Disabled Interrupt flag. When 1, this bit indicates that the USART
* transmitter is fully idle after being disabled via the TXDIS in the CTL register (TXDIS = 1).
*/
#define USART_STAT_TXDISSTAT(x) (((uint32_t)(((uint32_t)(x)) << USART_STAT_TXDISSTAT_SHIFT)) & USART_STAT_TXDISSTAT_MASK)
#define USART_STAT_OVERRUNINT_MASK (0x100U)
#define USART_STAT_OVERRUNINT_SHIFT (8U)
/*! OVERRUNINT - Overrun Error interrupt flag. This flag is set when a new character is received
* while the receiver buffer is still in use. If this occurs, the newly received character in the
* shift register is lost.
*/
#define USART_STAT_OVERRUNINT(x) (((uint32_t)(((uint32_t)(x)) << USART_STAT_OVERRUNINT_SHIFT)) & USART_STAT_OVERRUNINT_MASK)
#define USART_STAT_RXBRK_MASK (0x400U)
#define USART_STAT_RXBRK_SHIFT (10U)
/*! RXBRK - Received Break. This bit reflects the current state of the receiver break detection
* logic. It is set when the Un_RXD pin remains low for 16 bit times. Note that FRAMERRINT will also
* be set when this condition occurs because the stop bit(s) for the character would be missing.
* RXBRK is cleared when the Un_RXD pin goes high.
*/
#define USART_STAT_RXBRK(x) (((uint32_t)(((uint32_t)(x)) << USART_STAT_RXBRK_SHIFT)) & USART_STAT_RXBRK_MASK)
#define USART_STAT_DELTARXBRK_MASK (0x800U)
#define USART_STAT_DELTARXBRK_SHIFT (11U)
/*! DELTARXBRK - This bit is set when a change in the state of receiver break detection occurs.Cleared by software.
*/
#define USART_STAT_DELTARXBRK(x) (((uint32_t)(((uint32_t)(x)) << USART_STAT_DELTARXBRK_SHIFT)) & USART_STAT_DELTARXBRK_MASK)
#define USART_STAT_START_MASK (0x1000U)
#define USART_STAT_START_SHIFT (12U)
/*! START - This bit is set when a start is detected on the receiver input. Its purpose is primarily
* to allow wake-up from Deep-sleep or Power-down mode immediately when a start is detected.
* Cleared by software.
*/
#define USART_STAT_START(x) (((uint32_t)(((uint32_t)(x)) << USART_STAT_START_SHIFT)) & USART_STAT_START_MASK)
#define USART_STAT_FRAMERRINT_MASK (0x2000U)
#define USART_STAT_FRAMERRINT_SHIFT (13U)
/*! FRAMERRINT - Framing Error interrupt flag. This flag is set when a character is received with a
* missing stop bit at the expected location. This could be an indication of a baud rate or
* configuration mismatch with the transmitting source.
*/
#define USART_STAT_FRAMERRINT(x) (((uint32_t)(((uint32_t)(x)) << USART_STAT_FRAMERRINT_SHIFT)) & USART_STAT_FRAMERRINT_MASK)
#define USART_STAT_PARITYERRINT_MASK (0x4000U)
#define USART_STAT_PARITYERRINT_SHIFT (14U)
/*! PARITYERRINT - Parity Error interrupt flag. This flag is set when a parity error is detected in a received character.
*/
#define USART_STAT_PARITYERRINT(x) (((uint32_t)(((uint32_t)(x)) << USART_STAT_PARITYERRINT_SHIFT)) & USART_STAT_PARITYERRINT_MASK)
#define USART_STAT_RXNOISEINT_MASK (0x8000U)
#define USART_STAT_RXNOISEINT_SHIFT (15U)
/*! RXNOISEINT - Received Noise interrupt flag. Three samples of received data are taken in order to
* determine the value of each received data bit, except in synchronous mode. This acts as a
* noise filter if one sample disagrees. This flag is set when a received data bit contains one
* disagreeing sample. This could indicate line noise, a baud rate or character format mismatch, or
* loss of synchronization during data reception.
*/
#define USART_STAT_RXNOISEINT(x) (((uint32_t)(((uint32_t)(x)) << USART_STAT_RXNOISEINT_SHIFT)) & USART_STAT_RXNOISEINT_MASK)
#define USART_STAT_ABERR_MASK (0x10000U)
#define USART_STAT_ABERR_SHIFT (16U)
/*! ABERR - Autobaud Error. An autobaud error can occur if the BRG counts to its limit before the
* end of the start bit that is being measured, essentially an autobaud time-out.
*/
#define USART_STAT_ABERR(x) (((uint32_t)(((uint32_t)(x)) << USART_STAT_ABERR_SHIFT)) & USART_STAT_ABERR_MASK)
/*! @} */
/*! @name INTENSET - Interrupt Enable read and Set register. Contains an individual interrupt enable bit for each potential USART interrupt. A complete value may be read from this register. Writing a 1 to any implemented bit position causes that bit to be set. */
/*! @{ */
#define USART_INTENSET_RXRDYEN_MASK (0x1U)
#define USART_INTENSET_RXRDYEN_SHIFT (0U)
/*! RXRDYEN - When 1, enables an interrupt when there is a received character available to be read from the RXDAT register.
*/
#define USART_INTENSET_RXRDYEN(x) (((uint32_t)(((uint32_t)(x)) << USART_INTENSET_RXRDYEN_SHIFT)) & USART_INTENSET_RXRDYEN_MASK)
#define USART_INTENSET_TXRDYEN_MASK (0x4U)
#define USART_INTENSET_TXRDYEN_SHIFT (2U)
/*! TXRDYEN - When 1, enables an interrupt when the TXDAT register is available to take another character to transmit.
*/
#define USART_INTENSET_TXRDYEN(x) (((uint32_t)(((uint32_t)(x)) << USART_INTENSET_TXRDYEN_SHIFT)) & USART_INTENSET_TXRDYEN_MASK)
#define USART_INTENSET_TXIDLEEN_MASK (0x8U)
#define USART_INTENSET_TXIDLEEN_SHIFT (3U)
/*! TXIDLEEN - When 1, enables an interrupt when the transmitter becomes idle (TXIDLE = 1).
*/
#define USART_INTENSET_TXIDLEEN(x) (((uint32_t)(((uint32_t)(x)) << USART_INTENSET_TXIDLEEN_SHIFT)) & USART_INTENSET_TXIDLEEN_MASK)
#define USART_INTENSET_DELTACTSEN_MASK (0x20U)
#define USART_INTENSET_DELTACTSEN_SHIFT (5U)
/*! DELTACTSEN - When 1, enables an interrupt when there is a change in the state of the CTS input.
*/
#define USART_INTENSET_DELTACTSEN(x) (((uint32_t)(((uint32_t)(x)) << USART_INTENSET_DELTACTSEN_SHIFT)) & USART_INTENSET_DELTACTSEN_MASK)
#define USART_INTENSET_TXDISEN_MASK (0x40U)
#define USART_INTENSET_TXDISEN_SHIFT (6U)
/*! TXDISEN - When 1, enables an interrupt when the transmitter is fully disabled as indicated by
* the TXDISINT flag in STAT. See description of the TXDISINT bit for details.
*/
#define USART_INTENSET_TXDISEN(x) (((uint32_t)(((uint32_t)(x)) << USART_INTENSET_TXDISEN_SHIFT)) & USART_INTENSET_TXDISEN_MASK)
#define USART_INTENSET_OVERRUNEN_MASK (0x100U)
#define USART_INTENSET_OVERRUNEN_SHIFT (8U)
/*! OVERRUNEN - When 1, enables an interrupt when an overrun error occurred.
*/
#define USART_INTENSET_OVERRUNEN(x) (((uint32_t)(((uint32_t)(x)) << USART_INTENSET_OVERRUNEN_SHIFT)) & USART_INTENSET_OVERRUNEN_MASK)
#define USART_INTENSET_DELTARXBRKEN_MASK (0x800U)
#define USART_INTENSET_DELTARXBRKEN_SHIFT (11U)
/*! DELTARXBRKEN - When 1, enables an interrupt when a change of state has occurred in the detection
* of a received break condition (break condition asserted or deasserted).
*/
#define USART_INTENSET_DELTARXBRKEN(x) (((uint32_t)(((uint32_t)(x)) << USART_INTENSET_DELTARXBRKEN_SHIFT)) & USART_INTENSET_DELTARXBRKEN_MASK)
#define USART_INTENSET_STARTEN_MASK (0x1000U)
#define USART_INTENSET_STARTEN_SHIFT (12U)
/*! STARTEN - When 1, enables an interrupt when a received start bit has been detected.
*/
#define USART_INTENSET_STARTEN(x) (((uint32_t)(((uint32_t)(x)) << USART_INTENSET_STARTEN_SHIFT)) & USART_INTENSET_STARTEN_MASK)
#define USART_INTENSET_FRAMERREN_MASK (0x2000U)
#define USART_INTENSET_FRAMERREN_SHIFT (13U)
/*! FRAMERREN - When 1, enables an interrupt when a framing error has been detected.
*/
#define USART_INTENSET_FRAMERREN(x) (((uint32_t)(((uint32_t)(x)) << USART_INTENSET_FRAMERREN_SHIFT)) & USART_INTENSET_FRAMERREN_MASK)
#define USART_INTENSET_PARITYERREN_MASK (0x4000U)
#define USART_INTENSET_PARITYERREN_SHIFT (14U)
/*! PARITYERREN - When 1, enables an interrupt when a parity error has been detected.
*/
#define USART_INTENSET_PARITYERREN(x) (((uint32_t)(((uint32_t)(x)) << USART_INTENSET_PARITYERREN_SHIFT)) & USART_INTENSET_PARITYERREN_MASK)
#define USART_INTENSET_RXNOISEEN_MASK (0x8000U)
#define USART_INTENSET_RXNOISEEN_SHIFT (15U)
/*! RXNOISEEN - When 1, enables an interrupt when noise is detected.
*/
#define USART_INTENSET_RXNOISEEN(x) (((uint32_t)(((uint32_t)(x)) << USART_INTENSET_RXNOISEEN_SHIFT)) & USART_INTENSET_RXNOISEEN_MASK)
#define USART_INTENSET_ABERREN_MASK (0x10000U)
#define USART_INTENSET_ABERREN_SHIFT (16U)
/*! ABERREN - When 1, enables an interrupt when an autobaud error occurs.
*/
#define USART_INTENSET_ABERREN(x) (((uint32_t)(((uint32_t)(x)) << USART_INTENSET_ABERREN_SHIFT)) & USART_INTENSET_ABERREN_MASK)
/*! @} */
/*! @name INTENCLR - Interrupt Enable Clear register. Allows clearing any combination of bits in the INTENSET register. Writing a 1 to any implemented bit position causes the corresponding bit to be cleared. */
/*! @{ */
#define USART_INTENCLR_RXRDYCLR_MASK (0x1U)
#define USART_INTENCLR_RXRDYCLR_SHIFT (0U)
/*! RXRDYCLR - Writing 1 clears the corresponding bit in the INTENSET register.
*/
#define USART_INTENCLR_RXRDYCLR(x) (((uint32_t)(((uint32_t)(x)) << USART_INTENCLR_RXRDYCLR_SHIFT)) & USART_INTENCLR_RXRDYCLR_MASK)
#define USART_INTENCLR_TXRDYCLR_MASK (0x4U)
#define USART_INTENCLR_TXRDYCLR_SHIFT (2U)
/*! TXRDYCLR - Writing 1 clears the corresponding bit in the INTENSET register.
*/
#define USART_INTENCLR_TXRDYCLR(x) (((uint32_t)(((uint32_t)(x)) << USART_INTENCLR_TXRDYCLR_SHIFT)) & USART_INTENCLR_TXRDYCLR_MASK)
#define USART_INTENCLR_TXIDLECLR_MASK (0x8U)
#define USART_INTENCLR_TXIDLECLR_SHIFT (3U)
/*! TXIDLECLR - Writing 1 clears the corresponding bit in the INTENSET register.
*/
#define USART_INTENCLR_TXIDLECLR(x) (((uint32_t)(((uint32_t)(x)) << USART_INTENCLR_TXIDLECLR_SHIFT)) & USART_INTENCLR_TXIDLECLR_MASK)
#define USART_INTENCLR_DELTACTSCLR_MASK (0x20U)
#define USART_INTENCLR_DELTACTSCLR_SHIFT (5U)
/*! DELTACTSCLR - Writing 1 clears the corresponding bit in the INTENSET register.
*/
#define USART_INTENCLR_DELTACTSCLR(x) (((uint32_t)(((uint32_t)(x)) << USART_INTENCLR_DELTACTSCLR_SHIFT)) & USART_INTENCLR_DELTACTSCLR_MASK)
#define USART_INTENCLR_TXDISINTCLR_MASK (0x40U)
#define USART_INTENCLR_TXDISINTCLR_SHIFT (6U)
/*! TXDISINTCLR - Writing 1 clears the corresponding bit in the INTENSET register.
*/
#define USART_INTENCLR_TXDISINTCLR(x) (((uint32_t)(((uint32_t)(x)) << USART_INTENCLR_TXDISINTCLR_SHIFT)) & USART_INTENCLR_TXDISINTCLR_MASK)
#define USART_INTENCLR_OVERRUNCLR_MASK (0x100U)
#define USART_INTENCLR_OVERRUNCLR_SHIFT (8U)
/*! OVERRUNCLR - Writing 1 clears the corresponding bit in the INTENSET register.
*/
#define USART_INTENCLR_OVERRUNCLR(x) (((uint32_t)(((uint32_t)(x)) << USART_INTENCLR_OVERRUNCLR_SHIFT)) & USART_INTENCLR_OVERRUNCLR_MASK)
#define USART_INTENCLR_DELTARXBRKCLR_MASK (0x800U)
#define USART_INTENCLR_DELTARXBRKCLR_SHIFT (11U)
/*! DELTARXBRKCLR - Writing 1 clears the corresponding bit in the INTENSET register.
*/
#define USART_INTENCLR_DELTARXBRKCLR(x) (((uint32_t)(((uint32_t)(x)) << USART_INTENCLR_DELTARXBRKCLR_SHIFT)) & USART_INTENCLR_DELTARXBRKCLR_MASK)
#define USART_INTENCLR_STARTCLR_MASK (0x1000U)
#define USART_INTENCLR_STARTCLR_SHIFT (12U)
/*! STARTCLR - Writing 1 clears the corresponding bit in the INTENSET register.
*/
#define USART_INTENCLR_STARTCLR(x) (((uint32_t)(((uint32_t)(x)) << USART_INTENCLR_STARTCLR_SHIFT)) & USART_INTENCLR_STARTCLR_MASK)
#define USART_INTENCLR_FRAMERRCLR_MASK (0x2000U)
#define USART_INTENCLR_FRAMERRCLR_SHIFT (13U)
/*! FRAMERRCLR - Writing 1 clears the corresponding bit in the INTENSET register.
*/
#define USART_INTENCLR_FRAMERRCLR(x) (((uint32_t)(((uint32_t)(x)) << USART_INTENCLR_FRAMERRCLR_SHIFT)) & USART_INTENCLR_FRAMERRCLR_MASK)
#define USART_INTENCLR_PARITYERRCLR_MASK (0x4000U)
#define USART_INTENCLR_PARITYERRCLR_SHIFT (14U)
/*! PARITYERRCLR - Writing 1 clears the corresponding bit in the INTENSET register.
*/
#define USART_INTENCLR_PARITYERRCLR(x) (((uint32_t)(((uint32_t)(x)) << USART_INTENCLR_PARITYERRCLR_SHIFT)) & USART_INTENCLR_PARITYERRCLR_MASK)
#define USART_INTENCLR_RXNOISECLR_MASK (0x8000U)
#define USART_INTENCLR_RXNOISECLR_SHIFT (15U)
/*! RXNOISECLR - Writing 1 clears the corresponding bit in the INTENSET register.
*/
#define USART_INTENCLR_RXNOISECLR(x) (((uint32_t)(((uint32_t)(x)) << USART_INTENCLR_RXNOISECLR_SHIFT)) & USART_INTENCLR_RXNOISECLR_MASK)
#define USART_INTENCLR_ABERRCLR_MASK (0x10000U)
#define USART_INTENCLR_ABERRCLR_SHIFT (16U)
/*! ABERRCLR - Writing 1 clears the corresponding bit in the INTENSET register.
*/
#define USART_INTENCLR_ABERRCLR(x) (((uint32_t)(((uint32_t)(x)) << USART_INTENCLR_ABERRCLR_SHIFT)) & USART_INTENCLR_ABERRCLR_MASK)
/*! @} */
/*! @name RXDAT - Receiver Data register. Contains the last character received. */
/*! @{ */
#define USART_RXDAT_RXDAT_MASK (0x1FFU)
#define USART_RXDAT_RXDAT_SHIFT (0U)
/*! RXDAT - The USART Receiver Data register contains the next received character. The number of
* bits that are relevant depends on the USART configuration settings.
*/
#define USART_RXDAT_RXDAT(x) (((uint32_t)(((uint32_t)(x)) << USART_RXDAT_RXDAT_SHIFT)) & USART_RXDAT_RXDAT_MASK)
/*! @} */
/*! @name RXDATSTAT - Receiver Data with Status register. Combines the last character received with the current USART receive status. Allows DMA or software to recover incoming data and status together. */
/*! @{ */
#define USART_RXDATSTAT_RXDAT_MASK (0x1FFU)
#define USART_RXDATSTAT_RXDAT_SHIFT (0U)
/*! RXDAT - The USART Receiver Data register contains the next received character. The number of
* bits that are relevant depends on the USART configuration settings.
*/
#define USART_RXDATSTAT_RXDAT(x) (((uint32_t)(((uint32_t)(x)) << USART_RXDATSTAT_RXDAT_SHIFT)) & USART_RXDATSTAT_RXDAT_MASK)
#define USART_RXDATSTAT_FRAMERR_MASK (0x2000U)
#define USART_RXDATSTAT_FRAMERR_SHIFT (13U)
/*! FRAMERR - Framing Error status flag. This bit is valid when there is a character to be read in
* the RXDAT register and reflects the status of that character. This bit will set when the
* character in RXDAT was received with a missing stop bit at the expected location. This could be an
* indication of a baud rate or configuration mismatch with the transmitting source.
*/
#define USART_RXDATSTAT_FRAMERR(x) (((uint32_t)(((uint32_t)(x)) << USART_RXDATSTAT_FRAMERR_SHIFT)) & USART_RXDATSTAT_FRAMERR_MASK)
#define USART_RXDATSTAT_PARITYERR_MASK (0x4000U)
#define USART_RXDATSTAT_PARITYERR_SHIFT (14U)
/*! PARITYERR - Parity Error status flag. This bit is valid when there is a character to be read in
* the RXDAT register and reflects the status of that character. This bit will be set when a
* parity error is detected in a received character.
*/
#define USART_RXDATSTAT_PARITYERR(x) (((uint32_t)(((uint32_t)(x)) << USART_RXDATSTAT_PARITYERR_SHIFT)) & USART_RXDATSTAT_PARITYERR_MASK)
#define USART_RXDATSTAT_RXNOISE_MASK (0x8000U)
#define USART_RXDATSTAT_RXNOISE_SHIFT (15U)
/*! RXNOISE - Received Noise flag.
*/
#define USART_RXDATSTAT_RXNOISE(x) (((uint32_t)(((uint32_t)(x)) << USART_RXDATSTAT_RXNOISE_SHIFT)) & USART_RXDATSTAT_RXNOISE_MASK)
/*! @} */
/*! @name TXDAT - Transmit Data register. Data to be transmitted is written here. */
/*! @{ */
#define USART_TXDAT_TXDAT_MASK (0x1FFU)
#define USART_TXDAT_TXDAT_SHIFT (0U)
/*! TXDAT - Writing to the USART Transmit Data Register causes the data to be transmitted as soon as
* the transmit shift register is available and any conditions for transmitting data are met:
* CTS low (if CTSEN bit = 1), TXDIS bit = 0.
*/
#define USART_TXDAT_TXDAT(x) (((uint32_t)(((uint32_t)(x)) << USART_TXDAT_TXDAT_SHIFT)) & USART_TXDAT_TXDAT_MASK)
/*! @} */
/*! @name BRG - Baud Rate Generator register. 16-bit integer baud rate divisor value. */
/*! @{ */
#define USART_BRG_BRGVAL_MASK (0xFFFFU)
#define USART_BRG_BRGVAL_SHIFT (0U)
/*! BRGVAL - This value is used to divide the USART input clock to determine the baud rate, based on
* the input clock from the FRG. 0 = FCLK is used directly by the USART function. 1 = FCLK is
* divided by 2 before use by the USART function. 2 = FCLK is divided by 3 before use by the USART
* function. 0xFFFF = FCLK is divided by 65,536 before use by the USART function.
*/
#define USART_BRG_BRGVAL(x) (((uint32_t)(((uint32_t)(x)) << USART_BRG_BRGVAL_SHIFT)) & USART_BRG_BRGVAL_MASK)
/*! @} */
/*! @name INTSTAT - Interrupt status register. Reflects interrupts that are currently enabled. */
/*! @{ */
#define USART_INTSTAT_RXRDY_MASK (0x1U)
#define USART_INTSTAT_RXRDY_SHIFT (0U)
/*! RXRDY - Receiver Ready flag.
*/
#define USART_INTSTAT_RXRDY(x) (((uint32_t)(((uint32_t)(x)) << USART_INTSTAT_RXRDY_SHIFT)) & USART_INTSTAT_RXRDY_MASK)
#define USART_INTSTAT_TXRDY_MASK (0x4U)
#define USART_INTSTAT_TXRDY_SHIFT (2U)
/*! TXRDY - Transmitter Ready flag.
*/
#define USART_INTSTAT_TXRDY(x) (((uint32_t)(((uint32_t)(x)) << USART_INTSTAT_TXRDY_SHIFT)) & USART_INTSTAT_TXRDY_MASK)
#define USART_INTSTAT_TXIDLE_MASK (0x8U)
#define USART_INTSTAT_TXIDLE_SHIFT (3U)
/*! TXIDLE - Transmitter idle status.
*/
#define USART_INTSTAT_TXIDLE(x) (((uint32_t)(((uint32_t)(x)) << USART_INTSTAT_TXIDLE_SHIFT)) & USART_INTSTAT_TXIDLE_MASK)
#define USART_INTSTAT_DELTACTS_MASK (0x20U)
#define USART_INTSTAT_DELTACTS_SHIFT (5U)
/*! DELTACTS - This bit is set when a change in the state of the CTS input is detected.
*/
#define USART_INTSTAT_DELTACTS(x) (((uint32_t)(((uint32_t)(x)) << USART_INTSTAT_DELTACTS_SHIFT)) & USART_INTSTAT_DELTACTS_MASK)
#define USART_INTSTAT_TXDISINT_MASK (0x40U)
#define USART_INTSTAT_TXDISINT_SHIFT (6U)
/*! TXDISINT - Transmitter Disabled Interrupt flag.
*/
#define USART_INTSTAT_TXDISINT(x) (((uint32_t)(((uint32_t)(x)) << USART_INTSTAT_TXDISINT_SHIFT)) & USART_INTSTAT_TXDISINT_MASK)
#define USART_INTSTAT_OVERRUNINT_MASK (0x100U)
#define USART_INTSTAT_OVERRUNINT_SHIFT (8U)
/*! OVERRUNINT - Overrun Error interrupt flag.
*/
#define USART_INTSTAT_OVERRUNINT(x) (((uint32_t)(((uint32_t)(x)) << USART_INTSTAT_OVERRUNINT_SHIFT)) & USART_INTSTAT_OVERRUNINT_MASK)
#define USART_INTSTAT_DELTARXBRK_MASK (0x800U)
#define USART_INTSTAT_DELTARXBRK_SHIFT (11U)
/*! DELTARXBRK - This bit is set when a change in the state of receiver break detection occurs.
*/
#define USART_INTSTAT_DELTARXBRK(x) (((uint32_t)(((uint32_t)(x)) << USART_INTSTAT_DELTARXBRK_SHIFT)) & USART_INTSTAT_DELTARXBRK_MASK)
#define USART_INTSTAT_START_MASK (0x1000U)
#define USART_INTSTAT_START_SHIFT (12U)
/*! START - This bit is set when a start is detected on the receiver input.
*/
#define USART_INTSTAT_START(x) (((uint32_t)(((uint32_t)(x)) << USART_INTSTAT_START_SHIFT)) & USART_INTSTAT_START_MASK)
#define USART_INTSTAT_FRAMERRINT_MASK (0x2000U)
#define USART_INTSTAT_FRAMERRINT_SHIFT (13U)
/*! FRAMERRINT - Framing Error interrupt flag.
*/
#define USART_INTSTAT_FRAMERRINT(x) (((uint32_t)(((uint32_t)(x)) << USART_INTSTAT_FRAMERRINT_SHIFT)) & USART_INTSTAT_FRAMERRINT_MASK)
#define USART_INTSTAT_PARITYERRINT_MASK (0x4000U)
#define USART_INTSTAT_PARITYERRINT_SHIFT (14U)
/*! PARITYERRINT - Parity Error interrupt flag.
*/
#define USART_INTSTAT_PARITYERRINT(x) (((uint32_t)(((uint32_t)(x)) << USART_INTSTAT_PARITYERRINT_SHIFT)) & USART_INTSTAT_PARITYERRINT_MASK)
#define USART_INTSTAT_RXNOISEINT_MASK (0x8000U)
#define USART_INTSTAT_RXNOISEINT_SHIFT (15U)
/*! RXNOISEINT - Received Noise interrupt flag.
*/
#define USART_INTSTAT_RXNOISEINT(x) (((uint32_t)(((uint32_t)(x)) << USART_INTSTAT_RXNOISEINT_SHIFT)) & USART_INTSTAT_RXNOISEINT_MASK)
#define USART_INTSTAT_ABERR_MASK (0x10000U)
#define USART_INTSTAT_ABERR_SHIFT (16U)
/*! ABERR - Autobaud Error flag.
*/
#define USART_INTSTAT_ABERR(x) (((uint32_t)(((uint32_t)(x)) << USART_INTSTAT_ABERR_SHIFT)) & USART_INTSTAT_ABERR_MASK)
/*! @} */
/*! @name OSR - Oversample selection register for asynchronous communication. */
/*! @{ */
#define USART_OSR_OSRVAL_MASK (0xFU)
#define USART_OSR_OSRVAL_SHIFT (0U)
/*! OSRVAL - Oversample Selection Value. 0 to 3 = not supported 0x4 = 5 function clocks are used to
* transmit and receive each data bit. 0x5 = 6 function clocks are used to transmit and receive
* each data bit. 0xF= 16 function clocks are used to transmit and receive each data bit.
*/
#define USART_OSR_OSRVAL(x) (((uint32_t)(((uint32_t)(x)) << USART_OSR_OSRVAL_SHIFT)) & USART_OSR_OSRVAL_MASK)
/*! @} */
/*! @name ADDR - Address register for automatic address matching. */
/*! @{ */
#define USART_ADDR_ADDRESS_MASK (0xFFU)
#define USART_ADDR_ADDRESS_SHIFT (0U)
/*! ADDRESS - 8-bit address used with automatic address matching. Used when address detection is
* enabled (ADDRDET in CTL = 1) and automatic address matching is enabled (AUTOADDR in CFG = 1).
*/
#define USART_ADDR_ADDRESS(x) (((uint32_t)(((uint32_t)(x)) << USART_ADDR_ADDRESS_SHIFT)) & USART_ADDR_ADDRESS_MASK)
/*! @} */
/*!
* @}
*/ /* end of group USART_Register_Masks */
/* USART - Peripheral instance base addresses */
/** Peripheral USART0 base address */
#define USART0_BASE (0x40064000u)
/** Peripheral USART0 base pointer */
#define USART0 ((USART_Type *)USART0_BASE)
/** Peripheral USART1 base address */
#define USART1_BASE (0x40068000u)
/** Peripheral USART1 base pointer */
#define USART1 ((USART_Type *)USART1_BASE)
/** Array initializer of USART peripheral base addresses */
#define USART_BASE_ADDRS { USART0_BASE, USART1_BASE }
/** Array initializer of USART peripheral base pointers */
#define USART_BASE_PTRS { USART0, USART1 }
/** Interrupt vectors for the USART peripheral type */
#define USART_IRQS { USART0_IRQn, USART1_IRQn }
/*!
* @}
*/ /* end of group USART_Peripheral_Access_Layer */
/* ----------------------------------------------------------------------------
-- WKT Peripheral Access Layer
---------------------------------------------------------------------------- */
/*!
* @addtogroup WKT_Peripheral_Access_Layer WKT Peripheral Access Layer
* @{
*/
/** WKT - Register Layout Typedef */
typedef struct {
__IO uint32_t CTRL; /**< Self wake-up timer control register., offset: 0x0 */
uint8_t RESERVED_0[8];
__IO uint32_t COUNT; /**< Counter register., offset: 0xC */
} WKT_Type;
/* ----------------------------------------------------------------------------
-- WKT Register Masks
---------------------------------------------------------------------------- */
/*!
* @addtogroup WKT_Register_Masks WKT Register Masks
* @{
*/
/*! @name CTRL - Self wake-up timer control register. */
/*! @{ */
#define WKT_CTRL_CLKSEL_MASK (0x1U)
#define WKT_CTRL_CLKSEL_SHIFT (0U)
/*! CLKSEL - Select the self wake-up timer clock source. Remark: This bit only has an effect if the SEL_EXTCLK bit is not set.
* 0b0..Divided IRC clock. This clock runs at 750 kHz and provides time-out periods of up to approximately 95
* minutes in 1.33 us increments. Remark: This clock is not available in not available in Deep-sleep,
* power-down, deep power-down modes. Do not select this option if the timer is to be used to wake up from one of these
* modes.
* 0b1..This is the (nominally) 10 kHz clock and provides time-out periods of up to approximately 119 hours in
* 100 us increments. The accuracy of this clock is limited to +/- 40 % over temperature and processing.
* Remark: This clock is available in all power modes. Prior to use, the low-power oscillator must be enabled. The
* oscillator must also be set to remain active in Deep power-down if needed.
*/
#define WKT_CTRL_CLKSEL(x) (((uint32_t)(((uint32_t)(x)) << WKT_CTRL_CLKSEL_SHIFT)) & WKT_CTRL_CLKSEL_MASK)
#define WKT_CTRL_ALARMFLAG_MASK (0x2U)
#define WKT_CTRL_ALARMFLAG_SHIFT (1U)
/*! ALARMFLAG - Wake-up or alarm timer flag.
* 0b0..No time-out. The self wake-up timer has not timed out. Writing a 0 to has no effect.
* 0b1..Time-out. The self wake-up timer has timed out. This flag generates an interrupt request which can wake
* up the part from any reduced power mode including Deep power-down if the clock source is the low power
* oscillator. Writing a 1 clears this status bit.
*/
#define WKT_CTRL_ALARMFLAG(x) (((uint32_t)(((uint32_t)(x)) << WKT_CTRL_ALARMFLAG_SHIFT)) & WKT_CTRL_ALARMFLAG_MASK)
#define WKT_CTRL_CLEARCTR_MASK (0x4U)
#define WKT_CTRL_CLEARCTR_SHIFT (2U)
/*! CLEARCTR - Clears the self wake-up timer.
* 0b0..No effect. Reading this bit always returns 0.
* 0b1..Clear the counter. Counting is halted until a new count value is loaded.
*/
#define WKT_CTRL_CLEARCTR(x) (((uint32_t)(((uint32_t)(x)) << WKT_CTRL_CLEARCTR_SHIFT)) & WKT_CTRL_CLEARCTR_MASK)
#define WKT_CTRL_SEL_EXTCLK_MASK (0x8U)
#define WKT_CTRL_SEL_EXTCLK_SHIFT (3U)
/*! SEL_EXTCLK - Select external or internal clock source for the self wake-up timer. The internal
* clock source is selected by the CLKSEL bit in this register if SET_EXTCLK is set to internal.
* 0b0..Internal. The clock source is the internal clock selected by the CLKSEL bit.
* 0b1..External. The self wake-up timer uses the external WKTCLKIN pin.
*/
#define WKT_CTRL_SEL_EXTCLK(x) (((uint32_t)(((uint32_t)(x)) << WKT_CTRL_SEL_EXTCLK_SHIFT)) & WKT_CTRL_SEL_EXTCLK_MASK)
/*! @} */
/*! @name COUNT - Counter register. */
/*! @{ */
#define WKT_COUNT_VALUE_MASK (0xFFFFFFFFU)
#define WKT_COUNT_VALUE_SHIFT (0U)
/*! VALUE - A write to this register pre-loads start count value into the timer and starts the
* count-down sequence. A read reflects the current value of the timer.
*/
#define WKT_COUNT_VALUE(x) (((uint32_t)(((uint32_t)(x)) << WKT_COUNT_VALUE_SHIFT)) & WKT_COUNT_VALUE_MASK)
/*! @} */
/*!
* @}
*/ /* end of group WKT_Register_Masks */
/* WKT - Peripheral instance base addresses */
/** Peripheral WKT base address */
#define WKT_BASE (0x40008000u)
/** Peripheral WKT base pointer */
#define WKT ((WKT_Type *)WKT_BASE)
/** Array initializer of WKT peripheral base addresses */
#define WKT_BASE_ADDRS { WKT_BASE }
/** Array initializer of WKT peripheral base pointers */
#define WKT_BASE_PTRS { WKT }
/** Interrupt vectors for the WKT peripheral type */
#define WKT_IRQS { WKT_IRQn }
/*!
* @}
*/ /* end of group WKT_Peripheral_Access_Layer */
/* ----------------------------------------------------------------------------
-- WWDT Peripheral Access Layer
---------------------------------------------------------------------------- */
/*!
* @addtogroup WWDT_Peripheral_Access_Layer WWDT Peripheral Access Layer
* @{
*/
/** WWDT - Register Layout Typedef */
typedef struct {
__IO uint32_t MOD; /**< Watchdog mode register. This register contains the basic mode and status of the Watchdog Timer., offset: 0x0 */
__IO uint32_t TC; /**< Watchdog timer constant register. This 24-bit register determines the time-out value., offset: 0x4 */
__O uint32_t FEED; /**< Watchdog feed sequence register. Writing 0xAA followed by 0x55 to this register reloads the Watchdog timer with the value contained in TC., offset: 0x8 */
__I uint32_t TV; /**< Watchdog timer value register. This 24-bit register reads out the current value of the Watchdog timer., offset: 0xC */
uint8_t RESERVED_0[4];
__IO uint32_t WARNINT; /**< Watchdog Warning Interrupt compare value., offset: 0x14 */
__IO uint32_t WINDOW; /**< Watchdog Window compare value., offset: 0x18 */
} WWDT_Type;
/* ----------------------------------------------------------------------------
-- WWDT Register Masks
---------------------------------------------------------------------------- */
/*!
* @addtogroup WWDT_Register_Masks WWDT Register Masks
* @{
*/
/*! @name MOD - Watchdog mode register. This register contains the basic mode and status of the Watchdog Timer. */
/*! @{ */
#define WWDT_MOD_WDEN_MASK (0x1U)
#define WWDT_MOD_WDEN_SHIFT (0U)
/*! WDEN - Watchdog enable bit. Once this bit is set to one and a watchdog feed is performed, the
* watchdog timer will run permanently.
* 0b0..Stop. The watchdog timer is stopped.
* 0b1..Run. The watchdog timer is running.
*/
#define WWDT_MOD_WDEN(x) (((uint32_t)(((uint32_t)(x)) << WWDT_MOD_WDEN_SHIFT)) & WWDT_MOD_WDEN_MASK)
#define WWDT_MOD_WDRESET_MASK (0x2U)
#define WWDT_MOD_WDRESET_SHIFT (1U)
/*! WDRESET - Watchdog reset enable bit. Once this bit has been written with a 1 it cannot be re-written with a 0.
* 0b0..Interrupt. A watchdog time-out will not cause a chip reset.
* 0b1..Reset. A watchdog time-out will cause a chip reset.
*/
#define WWDT_MOD_WDRESET(x) (((uint32_t)(((uint32_t)(x)) << WWDT_MOD_WDRESET_SHIFT)) & WWDT_MOD_WDRESET_MASK)
#define WWDT_MOD_WDTOF_MASK (0x4U)
#define WWDT_MOD_WDTOF_SHIFT (2U)
/*! WDTOF - Watchdog time-out flag. Set when the watchdog timer times out, by a feed error, or by
* events associated with WDPROTECT. Cleared by software writing a 0 to this bit position. Causes a
* chip reset if WDRESET = 1.
*/
#define WWDT_MOD_WDTOF(x) (((uint32_t)(((uint32_t)(x)) << WWDT_MOD_WDTOF_SHIFT)) & WWDT_MOD_WDTOF_MASK)
#define WWDT_MOD_WDINT_MASK (0x8U)
#define WWDT_MOD_WDINT_SHIFT (3U)
/*! WDINT - Warning interrupt flag. Set when the timer is at or below the value in WDWARNINT.
* Cleared by software writing a 1 to this bit position. Note that this bit cannot be cleared while the
* WARNINT value is equal to the value of the TV register. This can occur if the value of
* WARNINT is 0 and the WDRESET bit is 0 when TV decrements to 0.
*/
#define WWDT_MOD_WDINT(x) (((uint32_t)(((uint32_t)(x)) << WWDT_MOD_WDINT_SHIFT)) & WWDT_MOD_WDINT_MASK)
#define WWDT_MOD_WDPROTECT_MASK (0x10U)
#define WWDT_MOD_WDPROTECT_SHIFT (4U)
/*! WDPROTECT - Watchdog update mode. This bit can be set once by software and is only cleared by a reset.
* 0b0..Flexible. The watchdog time-out value (TC) can be changed at any time.
* 0b1..Threshold. The watchdog time-out value (TC) can be changed only after the counter is below the value of WDWARNINT and WDWINDOW.
*/
#define WWDT_MOD_WDPROTECT(x) (((uint32_t)(((uint32_t)(x)) << WWDT_MOD_WDPROTECT_SHIFT)) & WWDT_MOD_WDPROTECT_MASK)
#define WWDT_MOD_LOCK_MASK (0x20U)
#define WWDT_MOD_LOCK_SHIFT (5U)
/*! LOCK - Once this bit is set to one and a watchdog feed is performed, disabling or powering down
* the watchdog oscillator is prevented by hardware. This bit can be set once by software and is
* only cleared by any reset.
*/
#define WWDT_MOD_LOCK(x) (((uint32_t)(((uint32_t)(x)) << WWDT_MOD_LOCK_SHIFT)) & WWDT_MOD_LOCK_MASK)
/*! @} */
/*! @name TC - Watchdog timer constant register. This 24-bit register determines the time-out value. */
/*! @{ */
#define WWDT_TC_COUNT_MASK (0xFFFFFFU)
#define WWDT_TC_COUNT_SHIFT (0U)
/*! COUNT - Watchdog time-out value.
*/
#define WWDT_TC_COUNT(x) (((uint32_t)(((uint32_t)(x)) << WWDT_TC_COUNT_SHIFT)) & WWDT_TC_COUNT_MASK)
/*! @} */
/*! @name FEED - Watchdog feed sequence register. Writing 0xAA followed by 0x55 to this register reloads the Watchdog timer with the value contained in TC. */
/*! @{ */
#define WWDT_FEED_FEED_MASK (0xFFU)
#define WWDT_FEED_FEED_SHIFT (0U)
/*! FEED - Feed value should be 0xAA followed by 0x55.
*/
#define WWDT_FEED_FEED(x) (((uint32_t)(((uint32_t)(x)) << WWDT_FEED_FEED_SHIFT)) & WWDT_FEED_FEED_MASK)
/*! @} */
/*! @name TV - Watchdog timer value register. This 24-bit register reads out the current value of the Watchdog timer. */
/*! @{ */
#define WWDT_TV_COUNT_MASK (0xFFFFFFU)
#define WWDT_TV_COUNT_SHIFT (0U)
/*! COUNT - Counter timer value.
*/
#define WWDT_TV_COUNT(x) (((uint32_t)(((uint32_t)(x)) << WWDT_TV_COUNT_SHIFT)) & WWDT_TV_COUNT_MASK)
/*! @} */
/*! @name WARNINT - Watchdog Warning Interrupt compare value. */
/*! @{ */
#define WWDT_WARNINT_WARNINT_MASK (0x3FFU)
#define WWDT_WARNINT_WARNINT_SHIFT (0U)
/*! WARNINT - Watchdog warning interrupt compare value.
*/
#define WWDT_WARNINT_WARNINT(x) (((uint32_t)(((uint32_t)(x)) << WWDT_WARNINT_WARNINT_SHIFT)) & WWDT_WARNINT_WARNINT_MASK)
/*! @} */
/*! @name WINDOW - Watchdog Window compare value. */
/*! @{ */
#define WWDT_WINDOW_WINDOW_MASK (0xFFFFFFU)
#define WWDT_WINDOW_WINDOW_SHIFT (0U)
/*! WINDOW - Watchdog window value.
*/
#define WWDT_WINDOW_WINDOW(x) (((uint32_t)(((uint32_t)(x)) << WWDT_WINDOW_WINDOW_SHIFT)) & WWDT_WINDOW_WINDOW_MASK)
/*! @} */
/*!
* @}
*/ /* end of group WWDT_Register_Masks */
/* WWDT - Peripheral instance base addresses */
/** Peripheral WWDT base address */
#define WWDT_BASE (0x40000000u)
/** Peripheral WWDT base pointer */
#define WWDT ((WWDT_Type *)WWDT_BASE)
/** Array initializer of WWDT peripheral base addresses */
#define WWDT_BASE_ADDRS { WWDT_BASE }
/** Array initializer of WWDT peripheral base pointers */
#define WWDT_BASE_PTRS { WWDT }
/** Interrupt vectors for the WWDT peripheral type */
#define WWDT_IRQS { WDT_IRQn }
/*!
* @}
*/ /* end of group WWDT_Peripheral_Access_Layer */
/*
** End of section using anonymous unions
*/
#if defined(__ARMCC_VERSION)
#if (__ARMCC_VERSION >= 6010050)
#pragma clang diagnostic pop
#else
#pragma pop
#endif
#elif defined(__GNUC__)
/* leave anonymous unions enabled */
#elif defined(__IAR_SYSTEMS_ICC__)
#pragma language=default
#else
#error Not supported compiler type
#endif
/*!
* @}
*/ /* end of group Peripheral_access_layer */
/* ----------------------------------------------------------------------------
-- Macros for use with bit field definitions (xxx_SHIFT, xxx_MASK).
---------------------------------------------------------------------------- */
/*!
* @addtogroup Bit_Field_Generic_Macros Macros for use with bit field definitions (xxx_SHIFT, xxx_MASK).
* @{
*/
#if defined(__ARMCC_VERSION)
#if (__ARMCC_VERSION >= 6010050)
#pragma clang system_header
#endif
#elif defined(__IAR_SYSTEMS_ICC__)
#pragma system_include
#endif
/**
* @brief Mask and left-shift a bit field value for use in a register bit range.
* @param field Name of the register bit field.
* @param value Value of the bit field.
* @return Masked and shifted value.
*/
#define NXP_VAL2FLD(field, value) (((value) << (field ## _SHIFT)) & (field ## _MASK))
/**
* @brief Mask and right-shift a register value to extract a bit field value.
* @param field Name of the register bit field.
* @param value Value of the register.
* @return Masked and shifted bit field value.
*/
#define NXP_FLD2VAL(field, value) (((value) & (field ## _MASK)) >> (field ## _SHIFT))
/*!
* @}
*/ /* end of group Bit_Field_Generic_Macros */
/* ----------------------------------------------------------------------------
-- SDK Compatibility
---------------------------------------------------------------------------- */
/*!
* @addtogroup SDK_Compatibility_Symbols SDK Compatibility
* @{
*/
/* No SDK compatibility issues. */
/*!
* @}
*/ /* end of group SDK_Compatibility_Symbols */
#endif /* _LPC804_H_ */