/* ** ################################################################### ** Compilers: Keil ARM C/C++ Compiler ** Freescale C/C++ for Embedded ARM ** GNU C Compiler ** IAR ANSI C/C++ Compiler for ARM ** ** Reference manual: K22P121M120SF7RM, Rev. 1, March 24, 2014 ** Version: rev. 2.5, 2014-05-06 ** Build: b140604 ** ** Abstract: ** Extension to the CMSIS register access layer header. ** ** Copyright (c) 2014 Freescale Semiconductor, Inc. ** All rights reserved. ** ** Redistribution and use in source and binary forms, with or without modification, ** are permitted provided that the following conditions are met: ** ** o Redistributions of source code must retain the above copyright notice, this list ** of conditions and the following disclaimer. ** ** o Redistributions in binary form must reproduce the above copyright notice, this ** list of conditions and the following disclaimer in the documentation and/or ** other materials provided with the distribution. ** ** o Neither the name of Freescale Semiconductor, Inc. nor the names of its ** contributors may be used to endorse or promote products derived from this ** software without specific prior written permission. ** ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ** ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED ** WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE ** DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ** ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ** (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; ** LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ** ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS ** SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ** ** http: www.freescale.com ** mail: support@freescale.com ** ** Revisions: ** - rev. 1.0 (2013-07-23) ** Initial version. ** - rev. 1.1 (2013-09-17) ** RM rev. 0.4 update. ** - rev. 2.0 (2013-10-29) ** Register accessor macros added to the memory map. ** Symbols for Processor Expert memory map compatibility added to the memory map. ** Startup file for gcc has been updated according to CMSIS 3.2. ** System initialization updated. ** - rev. 2.1 (2013-10-30) ** Definition of BITBAND macros updated to support peripherals with 32-bit acces disabled. ** - rev. 2.2 (2013-12-20) ** Update according to reference manual rev. 0.6, ** - rev. 2.3 (2014-01-13) ** Update according to reference manual rev. 0.61, ** - rev. 2.4 (2014-02-10) ** The declaration of clock configurations has been moved to separate header file system_MK22F51212.h ** - rev. 2.5 (2014-05-06) ** Update according to reference manual rev. 1.0, ** Update of system and startup files. ** Module access macro module_BASES replaced by module_BASE_PTRS. ** ** ################################################################### */ /* * WARNING! DO NOT EDIT THIS FILE DIRECTLY! * * This file was generated automatically and any changes may be lost. */ #ifndef __HW_FTM_REGISTERS_H__ #define __HW_FTM_REGISTERS_H__ #include "MK22F51212.h" #include "fsl_bitaccess.h" /* * MK22F51212 FTM * * FlexTimer Module * * Registers defined in this header file: * - HW_FTM_SC - Status And Control * - HW_FTM_CNT - Counter * - HW_FTM_MOD - Modulo * - HW_FTM_CnSC - Channel (n) Status And Control * - HW_FTM_CnV - Channel (n) Value * - HW_FTM_CNTIN - Counter Initial Value * - HW_FTM_STATUS - Capture And Compare Status * - HW_FTM_MODE - Features Mode Selection * - HW_FTM_SYNC - Synchronization * - HW_FTM_OUTINIT - Initial State For Channels Output * - HW_FTM_OUTMASK - Output Mask * - HW_FTM_COMBINE - Function For Linked Channels * - HW_FTM_DEADTIME - Deadtime Insertion Control * - HW_FTM_EXTTRIG - FTM External Trigger * - HW_FTM_POL - Channels Polarity * - HW_FTM_FMS - Fault Mode Status * - HW_FTM_FILTER - Input Capture Filter Control * - HW_FTM_FLTCTRL - Fault Control * - HW_FTM_QDCTRL - Quadrature Decoder Control And Status * - HW_FTM_CONF - Configuration * - HW_FTM_FLTPOL - FTM Fault Input Polarity * - HW_FTM_SYNCONF - Synchronization Configuration * - HW_FTM_INVCTRL - FTM Inverting Control * - HW_FTM_SWOCTRL - FTM Software Output Control * - HW_FTM_PWMLOAD - FTM PWM Load * * - hw_ftm_t - Struct containing all module registers. */ #define HW_FTM_INSTANCE_COUNT (4U) /*!< Number of instances of the FTM module. */ #define HW_FTM0 (0U) /*!< Instance number for FTM0. */ #define HW_FTM1 (1U) /*!< Instance number for FTM1. */ #define HW_FTM2 (2U) /*!< Instance number for FTM2. */ #define HW_FTM3 (3U) /*!< Instance number for FTM3. */ /******************************************************************************* * HW_FTM_SC - Status And Control ******************************************************************************/ /*! * @brief HW_FTM_SC - Status And Control (RW) * * Reset value: 0x00000000U * * SC contains the overflow status flag and control bits used to configure the * interrupt enable, FTM configuration, clock source, and prescaler factor. These * controls relate to all channels within this module. */ typedef union _hw_ftm_sc { uint32_t U; struct _hw_ftm_sc_bitfields { uint32_t PS : 3; /*!< [2:0] Prescale Factor Selection */ uint32_t CLKS : 2; /*!< [4:3] Clock Source Selection */ uint32_t CPWMS : 1; /*!< [5] Center-Aligned PWM Select */ uint32_t TOIE : 1; /*!< [6] Timer Overflow Interrupt Enable */ uint32_t TOF : 1; /*!< [7] Timer Overflow Flag */ uint32_t RESERVED0 : 24; /*!< [31:8] */ } B; } hw_ftm_sc_t; /*! * @name Constants and macros for entire FTM_SC register */ /*@{*/ #define HW_FTM_SC_ADDR(x) ((x) + 0x0U) #define HW_FTM_SC(x) (*(__IO hw_ftm_sc_t *) HW_FTM_SC_ADDR(x)) #define HW_FTM_SC_RD(x) (HW_FTM_SC(x).U) #define HW_FTM_SC_WR(x, v) (HW_FTM_SC(x).U = (v)) #define HW_FTM_SC_SET(x, v) (HW_FTM_SC_WR(x, HW_FTM_SC_RD(x) | (v))) #define HW_FTM_SC_CLR(x, v) (HW_FTM_SC_WR(x, HW_FTM_SC_RD(x) & ~(v))) #define HW_FTM_SC_TOG(x, v) (HW_FTM_SC_WR(x, HW_FTM_SC_RD(x) ^ (v))) /*@}*/ /* * Constants & macros for individual FTM_SC bitfields */ /*! * @name Register FTM_SC, field PS[2:0] (RW) * * Selects one of 8 division factors for the clock source selected by CLKS. The * new prescaler factor affects the clock source on the next system clock cycle * after the new value is updated into the register bits. This field is write * protected. It can be written only when MODE[WPDIS] = 1. * * Values: * - 000 - Divide by 1 * - 001 - Divide by 2 * - 010 - Divide by 4 * - 011 - Divide by 8 * - 100 - Divide by 16 * - 101 - Divide by 32 * - 110 - Divide by 64 * - 111 - Divide by 128 */ /*@{*/ #define BP_FTM_SC_PS (0U) /*!< Bit position for FTM_SC_PS. */ #define BM_FTM_SC_PS (0x00000007U) /*!< Bit mask for FTM_SC_PS. */ #define BS_FTM_SC_PS (3U) /*!< Bit field size in bits for FTM_SC_PS. */ /*! @brief Read current value of the FTM_SC_PS field. */ #define BR_FTM_SC_PS(x) (HW_FTM_SC(x).B.PS) /*! @brief Format value for bitfield FTM_SC_PS. */ #define BF_FTM_SC_PS(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SC_PS) & BM_FTM_SC_PS) /*! @brief Set the PS field to a new value. */ #define BW_FTM_SC_PS(x, v) (HW_FTM_SC_WR(x, (HW_FTM_SC_RD(x) & ~BM_FTM_SC_PS) | BF_FTM_SC_PS(v))) /*@}*/ /*! * @name Register FTM_SC, field CLKS[4:3] (RW) * * Selects one of the three FTM counter clock sources. This field is write * protected. It can be written only when MODE[WPDIS] = 1. * * Values: * - 00 - No clock selected. This in effect disables the FTM counter. * - 01 - System clock * - 10 - Fixed frequency clock * - 11 - External clock */ /*@{*/ #define BP_FTM_SC_CLKS (3U) /*!< Bit position for FTM_SC_CLKS. */ #define BM_FTM_SC_CLKS (0x00000018U) /*!< Bit mask for FTM_SC_CLKS. */ #define BS_FTM_SC_CLKS (2U) /*!< Bit field size in bits for FTM_SC_CLKS. */ /*! @brief Read current value of the FTM_SC_CLKS field. */ #define BR_FTM_SC_CLKS(x) (HW_FTM_SC(x).B.CLKS) /*! @brief Format value for bitfield FTM_SC_CLKS. */ #define BF_FTM_SC_CLKS(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SC_CLKS) & BM_FTM_SC_CLKS) /*! @brief Set the CLKS field to a new value. */ #define BW_FTM_SC_CLKS(x, v) (HW_FTM_SC_WR(x, (HW_FTM_SC_RD(x) & ~BM_FTM_SC_CLKS) | BF_FTM_SC_CLKS(v))) /*@}*/ /*! * @name Register FTM_SC, field CPWMS[5] (RW) * * Selects CPWM mode. This mode configures the FTM to operate in Up-Down * Counting mode. This field is write protected. It can be written only when MODE[WPDIS] * = 1. * * Values: * - 0 - FTM counter operates in Up Counting mode. * - 1 - FTM counter operates in Up-Down Counting mode. */ /*@{*/ #define BP_FTM_SC_CPWMS (5U) /*!< Bit position for FTM_SC_CPWMS. */ #define BM_FTM_SC_CPWMS (0x00000020U) /*!< Bit mask for FTM_SC_CPWMS. */ #define BS_FTM_SC_CPWMS (1U) /*!< Bit field size in bits for FTM_SC_CPWMS. */ /*! @brief Read current value of the FTM_SC_CPWMS field. */ #define BR_FTM_SC_CPWMS(x) (BITBAND_ACCESS32(HW_FTM_SC_ADDR(x), BP_FTM_SC_CPWMS)) /*! @brief Format value for bitfield FTM_SC_CPWMS. */ #define BF_FTM_SC_CPWMS(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SC_CPWMS) & BM_FTM_SC_CPWMS) /*! @brief Set the CPWMS field to a new value. */ #define BW_FTM_SC_CPWMS(x, v) (BITBAND_ACCESS32(HW_FTM_SC_ADDR(x), BP_FTM_SC_CPWMS) = (v)) /*@}*/ /*! * @name Register FTM_SC, field TOIE[6] (RW) * * Enables FTM overflow interrupts. * * Values: * - 0 - Disable TOF interrupts. Use software polling. * - 1 - Enable TOF interrupts. An interrupt is generated when TOF equals one. */ /*@{*/ #define BP_FTM_SC_TOIE (6U) /*!< Bit position for FTM_SC_TOIE. */ #define BM_FTM_SC_TOIE (0x00000040U) /*!< Bit mask for FTM_SC_TOIE. */ #define BS_FTM_SC_TOIE (1U) /*!< Bit field size in bits for FTM_SC_TOIE. */ /*! @brief Read current value of the FTM_SC_TOIE field. */ #define BR_FTM_SC_TOIE(x) (BITBAND_ACCESS32(HW_FTM_SC_ADDR(x), BP_FTM_SC_TOIE)) /*! @brief Format value for bitfield FTM_SC_TOIE. */ #define BF_FTM_SC_TOIE(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SC_TOIE) & BM_FTM_SC_TOIE) /*! @brief Set the TOIE field to a new value. */ #define BW_FTM_SC_TOIE(x, v) (BITBAND_ACCESS32(HW_FTM_SC_ADDR(x), BP_FTM_SC_TOIE) = (v)) /*@}*/ /*! * @name Register FTM_SC, field TOF[7] (ROWZ) * * Set by hardware when the FTM counter passes the value in the MOD register. * The TOF bit is cleared by reading the SC register while TOF is set and then * writing a 0 to TOF bit. Writing a 1 to TOF has no effect. If another FTM overflow * occurs between the read and write operations, the write operation has no * effect; therefore, TOF remains set indicating an overflow has occurred. In this * case, a TOF interrupt request is not lost due to the clearing sequence for a * previous TOF. * * Values: * - 0 - FTM counter has not overflowed. * - 1 - FTM counter has overflowed. */ /*@{*/ #define BP_FTM_SC_TOF (7U) /*!< Bit position for FTM_SC_TOF. */ #define BM_FTM_SC_TOF (0x00000080U) /*!< Bit mask for FTM_SC_TOF. */ #define BS_FTM_SC_TOF (1U) /*!< Bit field size in bits for FTM_SC_TOF. */ /*! @brief Read current value of the FTM_SC_TOF field. */ #define BR_FTM_SC_TOF(x) (BITBAND_ACCESS32(HW_FTM_SC_ADDR(x), BP_FTM_SC_TOF)) /*! @brief Format value for bitfield FTM_SC_TOF. */ #define BF_FTM_SC_TOF(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SC_TOF) & BM_FTM_SC_TOF) /*! @brief Set the TOF field to a new value. */ #define BW_FTM_SC_TOF(x, v) (BITBAND_ACCESS32(HW_FTM_SC_ADDR(x), BP_FTM_SC_TOF) = (v)) /*@}*/ /******************************************************************************* * HW_FTM_CNT - Counter ******************************************************************************/ /*! * @brief HW_FTM_CNT - Counter (RW) * * Reset value: 0x00000000U * * The CNT register contains the FTM counter value. Reset clears the CNT * register. Writing any value to COUNT updates the counter with its initial value, * CNTIN. When BDM is active, the FTM counter is frozen. This is the value that you * may read. */ typedef union _hw_ftm_cnt { uint32_t U; struct _hw_ftm_cnt_bitfields { uint32_t COUNT : 16; /*!< [15:0] Counter Value */ uint32_t RESERVED0 : 16; /*!< [31:16] */ } B; } hw_ftm_cnt_t; /*! * @name Constants and macros for entire FTM_CNT register */ /*@{*/ #define HW_FTM_CNT_ADDR(x) ((x) + 0x4U) #define HW_FTM_CNT(x) (*(__IO hw_ftm_cnt_t *) HW_FTM_CNT_ADDR(x)) #define HW_FTM_CNT_RD(x) (HW_FTM_CNT(x).U) #define HW_FTM_CNT_WR(x, v) (HW_FTM_CNT(x).U = (v)) #define HW_FTM_CNT_SET(x, v) (HW_FTM_CNT_WR(x, HW_FTM_CNT_RD(x) | (v))) #define HW_FTM_CNT_CLR(x, v) (HW_FTM_CNT_WR(x, HW_FTM_CNT_RD(x) & ~(v))) #define HW_FTM_CNT_TOG(x, v) (HW_FTM_CNT_WR(x, HW_FTM_CNT_RD(x) ^ (v))) /*@}*/ /* * Constants & macros for individual FTM_CNT bitfields */ /*! * @name Register FTM_CNT, field COUNT[15:0] (RW) */ /*@{*/ #define BP_FTM_CNT_COUNT (0U) /*!< Bit position for FTM_CNT_COUNT. */ #define BM_FTM_CNT_COUNT (0x0000FFFFU) /*!< Bit mask for FTM_CNT_COUNT. */ #define BS_FTM_CNT_COUNT (16U) /*!< Bit field size in bits for FTM_CNT_COUNT. */ /*! @brief Read current value of the FTM_CNT_COUNT field. */ #define BR_FTM_CNT_COUNT(x) (HW_FTM_CNT(x).B.COUNT) /*! @brief Format value for bitfield FTM_CNT_COUNT. */ #define BF_FTM_CNT_COUNT(v) ((uint32_t)((uint32_t)(v) << BP_FTM_CNT_COUNT) & BM_FTM_CNT_COUNT) /*! @brief Set the COUNT field to a new value. */ #define BW_FTM_CNT_COUNT(x, v) (HW_FTM_CNT_WR(x, (HW_FTM_CNT_RD(x) & ~BM_FTM_CNT_COUNT) | BF_FTM_CNT_COUNT(v))) /*@}*/ /******************************************************************************* * HW_FTM_MOD - Modulo ******************************************************************************/ /*! * @brief HW_FTM_MOD - Modulo (RW) * * Reset value: 0x00000000U * * The Modulo register contains the modulo value for the FTM counter. After the * FTM counter reaches the modulo value, the overflow flag (TOF) becomes set at * the next clock, and the next value of FTM counter depends on the selected * counting method; see Counter. Writing to the MOD register latches the value into a * buffer. The MOD register is updated with the value of its write buffer * according to Registers updated from write buffers. If FTMEN = 0, this write coherency * mechanism may be manually reset by writing to the SC register whether BDM is * active or not. Initialize the FTM counter, by writing to CNT, before writing * to the MOD register to avoid confusion about when the first counter overflow * will occur. */ typedef union _hw_ftm_mod { uint32_t U; struct _hw_ftm_mod_bitfields { uint32_t MOD : 16; /*!< [15:0] */ uint32_t RESERVED0 : 16; /*!< [31:16] */ } B; } hw_ftm_mod_t; /*! * @name Constants and macros for entire FTM_MOD register */ /*@{*/ #define HW_FTM_MOD_ADDR(x) ((x) + 0x8U) #define HW_FTM_MOD(x) (*(__IO hw_ftm_mod_t *) HW_FTM_MOD_ADDR(x)) #define HW_FTM_MOD_RD(x) (HW_FTM_MOD(x).U) #define HW_FTM_MOD_WR(x, v) (HW_FTM_MOD(x).U = (v)) #define HW_FTM_MOD_SET(x, v) (HW_FTM_MOD_WR(x, HW_FTM_MOD_RD(x) | (v))) #define HW_FTM_MOD_CLR(x, v) (HW_FTM_MOD_WR(x, HW_FTM_MOD_RD(x) & ~(v))) #define HW_FTM_MOD_TOG(x, v) (HW_FTM_MOD_WR(x, HW_FTM_MOD_RD(x) ^ (v))) /*@}*/ /* * Constants & macros for individual FTM_MOD bitfields */ /*! * @name Register FTM_MOD, field MOD[15:0] (RW) * * Modulo Value */ /*@{*/ #define BP_FTM_MOD_MOD (0U) /*!< Bit position for FTM_MOD_MOD. */ #define BM_FTM_MOD_MOD (0x0000FFFFU) /*!< Bit mask for FTM_MOD_MOD. */ #define BS_FTM_MOD_MOD (16U) /*!< Bit field size in bits for FTM_MOD_MOD. */ /*! @brief Read current value of the FTM_MOD_MOD field. */ #define BR_FTM_MOD_MOD(x) (HW_FTM_MOD(x).B.MOD) /*! @brief Format value for bitfield FTM_MOD_MOD. */ #define BF_FTM_MOD_MOD(v) ((uint32_t)((uint32_t)(v) << BP_FTM_MOD_MOD) & BM_FTM_MOD_MOD) /*! @brief Set the MOD field to a new value. */ #define BW_FTM_MOD_MOD(x, v) (HW_FTM_MOD_WR(x, (HW_FTM_MOD_RD(x) & ~BM_FTM_MOD_MOD) | BF_FTM_MOD_MOD(v))) /*@}*/ /******************************************************************************* * HW_FTM_CnSC - Channel (n) Status And Control ******************************************************************************/ /*! * @brief HW_FTM_CnSC - Channel (n) Status And Control (RW) * * Reset value: 0x00000000U * * CnSC contains the channel-interrupt-status flag and control bits used to * configure the interrupt enable, channel configuration, and pin function. Mode, * edge, and level selection DECAPEN COMBINE CPWMS MSnB:MSnA ELSnB:ELSnA Mode * Configuration X X X XX 0 Pin not used for FTM-revert the channel pin to general * purpose I/O or other peripheral control 0 0 0 0 1 Input Capture Capture on Rising * Edge Only 10 Capture on Falling Edge Only 11 Capture on Rising or Falling Edge * 1 1 Output Compare Toggle Output on match 10 Clear Output on match 11 Set * Output on match 1X 10 Edge-Aligned PWM High-true pulses (clear Output on match) * X1 Low-true pulses (set Output on match) 1 XX 10 Center-Aligned PWM High-true * pulses (clear Output on match-up) X1 Low-true pulses (set Output on match-up) 1 * 0 XX 10 Combine PWM High-true pulses (set on channel (n) match, and clear on * channel (n+1) match) X1 Low-true pulses (clear on channel (n) match, and set * on channel (n+1) match) 1 0 0 X0 See the following table (#ModeSel2Table). Dual * Edge Capture One-Shot Capture mode X1 Continuous Capture mode Dual Edge * Capture mode - edge polarity selection ELSnB ELSnA Channel Port Enable Detected * Edges 0 0 Disabled No edge 0 1 Enabled Rising edge 1 0 Enabled Falling edge 1 1 * Enabled Rising and falling edges */ typedef union _hw_ftm_cnsc { uint32_t U; struct _hw_ftm_cnsc_bitfields { uint32_t DMA : 1; /*!< [0] DMA Enable */ uint32_t ICRST : 1; /*!< [1] FTM counter reset by the selected input * capture event. */ uint32_t ELSA : 1; /*!< [2] Edge or Level Select */ uint32_t ELSB : 1; /*!< [3] Edge or Level Select */ uint32_t MSA : 1; /*!< [4] Channel Mode Select */ uint32_t MSB : 1; /*!< [5] Channel Mode Select */ uint32_t CHIE : 1; /*!< [6] Channel Interrupt Enable */ uint32_t CHF : 1; /*!< [7] Channel Flag */ uint32_t RESERVED0 : 24; /*!< [31:8] */ } B; } hw_ftm_cnsc_t; /*! * @name Constants and macros for entire FTM_CnSC register */ /*@{*/ #define HW_FTM_CnSC_COUNT (8U) #define HW_FTM_CnSC_ADDR(x, n) ((x) + 0xCU + (0x8U * (n))) #define HW_FTM_CnSC(x, n) (*(__IO hw_ftm_cnsc_t *) HW_FTM_CnSC_ADDR(x, n)) #define HW_FTM_CnSC_RD(x, n) (HW_FTM_CnSC(x, n).U) #define HW_FTM_CnSC_WR(x, n, v) (HW_FTM_CnSC(x, n).U = (v)) #define HW_FTM_CnSC_SET(x, n, v) (HW_FTM_CnSC_WR(x, n, HW_FTM_CnSC_RD(x, n) | (v))) #define HW_FTM_CnSC_CLR(x, n, v) (HW_FTM_CnSC_WR(x, n, HW_FTM_CnSC_RD(x, n) & ~(v))) #define HW_FTM_CnSC_TOG(x, n, v) (HW_FTM_CnSC_WR(x, n, HW_FTM_CnSC_RD(x, n) ^ (v))) /*@}*/ /* * Constants & macros for individual FTM_CnSC bitfields */ /*! * @name Register FTM_CnSC, field DMA[0] (RW) * * Enables DMA transfers for the channel. * * Values: * - 0 - Disable DMA transfers. * - 1 - Enable DMA transfers. */ /*@{*/ #define BP_FTM_CnSC_DMA (0U) /*!< Bit position for FTM_CnSC_DMA. */ #define BM_FTM_CnSC_DMA (0x00000001U) /*!< Bit mask for FTM_CnSC_DMA. */ #define BS_FTM_CnSC_DMA (1U) /*!< Bit field size in bits for FTM_CnSC_DMA. */ /*! @brief Read current value of the FTM_CnSC_DMA field. */ #define BR_FTM_CnSC_DMA(x, n) (BITBAND_ACCESS32(HW_FTM_CnSC_ADDR(x, n), BP_FTM_CnSC_DMA)) /*! @brief Format value for bitfield FTM_CnSC_DMA. */ #define BF_FTM_CnSC_DMA(v) ((uint32_t)((uint32_t)(v) << BP_FTM_CnSC_DMA) & BM_FTM_CnSC_DMA) /*! @brief Set the DMA field to a new value. */ #define BW_FTM_CnSC_DMA(x, n, v) (BITBAND_ACCESS32(HW_FTM_CnSC_ADDR(x, n), BP_FTM_CnSC_DMA) = (v)) /*@}*/ /*! * @name Register FTM_CnSC, field ICRST[1] (RW) * * FTM counter reset is driven by the selected event of the channel (n) in the * Input Capture mode. This field is write protected. It can be written only when * MODE[WPDIS] = 1. * * Values: * - 0 - FTM counter is not reset when the selected channel (n) input event is * detected. * - 1 - FTM counter is reset when the selected channel (n) input event is * detected. */ /*@{*/ #define BP_FTM_CnSC_ICRST (1U) /*!< Bit position for FTM_CnSC_ICRST. */ #define BM_FTM_CnSC_ICRST (0x00000002U) /*!< Bit mask for FTM_CnSC_ICRST. */ #define BS_FTM_CnSC_ICRST (1U) /*!< Bit field size in bits for FTM_CnSC_ICRST. */ /*! @brief Read current value of the FTM_CnSC_ICRST field. */ #define BR_FTM_CnSC_ICRST(x, n) (BITBAND_ACCESS32(HW_FTM_CnSC_ADDR(x, n), BP_FTM_CnSC_ICRST)) /*! @brief Format value for bitfield FTM_CnSC_ICRST. */ #define BF_FTM_CnSC_ICRST(v) ((uint32_t)((uint32_t)(v) << BP_FTM_CnSC_ICRST) & BM_FTM_CnSC_ICRST) /*! @brief Set the ICRST field to a new value. */ #define BW_FTM_CnSC_ICRST(x, n, v) (BITBAND_ACCESS32(HW_FTM_CnSC_ADDR(x, n), BP_FTM_CnSC_ICRST) = (v)) /*@}*/ /*! * @name Register FTM_CnSC, field ELSA[2] (RW) * * The functionality of ELSB and ELSA depends on the channel mode. See * #ModeSel1Table. This field is write protected. It can be written only when MODE[WPDIS] * = 1. */ /*@{*/ #define BP_FTM_CnSC_ELSA (2U) /*!< Bit position for FTM_CnSC_ELSA. */ #define BM_FTM_CnSC_ELSA (0x00000004U) /*!< Bit mask for FTM_CnSC_ELSA. */ #define BS_FTM_CnSC_ELSA (1U) /*!< Bit field size in bits for FTM_CnSC_ELSA. */ /*! @brief Read current value of the FTM_CnSC_ELSA field. */ #define BR_FTM_CnSC_ELSA(x, n) (BITBAND_ACCESS32(HW_FTM_CnSC_ADDR(x, n), BP_FTM_CnSC_ELSA)) /*! @brief Format value for bitfield FTM_CnSC_ELSA. */ #define BF_FTM_CnSC_ELSA(v) ((uint32_t)((uint32_t)(v) << BP_FTM_CnSC_ELSA) & BM_FTM_CnSC_ELSA) /*! @brief Set the ELSA field to a new value. */ #define BW_FTM_CnSC_ELSA(x, n, v) (BITBAND_ACCESS32(HW_FTM_CnSC_ADDR(x, n), BP_FTM_CnSC_ELSA) = (v)) /*@}*/ /*! * @name Register FTM_CnSC, field ELSB[3] (RW) * * The functionality of ELSB and ELSA depends on the channel mode. See * #ModeSel1Table. This field is write protected. It can be written only when MODE[WPDIS] * = 1. */ /*@{*/ #define BP_FTM_CnSC_ELSB (3U) /*!< Bit position for FTM_CnSC_ELSB. */ #define BM_FTM_CnSC_ELSB (0x00000008U) /*!< Bit mask for FTM_CnSC_ELSB. */ #define BS_FTM_CnSC_ELSB (1U) /*!< Bit field size in bits for FTM_CnSC_ELSB. */ /*! @brief Read current value of the FTM_CnSC_ELSB field. */ #define BR_FTM_CnSC_ELSB(x, n) (BITBAND_ACCESS32(HW_FTM_CnSC_ADDR(x, n), BP_FTM_CnSC_ELSB)) /*! @brief Format value for bitfield FTM_CnSC_ELSB. */ #define BF_FTM_CnSC_ELSB(v) ((uint32_t)((uint32_t)(v) << BP_FTM_CnSC_ELSB) & BM_FTM_CnSC_ELSB) /*! @brief Set the ELSB field to a new value. */ #define BW_FTM_CnSC_ELSB(x, n, v) (BITBAND_ACCESS32(HW_FTM_CnSC_ADDR(x, n), BP_FTM_CnSC_ELSB) = (v)) /*@}*/ /*! * @name Register FTM_CnSC, field MSA[4] (RW) * * Used for further selections in the channel logic. Its functionality is * dependent on the channel mode. See #ModeSel1Table. This field is write protected. It * can be written only when MODE[WPDIS] = 1. */ /*@{*/ #define BP_FTM_CnSC_MSA (4U) /*!< Bit position for FTM_CnSC_MSA. */ #define BM_FTM_CnSC_MSA (0x00000010U) /*!< Bit mask for FTM_CnSC_MSA. */ #define BS_FTM_CnSC_MSA (1U) /*!< Bit field size in bits for FTM_CnSC_MSA. */ /*! @brief Read current value of the FTM_CnSC_MSA field. */ #define BR_FTM_CnSC_MSA(x, n) (BITBAND_ACCESS32(HW_FTM_CnSC_ADDR(x, n), BP_FTM_CnSC_MSA)) /*! @brief Format value for bitfield FTM_CnSC_MSA. */ #define BF_FTM_CnSC_MSA(v) ((uint32_t)((uint32_t)(v) << BP_FTM_CnSC_MSA) & BM_FTM_CnSC_MSA) /*! @brief Set the MSA field to a new value. */ #define BW_FTM_CnSC_MSA(x, n, v) (BITBAND_ACCESS32(HW_FTM_CnSC_ADDR(x, n), BP_FTM_CnSC_MSA) = (v)) /*@}*/ /*! * @name Register FTM_CnSC, field MSB[5] (RW) * * Used for further selections in the channel logic. Its functionality is * dependent on the channel mode. See #ModeSel1Table. This field is write protected. It * can be written only when MODE[WPDIS] = 1. */ /*@{*/ #define BP_FTM_CnSC_MSB (5U) /*!< Bit position for FTM_CnSC_MSB. */ #define BM_FTM_CnSC_MSB (0x00000020U) /*!< Bit mask for FTM_CnSC_MSB. */ #define BS_FTM_CnSC_MSB (1U) /*!< Bit field size in bits for FTM_CnSC_MSB. */ /*! @brief Read current value of the FTM_CnSC_MSB field. */ #define BR_FTM_CnSC_MSB(x, n) (BITBAND_ACCESS32(HW_FTM_CnSC_ADDR(x, n), BP_FTM_CnSC_MSB)) /*! @brief Format value for bitfield FTM_CnSC_MSB. */ #define BF_FTM_CnSC_MSB(v) ((uint32_t)((uint32_t)(v) << BP_FTM_CnSC_MSB) & BM_FTM_CnSC_MSB) /*! @brief Set the MSB field to a new value. */ #define BW_FTM_CnSC_MSB(x, n, v) (BITBAND_ACCESS32(HW_FTM_CnSC_ADDR(x, n), BP_FTM_CnSC_MSB) = (v)) /*@}*/ /*! * @name Register FTM_CnSC, field CHIE[6] (RW) * * Enables channel interrupts. * * Values: * - 0 - Disable channel interrupts. Use software polling. * - 1 - Enable channel interrupts. */ /*@{*/ #define BP_FTM_CnSC_CHIE (6U) /*!< Bit position for FTM_CnSC_CHIE. */ #define BM_FTM_CnSC_CHIE (0x00000040U) /*!< Bit mask for FTM_CnSC_CHIE. */ #define BS_FTM_CnSC_CHIE (1U) /*!< Bit field size in bits for FTM_CnSC_CHIE. */ /*! @brief Read current value of the FTM_CnSC_CHIE field. */ #define BR_FTM_CnSC_CHIE(x, n) (BITBAND_ACCESS32(HW_FTM_CnSC_ADDR(x, n), BP_FTM_CnSC_CHIE)) /*! @brief Format value for bitfield FTM_CnSC_CHIE. */ #define BF_FTM_CnSC_CHIE(v) ((uint32_t)((uint32_t)(v) << BP_FTM_CnSC_CHIE) & BM_FTM_CnSC_CHIE) /*! @brief Set the CHIE field to a new value. */ #define BW_FTM_CnSC_CHIE(x, n, v) (BITBAND_ACCESS32(HW_FTM_CnSC_ADDR(x, n), BP_FTM_CnSC_CHIE) = (v)) /*@}*/ /*! * @name Register FTM_CnSC, field CHF[7] (ROWZ) * * Set by hardware when an event occurs on the channel. CHF is cleared by * reading the CSC register while CHnF is set and then writing a 0 to the CHF bit. * Writing a 1 to CHF has no effect. If another event occurs between the read and * write operations, the write operation has no effect; therefore, CHF remains set * indicating an event has occurred. In this case a CHF interrupt request is not * lost due to the clearing sequence for a previous CHF. * * Values: * - 0 - No channel event has occurred. * - 1 - A channel event has occurred. */ /*@{*/ #define BP_FTM_CnSC_CHF (7U) /*!< Bit position for FTM_CnSC_CHF. */ #define BM_FTM_CnSC_CHF (0x00000080U) /*!< Bit mask for FTM_CnSC_CHF. */ #define BS_FTM_CnSC_CHF (1U) /*!< Bit field size in bits for FTM_CnSC_CHF. */ /*! @brief Read current value of the FTM_CnSC_CHF field. */ #define BR_FTM_CnSC_CHF(x, n) (BITBAND_ACCESS32(HW_FTM_CnSC_ADDR(x, n), BP_FTM_CnSC_CHF)) /*! @brief Format value for bitfield FTM_CnSC_CHF. */ #define BF_FTM_CnSC_CHF(v) ((uint32_t)((uint32_t)(v) << BP_FTM_CnSC_CHF) & BM_FTM_CnSC_CHF) /*! @brief Set the CHF field to a new value. */ #define BW_FTM_CnSC_CHF(x, n, v) (BITBAND_ACCESS32(HW_FTM_CnSC_ADDR(x, n), BP_FTM_CnSC_CHF) = (v)) /*@}*/ /******************************************************************************* * HW_FTM_CnV - Channel (n) Value ******************************************************************************/ /*! * @brief HW_FTM_CnV - Channel (n) Value (RW) * * Reset value: 0x00000000U * * These registers contain the captured FTM counter value for the input modes or * the match value for the output modes. In Input Capture, Capture Test, and * Dual Edge Capture modes, any write to a CnV register is ignored. In output modes, * writing to a CnV register latches the value into a buffer. A CnV register is * updated with the value of its write buffer according to Registers updated from * write buffers. If FTMEN = 0, this write coherency mechanism may be manually * reset by writing to the CnSC register whether BDM mode is active or not. */ typedef union _hw_ftm_cnv { uint32_t U; struct _hw_ftm_cnv_bitfields { uint32_t VAL : 16; /*!< [15:0] Channel Value */ uint32_t RESERVED0 : 16; /*!< [31:16] */ } B; } hw_ftm_cnv_t; /*! * @name Constants and macros for entire FTM_CnV register */ /*@{*/ #define HW_FTM_CnV_COUNT (8U) #define HW_FTM_CnV_ADDR(x, n) ((x) + 0x10U + (0x8U * (n))) #define HW_FTM_CnV(x, n) (*(__IO hw_ftm_cnv_t *) HW_FTM_CnV_ADDR(x, n)) #define HW_FTM_CnV_RD(x, n) (HW_FTM_CnV(x, n).U) #define HW_FTM_CnV_WR(x, n, v) (HW_FTM_CnV(x, n).U = (v)) #define HW_FTM_CnV_SET(x, n, v) (HW_FTM_CnV_WR(x, n, HW_FTM_CnV_RD(x, n) | (v))) #define HW_FTM_CnV_CLR(x, n, v) (HW_FTM_CnV_WR(x, n, HW_FTM_CnV_RD(x, n) & ~(v))) #define HW_FTM_CnV_TOG(x, n, v) (HW_FTM_CnV_WR(x, n, HW_FTM_CnV_RD(x, n) ^ (v))) /*@}*/ /* * Constants & macros for individual FTM_CnV bitfields */ /*! * @name Register FTM_CnV, field VAL[15:0] (RW) * * Captured FTM counter value of the input modes or the match value for the * output modes */ /*@{*/ #define BP_FTM_CnV_VAL (0U) /*!< Bit position for FTM_CnV_VAL. */ #define BM_FTM_CnV_VAL (0x0000FFFFU) /*!< Bit mask for FTM_CnV_VAL. */ #define BS_FTM_CnV_VAL (16U) /*!< Bit field size in bits for FTM_CnV_VAL. */ /*! @brief Read current value of the FTM_CnV_VAL field. */ #define BR_FTM_CnV_VAL(x, n) (HW_FTM_CnV(x, n).B.VAL) /*! @brief Format value for bitfield FTM_CnV_VAL. */ #define BF_FTM_CnV_VAL(v) ((uint32_t)((uint32_t)(v) << BP_FTM_CnV_VAL) & BM_FTM_CnV_VAL) /*! @brief Set the VAL field to a new value. */ #define BW_FTM_CnV_VAL(x, n, v) (HW_FTM_CnV_WR(x, n, (HW_FTM_CnV_RD(x, n) & ~BM_FTM_CnV_VAL) | BF_FTM_CnV_VAL(v))) /*@}*/ /******************************************************************************* * HW_FTM_CNTIN - Counter Initial Value ******************************************************************************/ /*! * @brief HW_FTM_CNTIN - Counter Initial Value (RW) * * Reset value: 0x00000000U * * The Counter Initial Value register contains the initial value for the FTM * counter. Writing to the CNTIN register latches the value into a buffer. The CNTIN * register is updated with the value of its write buffer according to Registers * updated from write buffers. When the FTM clock is initially selected, by * writing a non-zero value to the CLKS bits, the FTM counter starts with the value * 0x0000. To avoid this behavior, before the first write to select the FTM clock, * write the new value to the the CNTIN register and then initialize the FTM * counter by writing any value to the CNT register. */ typedef union _hw_ftm_cntin { uint32_t U; struct _hw_ftm_cntin_bitfields { uint32_t INIT : 16; /*!< [15:0] */ uint32_t RESERVED0 : 16; /*!< [31:16] */ } B; } hw_ftm_cntin_t; /*! * @name Constants and macros for entire FTM_CNTIN register */ /*@{*/ #define HW_FTM_CNTIN_ADDR(x) ((x) + 0x4CU) #define HW_FTM_CNTIN(x) (*(__IO hw_ftm_cntin_t *) HW_FTM_CNTIN_ADDR(x)) #define HW_FTM_CNTIN_RD(x) (HW_FTM_CNTIN(x).U) #define HW_FTM_CNTIN_WR(x, v) (HW_FTM_CNTIN(x).U = (v)) #define HW_FTM_CNTIN_SET(x, v) (HW_FTM_CNTIN_WR(x, HW_FTM_CNTIN_RD(x) | (v))) #define HW_FTM_CNTIN_CLR(x, v) (HW_FTM_CNTIN_WR(x, HW_FTM_CNTIN_RD(x) & ~(v))) #define HW_FTM_CNTIN_TOG(x, v) (HW_FTM_CNTIN_WR(x, HW_FTM_CNTIN_RD(x) ^ (v))) /*@}*/ /* * Constants & macros for individual FTM_CNTIN bitfields */ /*! * @name Register FTM_CNTIN, field INIT[15:0] (RW) * * Initial Value Of The FTM Counter */ /*@{*/ #define BP_FTM_CNTIN_INIT (0U) /*!< Bit position for FTM_CNTIN_INIT. */ #define BM_FTM_CNTIN_INIT (0x0000FFFFU) /*!< Bit mask for FTM_CNTIN_INIT. */ #define BS_FTM_CNTIN_INIT (16U) /*!< Bit field size in bits for FTM_CNTIN_INIT. */ /*! @brief Read current value of the FTM_CNTIN_INIT field. */ #define BR_FTM_CNTIN_INIT(x) (HW_FTM_CNTIN(x).B.INIT) /*! @brief Format value for bitfield FTM_CNTIN_INIT. */ #define BF_FTM_CNTIN_INIT(v) ((uint32_t)((uint32_t)(v) << BP_FTM_CNTIN_INIT) & BM_FTM_CNTIN_INIT) /*! @brief Set the INIT field to a new value. */ #define BW_FTM_CNTIN_INIT(x, v) (HW_FTM_CNTIN_WR(x, (HW_FTM_CNTIN_RD(x) & ~BM_FTM_CNTIN_INIT) | BF_FTM_CNTIN_INIT(v))) /*@}*/ /******************************************************************************* * HW_FTM_STATUS - Capture And Compare Status ******************************************************************************/ /*! * @brief HW_FTM_STATUS - Capture And Compare Status (RW) * * Reset value: 0x00000000U * * The STATUS register contains a copy of the status flag CHnF bit in CnSC for * each FTM channel for software convenience. Each CHnF bit in STATUS is a mirror * of CHnF bit in CnSC. All CHnF bits can be checked using only one read of * STATUS. All CHnF bits can be cleared by reading STATUS followed by writing 0x00 to * STATUS. Hardware sets the individual channel flags when an event occurs on the * channel. CHnF is cleared by reading STATUS while CHnF is set and then writing * a 0 to the CHnF bit. Writing a 1 to CHnF has no effect. If another event * occurs between the read and write operations, the write operation has no effect; * therefore, CHnF remains set indicating an event has occurred. In this case, a * CHnF interrupt request is not lost due to the clearing sequence for a previous * CHnF. The STATUS register should be used only in Combine mode. */ typedef union _hw_ftm_status { uint32_t U; struct _hw_ftm_status_bitfields { uint32_t CH0F : 1; /*!< [0] Channel 0 Flag */ uint32_t CH1F : 1; /*!< [1] Channel 1 Flag */ uint32_t CH2F : 1; /*!< [2] Channel 2 Flag */ uint32_t CH3F : 1; /*!< [3] Channel 3 Flag */ uint32_t CH4F : 1; /*!< [4] Channel 4 Flag */ uint32_t CH5F : 1; /*!< [5] Channel 5 Flag */ uint32_t CH6F : 1; /*!< [6] Channel 6 Flag */ uint32_t CH7F : 1; /*!< [7] Channel 7 Flag */ uint32_t RESERVED0 : 24; /*!< [31:8] */ } B; } hw_ftm_status_t; /*! * @name Constants and macros for entire FTM_STATUS register */ /*@{*/ #define HW_FTM_STATUS_ADDR(x) ((x) + 0x50U) #define HW_FTM_STATUS(x) (*(__IO hw_ftm_status_t *) HW_FTM_STATUS_ADDR(x)) #define HW_FTM_STATUS_RD(x) (HW_FTM_STATUS(x).U) #define HW_FTM_STATUS_WR(x, v) (HW_FTM_STATUS(x).U = (v)) #define HW_FTM_STATUS_SET(x, v) (HW_FTM_STATUS_WR(x, HW_FTM_STATUS_RD(x) | (v))) #define HW_FTM_STATUS_CLR(x, v) (HW_FTM_STATUS_WR(x, HW_FTM_STATUS_RD(x) & ~(v))) #define HW_FTM_STATUS_TOG(x, v) (HW_FTM_STATUS_WR(x, HW_FTM_STATUS_RD(x) ^ (v))) /*@}*/ /* * Constants & macros for individual FTM_STATUS bitfields */ /*! * @name Register FTM_STATUS, field CH0F[0] (W1C) * * See the register description. * * Values: * - 0 - No channel event has occurred. * - 1 - A channel event has occurred. */ /*@{*/ #define BP_FTM_STATUS_CH0F (0U) /*!< Bit position for FTM_STATUS_CH0F. */ #define BM_FTM_STATUS_CH0F (0x00000001U) /*!< Bit mask for FTM_STATUS_CH0F. */ #define BS_FTM_STATUS_CH0F (1U) /*!< Bit field size in bits for FTM_STATUS_CH0F. */ /*! @brief Read current value of the FTM_STATUS_CH0F field. */ #define BR_FTM_STATUS_CH0F(x) (BITBAND_ACCESS32(HW_FTM_STATUS_ADDR(x), BP_FTM_STATUS_CH0F)) /*! @brief Format value for bitfield FTM_STATUS_CH0F. */ #define BF_FTM_STATUS_CH0F(v) ((uint32_t)((uint32_t)(v) << BP_FTM_STATUS_CH0F) & BM_FTM_STATUS_CH0F) /*! @brief Set the CH0F field to a new value. */ #define BW_FTM_STATUS_CH0F(x, v) (BITBAND_ACCESS32(HW_FTM_STATUS_ADDR(x), BP_FTM_STATUS_CH0F) = (v)) /*@}*/ /*! * @name Register FTM_STATUS, field CH1F[1] (W1C) * * See the register description. * * Values: * - 0 - No channel event has occurred. * - 1 - A channel event has occurred. */ /*@{*/ #define BP_FTM_STATUS_CH1F (1U) /*!< Bit position for FTM_STATUS_CH1F. */ #define BM_FTM_STATUS_CH1F (0x00000002U) /*!< Bit mask for FTM_STATUS_CH1F. */ #define BS_FTM_STATUS_CH1F (1U) /*!< Bit field size in bits for FTM_STATUS_CH1F. */ /*! @brief Read current value of the FTM_STATUS_CH1F field. */ #define BR_FTM_STATUS_CH1F(x) (BITBAND_ACCESS32(HW_FTM_STATUS_ADDR(x), BP_FTM_STATUS_CH1F)) /*! @brief Format value for bitfield FTM_STATUS_CH1F. */ #define BF_FTM_STATUS_CH1F(v) ((uint32_t)((uint32_t)(v) << BP_FTM_STATUS_CH1F) & BM_FTM_STATUS_CH1F) /*! @brief Set the CH1F field to a new value. */ #define BW_FTM_STATUS_CH1F(x, v) (BITBAND_ACCESS32(HW_FTM_STATUS_ADDR(x), BP_FTM_STATUS_CH1F) = (v)) /*@}*/ /*! * @name Register FTM_STATUS, field CH2F[2] (W1C) * * See the register description. * * Values: * - 0 - No channel event has occurred. * - 1 - A channel event has occurred. */ /*@{*/ #define BP_FTM_STATUS_CH2F (2U) /*!< Bit position for FTM_STATUS_CH2F. */ #define BM_FTM_STATUS_CH2F (0x00000004U) /*!< Bit mask for FTM_STATUS_CH2F. */ #define BS_FTM_STATUS_CH2F (1U) /*!< Bit field size in bits for FTM_STATUS_CH2F. */ /*! @brief Read current value of the FTM_STATUS_CH2F field. */ #define BR_FTM_STATUS_CH2F(x) (BITBAND_ACCESS32(HW_FTM_STATUS_ADDR(x), BP_FTM_STATUS_CH2F)) /*! @brief Format value for bitfield FTM_STATUS_CH2F. */ #define BF_FTM_STATUS_CH2F(v) ((uint32_t)((uint32_t)(v) << BP_FTM_STATUS_CH2F) & BM_FTM_STATUS_CH2F) /*! @brief Set the CH2F field to a new value. */ #define BW_FTM_STATUS_CH2F(x, v) (BITBAND_ACCESS32(HW_FTM_STATUS_ADDR(x), BP_FTM_STATUS_CH2F) = (v)) /*@}*/ /*! * @name Register FTM_STATUS, field CH3F[3] (W1C) * * See the register description. * * Values: * - 0 - No channel event has occurred. * - 1 - A channel event has occurred. */ /*@{*/ #define BP_FTM_STATUS_CH3F (3U) /*!< Bit position for FTM_STATUS_CH3F. */ #define BM_FTM_STATUS_CH3F (0x00000008U) /*!< Bit mask for FTM_STATUS_CH3F. */ #define BS_FTM_STATUS_CH3F (1U) /*!< Bit field size in bits for FTM_STATUS_CH3F. */ /*! @brief Read current value of the FTM_STATUS_CH3F field. */ #define BR_FTM_STATUS_CH3F(x) (BITBAND_ACCESS32(HW_FTM_STATUS_ADDR(x), BP_FTM_STATUS_CH3F)) /*! @brief Format value for bitfield FTM_STATUS_CH3F. */ #define BF_FTM_STATUS_CH3F(v) ((uint32_t)((uint32_t)(v) << BP_FTM_STATUS_CH3F) & BM_FTM_STATUS_CH3F) /*! @brief Set the CH3F field to a new value. */ #define BW_FTM_STATUS_CH3F(x, v) (BITBAND_ACCESS32(HW_FTM_STATUS_ADDR(x), BP_FTM_STATUS_CH3F) = (v)) /*@}*/ /*! * @name Register FTM_STATUS, field CH4F[4] (W1C) * * See the register description. * * Values: * - 0 - No channel event has occurred. * - 1 - A channel event has occurred. */ /*@{*/ #define BP_FTM_STATUS_CH4F (4U) /*!< Bit position for FTM_STATUS_CH4F. */ #define BM_FTM_STATUS_CH4F (0x00000010U) /*!< Bit mask for FTM_STATUS_CH4F. */ #define BS_FTM_STATUS_CH4F (1U) /*!< Bit field size in bits for FTM_STATUS_CH4F. */ /*! @brief Read current value of the FTM_STATUS_CH4F field. */ #define BR_FTM_STATUS_CH4F(x) (BITBAND_ACCESS32(HW_FTM_STATUS_ADDR(x), BP_FTM_STATUS_CH4F)) /*! @brief Format value for bitfield FTM_STATUS_CH4F. */ #define BF_FTM_STATUS_CH4F(v) ((uint32_t)((uint32_t)(v) << BP_FTM_STATUS_CH4F) & BM_FTM_STATUS_CH4F) /*! @brief Set the CH4F field to a new value. */ #define BW_FTM_STATUS_CH4F(x, v) (BITBAND_ACCESS32(HW_FTM_STATUS_ADDR(x), BP_FTM_STATUS_CH4F) = (v)) /*@}*/ /*! * @name Register FTM_STATUS, field CH5F[5] (W1C) * * See the register description. * * Values: * - 0 - No channel event has occurred. * - 1 - A channel event has occurred. */ /*@{*/ #define BP_FTM_STATUS_CH5F (5U) /*!< Bit position for FTM_STATUS_CH5F. */ #define BM_FTM_STATUS_CH5F (0x00000020U) /*!< Bit mask for FTM_STATUS_CH5F. */ #define BS_FTM_STATUS_CH5F (1U) /*!< Bit field size in bits for FTM_STATUS_CH5F. */ /*! @brief Read current value of the FTM_STATUS_CH5F field. */ #define BR_FTM_STATUS_CH5F(x) (BITBAND_ACCESS32(HW_FTM_STATUS_ADDR(x), BP_FTM_STATUS_CH5F)) /*! @brief Format value for bitfield FTM_STATUS_CH5F. */ #define BF_FTM_STATUS_CH5F(v) ((uint32_t)((uint32_t)(v) << BP_FTM_STATUS_CH5F) & BM_FTM_STATUS_CH5F) /*! @brief Set the CH5F field to a new value. */ #define BW_FTM_STATUS_CH5F(x, v) (BITBAND_ACCESS32(HW_FTM_STATUS_ADDR(x), BP_FTM_STATUS_CH5F) = (v)) /*@}*/ /*! * @name Register FTM_STATUS, field CH6F[6] (W1C) * * See the register description. * * Values: * - 0 - No channel event has occurred. * - 1 - A channel event has occurred. */ /*@{*/ #define BP_FTM_STATUS_CH6F (6U) /*!< Bit position for FTM_STATUS_CH6F. */ #define BM_FTM_STATUS_CH6F (0x00000040U) /*!< Bit mask for FTM_STATUS_CH6F. */ #define BS_FTM_STATUS_CH6F (1U) /*!< Bit field size in bits for FTM_STATUS_CH6F. */ /*! @brief Read current value of the FTM_STATUS_CH6F field. */ #define BR_FTM_STATUS_CH6F(x) (BITBAND_ACCESS32(HW_FTM_STATUS_ADDR(x), BP_FTM_STATUS_CH6F)) /*! @brief Format value for bitfield FTM_STATUS_CH6F. */ #define BF_FTM_STATUS_CH6F(v) ((uint32_t)((uint32_t)(v) << BP_FTM_STATUS_CH6F) & BM_FTM_STATUS_CH6F) /*! @brief Set the CH6F field to a new value. */ #define BW_FTM_STATUS_CH6F(x, v) (BITBAND_ACCESS32(HW_FTM_STATUS_ADDR(x), BP_FTM_STATUS_CH6F) = (v)) /*@}*/ /*! * @name Register FTM_STATUS, field CH7F[7] (W1C) * * See the register description. * * Values: * - 0 - No channel event has occurred. * - 1 - A channel event has occurred. */ /*@{*/ #define BP_FTM_STATUS_CH7F (7U) /*!< Bit position for FTM_STATUS_CH7F. */ #define BM_FTM_STATUS_CH7F (0x00000080U) /*!< Bit mask for FTM_STATUS_CH7F. */ #define BS_FTM_STATUS_CH7F (1U) /*!< Bit field size in bits for FTM_STATUS_CH7F. */ /*! @brief Read current value of the FTM_STATUS_CH7F field. */ #define BR_FTM_STATUS_CH7F(x) (BITBAND_ACCESS32(HW_FTM_STATUS_ADDR(x), BP_FTM_STATUS_CH7F)) /*! @brief Format value for bitfield FTM_STATUS_CH7F. */ #define BF_FTM_STATUS_CH7F(v) ((uint32_t)((uint32_t)(v) << BP_FTM_STATUS_CH7F) & BM_FTM_STATUS_CH7F) /*! @brief Set the CH7F field to a new value. */ #define BW_FTM_STATUS_CH7F(x, v) (BITBAND_ACCESS32(HW_FTM_STATUS_ADDR(x), BP_FTM_STATUS_CH7F) = (v)) /*@}*/ /******************************************************************************* * HW_FTM_MODE - Features Mode Selection ******************************************************************************/ /*! * @brief HW_FTM_MODE - Features Mode Selection (RW) * * Reset value: 0x00000004U * * This register contains the global enable bit for FTM-specific features and * the control bits used to configure: Fault control mode and interrupt Capture * Test mode PWM synchronization Write protection Channel output initialization * These controls relate to all channels within this module. */ typedef union _hw_ftm_mode { uint32_t U; struct _hw_ftm_mode_bitfields { uint32_t FTMEN : 1; /*!< [0] FTM Enable */ uint32_t INIT : 1; /*!< [1] Initialize The Channels Output */ uint32_t WPDIS : 1; /*!< [2] Write Protection Disable */ uint32_t PWMSYNC : 1; /*!< [3] PWM Synchronization Mode */ uint32_t CAPTEST : 1; /*!< [4] Capture Test Mode Enable */ uint32_t FAULTM : 2; /*!< [6:5] Fault Control Mode */ uint32_t FAULTIE : 1; /*!< [7] Fault Interrupt Enable */ uint32_t RESERVED0 : 24; /*!< [31:8] */ } B; } hw_ftm_mode_t; /*! * @name Constants and macros for entire FTM_MODE register */ /*@{*/ #define HW_FTM_MODE_ADDR(x) ((x) + 0x54U) #define HW_FTM_MODE(x) (*(__IO hw_ftm_mode_t *) HW_FTM_MODE_ADDR(x)) #define HW_FTM_MODE_RD(x) (HW_FTM_MODE(x).U) #define HW_FTM_MODE_WR(x, v) (HW_FTM_MODE(x).U = (v)) #define HW_FTM_MODE_SET(x, v) (HW_FTM_MODE_WR(x, HW_FTM_MODE_RD(x) | (v))) #define HW_FTM_MODE_CLR(x, v) (HW_FTM_MODE_WR(x, HW_FTM_MODE_RD(x) & ~(v))) #define HW_FTM_MODE_TOG(x, v) (HW_FTM_MODE_WR(x, HW_FTM_MODE_RD(x) ^ (v))) /*@}*/ /* * Constants & macros for individual FTM_MODE bitfields */ /*! * @name Register FTM_MODE, field FTMEN[0] (RW) * * This field is write protected. It can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - Only the TPM-compatible registers (first set of registers) can be used * without any restriction. Do not use the FTM-specific registers. * - 1 - All registers including the FTM-specific registers (second set of * registers) are available for use with no restrictions. */ /*@{*/ #define BP_FTM_MODE_FTMEN (0U) /*!< Bit position for FTM_MODE_FTMEN. */ #define BM_FTM_MODE_FTMEN (0x00000001U) /*!< Bit mask for FTM_MODE_FTMEN. */ #define BS_FTM_MODE_FTMEN (1U) /*!< Bit field size in bits for FTM_MODE_FTMEN. */ /*! @brief Read current value of the FTM_MODE_FTMEN field. */ #define BR_FTM_MODE_FTMEN(x) (BITBAND_ACCESS32(HW_FTM_MODE_ADDR(x), BP_FTM_MODE_FTMEN)) /*! @brief Format value for bitfield FTM_MODE_FTMEN. */ #define BF_FTM_MODE_FTMEN(v) ((uint32_t)((uint32_t)(v) << BP_FTM_MODE_FTMEN) & BM_FTM_MODE_FTMEN) /*! @brief Set the FTMEN field to a new value. */ #define BW_FTM_MODE_FTMEN(x, v) (BITBAND_ACCESS32(HW_FTM_MODE_ADDR(x), BP_FTM_MODE_FTMEN) = (v)) /*@}*/ /*! * @name Register FTM_MODE, field INIT[1] (RW) * * When a 1 is written to INIT bit the channels output is initialized according * to the state of their corresponding bit in the OUTINIT register. Writing a 0 * to INIT bit has no effect. The INIT bit is always read as 0. */ /*@{*/ #define BP_FTM_MODE_INIT (1U) /*!< Bit position for FTM_MODE_INIT. */ #define BM_FTM_MODE_INIT (0x00000002U) /*!< Bit mask for FTM_MODE_INIT. */ #define BS_FTM_MODE_INIT (1U) /*!< Bit field size in bits for FTM_MODE_INIT. */ /*! @brief Read current value of the FTM_MODE_INIT field. */ #define BR_FTM_MODE_INIT(x) (BITBAND_ACCESS32(HW_FTM_MODE_ADDR(x), BP_FTM_MODE_INIT)) /*! @brief Format value for bitfield FTM_MODE_INIT. */ #define BF_FTM_MODE_INIT(v) ((uint32_t)((uint32_t)(v) << BP_FTM_MODE_INIT) & BM_FTM_MODE_INIT) /*! @brief Set the INIT field to a new value. */ #define BW_FTM_MODE_INIT(x, v) (BITBAND_ACCESS32(HW_FTM_MODE_ADDR(x), BP_FTM_MODE_INIT) = (v)) /*@}*/ /*! * @name Register FTM_MODE, field WPDIS[2] (RW) * * When write protection is enabled (WPDIS = 0), write protected bits cannot be * written. When write protection is disabled (WPDIS = 1), write protected bits * can be written. The WPDIS bit is the negation of the WPEN bit. WPDIS is cleared * when 1 is written to WPEN. WPDIS is set when WPEN bit is read as a 1 and then * 1 is written to WPDIS. Writing 0 to WPDIS has no effect. * * Values: * - 0 - Write protection is enabled. * - 1 - Write protection is disabled. */ /*@{*/ #define BP_FTM_MODE_WPDIS (2U) /*!< Bit position for FTM_MODE_WPDIS. */ #define BM_FTM_MODE_WPDIS (0x00000004U) /*!< Bit mask for FTM_MODE_WPDIS. */ #define BS_FTM_MODE_WPDIS (1U) /*!< Bit field size in bits for FTM_MODE_WPDIS. */ /*! @brief Read current value of the FTM_MODE_WPDIS field. */ #define BR_FTM_MODE_WPDIS(x) (BITBAND_ACCESS32(HW_FTM_MODE_ADDR(x), BP_FTM_MODE_WPDIS)) /*! @brief Format value for bitfield FTM_MODE_WPDIS. */ #define BF_FTM_MODE_WPDIS(v) ((uint32_t)((uint32_t)(v) << BP_FTM_MODE_WPDIS) & BM_FTM_MODE_WPDIS) /*! @brief Set the WPDIS field to a new value. */ #define BW_FTM_MODE_WPDIS(x, v) (BITBAND_ACCESS32(HW_FTM_MODE_ADDR(x), BP_FTM_MODE_WPDIS) = (v)) /*@}*/ /*! * @name Register FTM_MODE, field PWMSYNC[3] (RW) * * Selects which triggers can be used by MOD, CnV, OUTMASK, and FTM counter * synchronization. See PWM synchronization. The PWMSYNC bit configures the * synchronization when SYNCMODE is 0. * * Values: * - 0 - No restrictions. Software and hardware triggers can be used by MOD, * CnV, OUTMASK, and FTM counter synchronization. * - 1 - Software trigger can only be used by MOD and CnV synchronization, and * hardware triggers can only be used by OUTMASK and FTM counter * synchronization. */ /*@{*/ #define BP_FTM_MODE_PWMSYNC (3U) /*!< Bit position for FTM_MODE_PWMSYNC. */ #define BM_FTM_MODE_PWMSYNC (0x00000008U) /*!< Bit mask for FTM_MODE_PWMSYNC. */ #define BS_FTM_MODE_PWMSYNC (1U) /*!< Bit field size in bits for FTM_MODE_PWMSYNC. */ /*! @brief Read current value of the FTM_MODE_PWMSYNC field. */ #define BR_FTM_MODE_PWMSYNC(x) (BITBAND_ACCESS32(HW_FTM_MODE_ADDR(x), BP_FTM_MODE_PWMSYNC)) /*! @brief Format value for bitfield FTM_MODE_PWMSYNC. */ #define BF_FTM_MODE_PWMSYNC(v) ((uint32_t)((uint32_t)(v) << BP_FTM_MODE_PWMSYNC) & BM_FTM_MODE_PWMSYNC) /*! @brief Set the PWMSYNC field to a new value. */ #define BW_FTM_MODE_PWMSYNC(x, v) (BITBAND_ACCESS32(HW_FTM_MODE_ADDR(x), BP_FTM_MODE_PWMSYNC) = (v)) /*@}*/ /*! * @name Register FTM_MODE, field CAPTEST[4] (RW) * * Enables the capture test mode. This field is write protected. It can be * written only when MODE[WPDIS] = 1. * * Values: * - 0 - Capture test mode is disabled. * - 1 - Capture test mode is enabled. */ /*@{*/ #define BP_FTM_MODE_CAPTEST (4U) /*!< Bit position for FTM_MODE_CAPTEST. */ #define BM_FTM_MODE_CAPTEST (0x00000010U) /*!< Bit mask for FTM_MODE_CAPTEST. */ #define BS_FTM_MODE_CAPTEST (1U) /*!< Bit field size in bits for FTM_MODE_CAPTEST. */ /*! @brief Read current value of the FTM_MODE_CAPTEST field. */ #define BR_FTM_MODE_CAPTEST(x) (BITBAND_ACCESS32(HW_FTM_MODE_ADDR(x), BP_FTM_MODE_CAPTEST)) /*! @brief Format value for bitfield FTM_MODE_CAPTEST. */ #define BF_FTM_MODE_CAPTEST(v) ((uint32_t)((uint32_t)(v) << BP_FTM_MODE_CAPTEST) & BM_FTM_MODE_CAPTEST) /*! @brief Set the CAPTEST field to a new value. */ #define BW_FTM_MODE_CAPTEST(x, v) (BITBAND_ACCESS32(HW_FTM_MODE_ADDR(x), BP_FTM_MODE_CAPTEST) = (v)) /*@}*/ /*! * @name Register FTM_MODE, field FAULTM[6:5] (RW) * * Defines the FTM fault control mode. This field is write protected. It can be * written only when MODE[WPDIS] = 1. * * Values: * - 00 - Fault control is disabled for all channels. * - 01 - Fault control is enabled for even channels only (channels 0, 2, 4, and * 6), and the selected mode is the manual fault clearing. * - 10 - Fault control is enabled for all channels, and the selected mode is * the manual fault clearing. * - 11 - Fault control is enabled for all channels, and the selected mode is * the automatic fault clearing. */ /*@{*/ #define BP_FTM_MODE_FAULTM (5U) /*!< Bit position for FTM_MODE_FAULTM. */ #define BM_FTM_MODE_FAULTM (0x00000060U) /*!< Bit mask for FTM_MODE_FAULTM. */ #define BS_FTM_MODE_FAULTM (2U) /*!< Bit field size in bits for FTM_MODE_FAULTM. */ /*! @brief Read current value of the FTM_MODE_FAULTM field. */ #define BR_FTM_MODE_FAULTM(x) (HW_FTM_MODE(x).B.FAULTM) /*! @brief Format value for bitfield FTM_MODE_FAULTM. */ #define BF_FTM_MODE_FAULTM(v) ((uint32_t)((uint32_t)(v) << BP_FTM_MODE_FAULTM) & BM_FTM_MODE_FAULTM) /*! @brief Set the FAULTM field to a new value. */ #define BW_FTM_MODE_FAULTM(x, v) (HW_FTM_MODE_WR(x, (HW_FTM_MODE_RD(x) & ~BM_FTM_MODE_FAULTM) | BF_FTM_MODE_FAULTM(v))) /*@}*/ /*! * @name Register FTM_MODE, field FAULTIE[7] (RW) * * Enables the generation of an interrupt when a fault is detected by FTM and * the FTM fault control is enabled. * * Values: * - 0 - Fault control interrupt is disabled. * - 1 - Fault control interrupt is enabled. */ /*@{*/ #define BP_FTM_MODE_FAULTIE (7U) /*!< Bit position for FTM_MODE_FAULTIE. */ #define BM_FTM_MODE_FAULTIE (0x00000080U) /*!< Bit mask for FTM_MODE_FAULTIE. */ #define BS_FTM_MODE_FAULTIE (1U) /*!< Bit field size in bits for FTM_MODE_FAULTIE. */ /*! @brief Read current value of the FTM_MODE_FAULTIE field. */ #define BR_FTM_MODE_FAULTIE(x) (BITBAND_ACCESS32(HW_FTM_MODE_ADDR(x), BP_FTM_MODE_FAULTIE)) /*! @brief Format value for bitfield FTM_MODE_FAULTIE. */ #define BF_FTM_MODE_FAULTIE(v) ((uint32_t)((uint32_t)(v) << BP_FTM_MODE_FAULTIE) & BM_FTM_MODE_FAULTIE) /*! @brief Set the FAULTIE field to a new value. */ #define BW_FTM_MODE_FAULTIE(x, v) (BITBAND_ACCESS32(HW_FTM_MODE_ADDR(x), BP_FTM_MODE_FAULTIE) = (v)) /*@}*/ /******************************************************************************* * HW_FTM_SYNC - Synchronization ******************************************************************************/ /*! * @brief HW_FTM_SYNC - Synchronization (RW) * * Reset value: 0x00000000U * * This register configures the PWM synchronization. A synchronization event can * perform the synchronized update of MOD, CV, and OUTMASK registers with the * value of their write buffer and the FTM counter initialization. The software * trigger, SWSYNC bit, and hardware triggers TRIG0, TRIG1, and TRIG2 bits have a * potential conflict if used together when SYNCMODE = 0. Use only hardware or * software triggers but not both at the same time, otherwise unpredictable behavior * is likely to happen. The selection of the loading point, CNTMAX and CNTMIN * bits, is intended to provide the update of MOD, CNTIN, and CnV registers across * all enabled channels simultaneously. The use of the loading point selection * together with SYNCMODE = 0 and hardware trigger selection, TRIG0, TRIG1, or TRIG2 * bits, is likely to result in unpredictable behavior. The synchronization * event selection also depends on the PWMSYNC (MODE register) and SYNCMODE (SYNCONF * register) bits. See PWM synchronization. */ typedef union _hw_ftm_sync { uint32_t U; struct _hw_ftm_sync_bitfields { uint32_t CNTMIN : 1; /*!< [0] Minimum Loading Point Enable */ uint32_t CNTMAX : 1; /*!< [1] Maximum Loading Point Enable */ uint32_t REINIT : 1; /*!< [2] FTM Counter Reinitialization By * Synchronization (FTM counter synchronization) */ uint32_t SYNCHOM : 1; /*!< [3] Output Mask Synchronization */ uint32_t TRIG0 : 1; /*!< [4] PWM Synchronization Hardware Trigger 0 */ uint32_t TRIG1 : 1; /*!< [5] PWM Synchronization Hardware Trigger 1 */ uint32_t TRIG2 : 1; /*!< [6] PWM Synchronization Hardware Trigger 2 */ uint32_t SWSYNC : 1; /*!< [7] PWM Synchronization Software Trigger */ uint32_t RESERVED0 : 24; /*!< [31:8] */ } B; } hw_ftm_sync_t; /*! * @name Constants and macros for entire FTM_SYNC register */ /*@{*/ #define HW_FTM_SYNC_ADDR(x) ((x) + 0x58U) #define HW_FTM_SYNC(x) (*(__IO hw_ftm_sync_t *) HW_FTM_SYNC_ADDR(x)) #define HW_FTM_SYNC_RD(x) (HW_FTM_SYNC(x).U) #define HW_FTM_SYNC_WR(x, v) (HW_FTM_SYNC(x).U = (v)) #define HW_FTM_SYNC_SET(x, v) (HW_FTM_SYNC_WR(x, HW_FTM_SYNC_RD(x) | (v))) #define HW_FTM_SYNC_CLR(x, v) (HW_FTM_SYNC_WR(x, HW_FTM_SYNC_RD(x) & ~(v))) #define HW_FTM_SYNC_TOG(x, v) (HW_FTM_SYNC_WR(x, HW_FTM_SYNC_RD(x) ^ (v))) /*@}*/ /* * Constants & macros for individual FTM_SYNC bitfields */ /*! * @name Register FTM_SYNC, field CNTMIN[0] (RW) * * Selects the minimum loading point to PWM synchronization. See Boundary cycle * and loading points. If CNTMIN is one, the selected loading point is when the * FTM counter reaches its minimum value (CNTIN register). * * Values: * - 0 - The minimum loading point is disabled. * - 1 - The minimum loading point is enabled. */ /*@{*/ #define BP_FTM_SYNC_CNTMIN (0U) /*!< Bit position for FTM_SYNC_CNTMIN. */ #define BM_FTM_SYNC_CNTMIN (0x00000001U) /*!< Bit mask for FTM_SYNC_CNTMIN. */ #define BS_FTM_SYNC_CNTMIN (1U) /*!< Bit field size in bits for FTM_SYNC_CNTMIN. */ /*! @brief Read current value of the FTM_SYNC_CNTMIN field. */ #define BR_FTM_SYNC_CNTMIN(x) (BITBAND_ACCESS32(HW_FTM_SYNC_ADDR(x), BP_FTM_SYNC_CNTMIN)) /*! @brief Format value for bitfield FTM_SYNC_CNTMIN. */ #define BF_FTM_SYNC_CNTMIN(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SYNC_CNTMIN) & BM_FTM_SYNC_CNTMIN) /*! @brief Set the CNTMIN field to a new value. */ #define BW_FTM_SYNC_CNTMIN(x, v) (BITBAND_ACCESS32(HW_FTM_SYNC_ADDR(x), BP_FTM_SYNC_CNTMIN) = (v)) /*@}*/ /*! * @name Register FTM_SYNC, field CNTMAX[1] (RW) * * Selects the maximum loading point to PWM synchronization. See Boundary cycle * and loading points. If CNTMAX is 1, the selected loading point is when the FTM * counter reaches its maximum value (MOD register). * * Values: * - 0 - The maximum loading point is disabled. * - 1 - The maximum loading point is enabled. */ /*@{*/ #define BP_FTM_SYNC_CNTMAX (1U) /*!< Bit position for FTM_SYNC_CNTMAX. */ #define BM_FTM_SYNC_CNTMAX (0x00000002U) /*!< Bit mask for FTM_SYNC_CNTMAX. */ #define BS_FTM_SYNC_CNTMAX (1U) /*!< Bit field size in bits for FTM_SYNC_CNTMAX. */ /*! @brief Read current value of the FTM_SYNC_CNTMAX field. */ #define BR_FTM_SYNC_CNTMAX(x) (BITBAND_ACCESS32(HW_FTM_SYNC_ADDR(x), BP_FTM_SYNC_CNTMAX)) /*! @brief Format value for bitfield FTM_SYNC_CNTMAX. */ #define BF_FTM_SYNC_CNTMAX(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SYNC_CNTMAX) & BM_FTM_SYNC_CNTMAX) /*! @brief Set the CNTMAX field to a new value. */ #define BW_FTM_SYNC_CNTMAX(x, v) (BITBAND_ACCESS32(HW_FTM_SYNC_ADDR(x), BP_FTM_SYNC_CNTMAX) = (v)) /*@}*/ /*! * @name Register FTM_SYNC, field REINIT[2] (RW) * * Determines if the FTM counter is reinitialized when the selected trigger for * the synchronization is detected. The REINIT bit configures the synchronization * when SYNCMODE is zero. * * Values: * - 0 - FTM counter continues to count normally. * - 1 - FTM counter is updated with its initial value when the selected trigger * is detected. */ /*@{*/ #define BP_FTM_SYNC_REINIT (2U) /*!< Bit position for FTM_SYNC_REINIT. */ #define BM_FTM_SYNC_REINIT (0x00000004U) /*!< Bit mask for FTM_SYNC_REINIT. */ #define BS_FTM_SYNC_REINIT (1U) /*!< Bit field size in bits for FTM_SYNC_REINIT. */ /*! @brief Read current value of the FTM_SYNC_REINIT field. */ #define BR_FTM_SYNC_REINIT(x) (BITBAND_ACCESS32(HW_FTM_SYNC_ADDR(x), BP_FTM_SYNC_REINIT)) /*! @brief Format value for bitfield FTM_SYNC_REINIT. */ #define BF_FTM_SYNC_REINIT(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SYNC_REINIT) & BM_FTM_SYNC_REINIT) /*! @brief Set the REINIT field to a new value. */ #define BW_FTM_SYNC_REINIT(x, v) (BITBAND_ACCESS32(HW_FTM_SYNC_ADDR(x), BP_FTM_SYNC_REINIT) = (v)) /*@}*/ /*! * @name Register FTM_SYNC, field SYNCHOM[3] (RW) * * Selects when the OUTMASK register is updated with the value of its buffer. * * Values: * - 0 - OUTMASK register is updated with the value of its buffer in all rising * edges of the system clock. * - 1 - OUTMASK register is updated with the value of its buffer only by the * PWM synchronization. */ /*@{*/ #define BP_FTM_SYNC_SYNCHOM (3U) /*!< Bit position for FTM_SYNC_SYNCHOM. */ #define BM_FTM_SYNC_SYNCHOM (0x00000008U) /*!< Bit mask for FTM_SYNC_SYNCHOM. */ #define BS_FTM_SYNC_SYNCHOM (1U) /*!< Bit field size in bits for FTM_SYNC_SYNCHOM. */ /*! @brief Read current value of the FTM_SYNC_SYNCHOM field. */ #define BR_FTM_SYNC_SYNCHOM(x) (BITBAND_ACCESS32(HW_FTM_SYNC_ADDR(x), BP_FTM_SYNC_SYNCHOM)) /*! @brief Format value for bitfield FTM_SYNC_SYNCHOM. */ #define BF_FTM_SYNC_SYNCHOM(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SYNC_SYNCHOM) & BM_FTM_SYNC_SYNCHOM) /*! @brief Set the SYNCHOM field to a new value. */ #define BW_FTM_SYNC_SYNCHOM(x, v) (BITBAND_ACCESS32(HW_FTM_SYNC_ADDR(x), BP_FTM_SYNC_SYNCHOM) = (v)) /*@}*/ /*! * @name Register FTM_SYNC, field TRIG0[4] (RW) * * Enables hardware trigger 0 to the PWM synchronization. Hardware trigger 0 * occurs when a rising edge is detected at the trigger 0 input signal. * * Values: * - 0 - Trigger is disabled. * - 1 - Trigger is enabled. */ /*@{*/ #define BP_FTM_SYNC_TRIG0 (4U) /*!< Bit position for FTM_SYNC_TRIG0. */ #define BM_FTM_SYNC_TRIG0 (0x00000010U) /*!< Bit mask for FTM_SYNC_TRIG0. */ #define BS_FTM_SYNC_TRIG0 (1U) /*!< Bit field size in bits for FTM_SYNC_TRIG0. */ /*! @brief Read current value of the FTM_SYNC_TRIG0 field. */ #define BR_FTM_SYNC_TRIG0(x) (BITBAND_ACCESS32(HW_FTM_SYNC_ADDR(x), BP_FTM_SYNC_TRIG0)) /*! @brief Format value for bitfield FTM_SYNC_TRIG0. */ #define BF_FTM_SYNC_TRIG0(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SYNC_TRIG0) & BM_FTM_SYNC_TRIG0) /*! @brief Set the TRIG0 field to a new value. */ #define BW_FTM_SYNC_TRIG0(x, v) (BITBAND_ACCESS32(HW_FTM_SYNC_ADDR(x), BP_FTM_SYNC_TRIG0) = (v)) /*@}*/ /*! * @name Register FTM_SYNC, field TRIG1[5] (RW) * * Enables hardware trigger 1 to the PWM synchronization. Hardware trigger 1 * happens when a rising edge is detected at the trigger 1 input signal. * * Values: * - 0 - Trigger is disabled. * - 1 - Trigger is enabled. */ /*@{*/ #define BP_FTM_SYNC_TRIG1 (5U) /*!< Bit position for FTM_SYNC_TRIG1. */ #define BM_FTM_SYNC_TRIG1 (0x00000020U) /*!< Bit mask for FTM_SYNC_TRIG1. */ #define BS_FTM_SYNC_TRIG1 (1U) /*!< Bit field size in bits for FTM_SYNC_TRIG1. */ /*! @brief Read current value of the FTM_SYNC_TRIG1 field. */ #define BR_FTM_SYNC_TRIG1(x) (BITBAND_ACCESS32(HW_FTM_SYNC_ADDR(x), BP_FTM_SYNC_TRIG1)) /*! @brief Format value for bitfield FTM_SYNC_TRIG1. */ #define BF_FTM_SYNC_TRIG1(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SYNC_TRIG1) & BM_FTM_SYNC_TRIG1) /*! @brief Set the TRIG1 field to a new value. */ #define BW_FTM_SYNC_TRIG1(x, v) (BITBAND_ACCESS32(HW_FTM_SYNC_ADDR(x), BP_FTM_SYNC_TRIG1) = (v)) /*@}*/ /*! * @name Register FTM_SYNC, field TRIG2[6] (RW) * * Enables hardware trigger 2 to the PWM synchronization. Hardware trigger 2 * happens when a rising edge is detected at the trigger 2 input signal. * * Values: * - 0 - Trigger is disabled. * - 1 - Trigger is enabled. */ /*@{*/ #define BP_FTM_SYNC_TRIG2 (6U) /*!< Bit position for FTM_SYNC_TRIG2. */ #define BM_FTM_SYNC_TRIG2 (0x00000040U) /*!< Bit mask for FTM_SYNC_TRIG2. */ #define BS_FTM_SYNC_TRIG2 (1U) /*!< Bit field size in bits for FTM_SYNC_TRIG2. */ /*! @brief Read current value of the FTM_SYNC_TRIG2 field. */ #define BR_FTM_SYNC_TRIG2(x) (BITBAND_ACCESS32(HW_FTM_SYNC_ADDR(x), BP_FTM_SYNC_TRIG2)) /*! @brief Format value for bitfield FTM_SYNC_TRIG2. */ #define BF_FTM_SYNC_TRIG2(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SYNC_TRIG2) & BM_FTM_SYNC_TRIG2) /*! @brief Set the TRIG2 field to a new value. */ #define BW_FTM_SYNC_TRIG2(x, v) (BITBAND_ACCESS32(HW_FTM_SYNC_ADDR(x), BP_FTM_SYNC_TRIG2) = (v)) /*@}*/ /*! * @name Register FTM_SYNC, field SWSYNC[7] (RW) * * Selects the software trigger as the PWM synchronization trigger. The software * trigger happens when a 1 is written to SWSYNC bit. * * Values: * - 0 - Software trigger is not selected. * - 1 - Software trigger is selected. */ /*@{*/ #define BP_FTM_SYNC_SWSYNC (7U) /*!< Bit position for FTM_SYNC_SWSYNC. */ #define BM_FTM_SYNC_SWSYNC (0x00000080U) /*!< Bit mask for FTM_SYNC_SWSYNC. */ #define BS_FTM_SYNC_SWSYNC (1U) /*!< Bit field size in bits for FTM_SYNC_SWSYNC. */ /*! @brief Read current value of the FTM_SYNC_SWSYNC field. */ #define BR_FTM_SYNC_SWSYNC(x) (BITBAND_ACCESS32(HW_FTM_SYNC_ADDR(x), BP_FTM_SYNC_SWSYNC)) /*! @brief Format value for bitfield FTM_SYNC_SWSYNC. */ #define BF_FTM_SYNC_SWSYNC(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SYNC_SWSYNC) & BM_FTM_SYNC_SWSYNC) /*! @brief Set the SWSYNC field to a new value. */ #define BW_FTM_SYNC_SWSYNC(x, v) (BITBAND_ACCESS32(HW_FTM_SYNC_ADDR(x), BP_FTM_SYNC_SWSYNC) = (v)) /*@}*/ /******************************************************************************* * HW_FTM_OUTINIT - Initial State For Channels Output ******************************************************************************/ /*! * @brief HW_FTM_OUTINIT - Initial State For Channels Output (RW) * * Reset value: 0x00000000U */ typedef union _hw_ftm_outinit { uint32_t U; struct _hw_ftm_outinit_bitfields { uint32_t CH0OI : 1; /*!< [0] Channel 0 Output Initialization Value */ uint32_t CH1OI : 1; /*!< [1] Channel 1 Output Initialization Value */ uint32_t CH2OI : 1; /*!< [2] Channel 2 Output Initialization Value */ uint32_t CH3OI : 1; /*!< [3] Channel 3 Output Initialization Value */ uint32_t CH4OI : 1; /*!< [4] Channel 4 Output Initialization Value */ uint32_t CH5OI : 1; /*!< [5] Channel 5 Output Initialization Value */ uint32_t CH6OI : 1; /*!< [6] Channel 6 Output Initialization Value */ uint32_t CH7OI : 1; /*!< [7] Channel 7 Output Initialization Value */ uint32_t RESERVED0 : 24; /*!< [31:8] */ } B; } hw_ftm_outinit_t; /*! * @name Constants and macros for entire FTM_OUTINIT register */ /*@{*/ #define HW_FTM_OUTINIT_ADDR(x) ((x) + 0x5CU) #define HW_FTM_OUTINIT(x) (*(__IO hw_ftm_outinit_t *) HW_FTM_OUTINIT_ADDR(x)) #define HW_FTM_OUTINIT_RD(x) (HW_FTM_OUTINIT(x).U) #define HW_FTM_OUTINIT_WR(x, v) (HW_FTM_OUTINIT(x).U = (v)) #define HW_FTM_OUTINIT_SET(x, v) (HW_FTM_OUTINIT_WR(x, HW_FTM_OUTINIT_RD(x) | (v))) #define HW_FTM_OUTINIT_CLR(x, v) (HW_FTM_OUTINIT_WR(x, HW_FTM_OUTINIT_RD(x) & ~(v))) #define HW_FTM_OUTINIT_TOG(x, v) (HW_FTM_OUTINIT_WR(x, HW_FTM_OUTINIT_RD(x) ^ (v))) /*@}*/ /* * Constants & macros for individual FTM_OUTINIT bitfields */ /*! * @name Register FTM_OUTINIT, field CH0OI[0] (RW) * * Selects the value that is forced into the channel output when the * initialization occurs. * * Values: * - 0 - The initialization value is 0. * - 1 - The initialization value is 1. */ /*@{*/ #define BP_FTM_OUTINIT_CH0OI (0U) /*!< Bit position for FTM_OUTINIT_CH0OI. */ #define BM_FTM_OUTINIT_CH0OI (0x00000001U) /*!< Bit mask for FTM_OUTINIT_CH0OI. */ #define BS_FTM_OUTINIT_CH0OI (1U) /*!< Bit field size in bits for FTM_OUTINIT_CH0OI. */ /*! @brief Read current value of the FTM_OUTINIT_CH0OI field. */ #define BR_FTM_OUTINIT_CH0OI(x) (BITBAND_ACCESS32(HW_FTM_OUTINIT_ADDR(x), BP_FTM_OUTINIT_CH0OI)) /*! @brief Format value for bitfield FTM_OUTINIT_CH0OI. */ #define BF_FTM_OUTINIT_CH0OI(v) ((uint32_t)((uint32_t)(v) << BP_FTM_OUTINIT_CH0OI) & BM_FTM_OUTINIT_CH0OI) /*! @brief Set the CH0OI field to a new value. */ #define BW_FTM_OUTINIT_CH0OI(x, v) (BITBAND_ACCESS32(HW_FTM_OUTINIT_ADDR(x), BP_FTM_OUTINIT_CH0OI) = (v)) /*@}*/ /*! * @name Register FTM_OUTINIT, field CH1OI[1] (RW) * * Selects the value that is forced into the channel output when the * initialization occurs. * * Values: * - 0 - The initialization value is 0. * - 1 - The initialization value is 1. */ /*@{*/ #define BP_FTM_OUTINIT_CH1OI (1U) /*!< Bit position for FTM_OUTINIT_CH1OI. */ #define BM_FTM_OUTINIT_CH1OI (0x00000002U) /*!< Bit mask for FTM_OUTINIT_CH1OI. */ #define BS_FTM_OUTINIT_CH1OI (1U) /*!< Bit field size in bits for FTM_OUTINIT_CH1OI. */ /*! @brief Read current value of the FTM_OUTINIT_CH1OI field. */ #define BR_FTM_OUTINIT_CH1OI(x) (BITBAND_ACCESS32(HW_FTM_OUTINIT_ADDR(x), BP_FTM_OUTINIT_CH1OI)) /*! @brief Format value for bitfield FTM_OUTINIT_CH1OI. */ #define BF_FTM_OUTINIT_CH1OI(v) ((uint32_t)((uint32_t)(v) << BP_FTM_OUTINIT_CH1OI) & BM_FTM_OUTINIT_CH1OI) /*! @brief Set the CH1OI field to a new value. */ #define BW_FTM_OUTINIT_CH1OI(x, v) (BITBAND_ACCESS32(HW_FTM_OUTINIT_ADDR(x), BP_FTM_OUTINIT_CH1OI) = (v)) /*@}*/ /*! * @name Register FTM_OUTINIT, field CH2OI[2] (RW) * * Selects the value that is forced into the channel output when the * initialization occurs. * * Values: * - 0 - The initialization value is 0. * - 1 - The initialization value is 1. */ /*@{*/ #define BP_FTM_OUTINIT_CH2OI (2U) /*!< Bit position for FTM_OUTINIT_CH2OI. */ #define BM_FTM_OUTINIT_CH2OI (0x00000004U) /*!< Bit mask for FTM_OUTINIT_CH2OI. */ #define BS_FTM_OUTINIT_CH2OI (1U) /*!< Bit field size in bits for FTM_OUTINIT_CH2OI. */ /*! @brief Read current value of the FTM_OUTINIT_CH2OI field. */ #define BR_FTM_OUTINIT_CH2OI(x) (BITBAND_ACCESS32(HW_FTM_OUTINIT_ADDR(x), BP_FTM_OUTINIT_CH2OI)) /*! @brief Format value for bitfield FTM_OUTINIT_CH2OI. */ #define BF_FTM_OUTINIT_CH2OI(v) ((uint32_t)((uint32_t)(v) << BP_FTM_OUTINIT_CH2OI) & BM_FTM_OUTINIT_CH2OI) /*! @brief Set the CH2OI field to a new value. */ #define BW_FTM_OUTINIT_CH2OI(x, v) (BITBAND_ACCESS32(HW_FTM_OUTINIT_ADDR(x), BP_FTM_OUTINIT_CH2OI) = (v)) /*@}*/ /*! * @name Register FTM_OUTINIT, field CH3OI[3] (RW) * * Selects the value that is forced into the channel output when the * initialization occurs. * * Values: * - 0 - The initialization value is 0. * - 1 - The initialization value is 1. */ /*@{*/ #define BP_FTM_OUTINIT_CH3OI (3U) /*!< Bit position for FTM_OUTINIT_CH3OI. */ #define BM_FTM_OUTINIT_CH3OI (0x00000008U) /*!< Bit mask for FTM_OUTINIT_CH3OI. */ #define BS_FTM_OUTINIT_CH3OI (1U) /*!< Bit field size in bits for FTM_OUTINIT_CH3OI. */ /*! @brief Read current value of the FTM_OUTINIT_CH3OI field. */ #define BR_FTM_OUTINIT_CH3OI(x) (BITBAND_ACCESS32(HW_FTM_OUTINIT_ADDR(x), BP_FTM_OUTINIT_CH3OI)) /*! @brief Format value for bitfield FTM_OUTINIT_CH3OI. */ #define BF_FTM_OUTINIT_CH3OI(v) ((uint32_t)((uint32_t)(v) << BP_FTM_OUTINIT_CH3OI) & BM_FTM_OUTINIT_CH3OI) /*! @brief Set the CH3OI field to a new value. */ #define BW_FTM_OUTINIT_CH3OI(x, v) (BITBAND_ACCESS32(HW_FTM_OUTINIT_ADDR(x), BP_FTM_OUTINIT_CH3OI) = (v)) /*@}*/ /*! * @name Register FTM_OUTINIT, field CH4OI[4] (RW) * * Selects the value that is forced into the channel output when the * initialization occurs. * * Values: * - 0 - The initialization value is 0. * - 1 - The initialization value is 1. */ /*@{*/ #define BP_FTM_OUTINIT_CH4OI (4U) /*!< Bit position for FTM_OUTINIT_CH4OI. */ #define BM_FTM_OUTINIT_CH4OI (0x00000010U) /*!< Bit mask for FTM_OUTINIT_CH4OI. */ #define BS_FTM_OUTINIT_CH4OI (1U) /*!< Bit field size in bits for FTM_OUTINIT_CH4OI. */ /*! @brief Read current value of the FTM_OUTINIT_CH4OI field. */ #define BR_FTM_OUTINIT_CH4OI(x) (BITBAND_ACCESS32(HW_FTM_OUTINIT_ADDR(x), BP_FTM_OUTINIT_CH4OI)) /*! @brief Format value for bitfield FTM_OUTINIT_CH4OI. */ #define BF_FTM_OUTINIT_CH4OI(v) ((uint32_t)((uint32_t)(v) << BP_FTM_OUTINIT_CH4OI) & BM_FTM_OUTINIT_CH4OI) /*! @brief Set the CH4OI field to a new value. */ #define BW_FTM_OUTINIT_CH4OI(x, v) (BITBAND_ACCESS32(HW_FTM_OUTINIT_ADDR(x), BP_FTM_OUTINIT_CH4OI) = (v)) /*@}*/ /*! * @name Register FTM_OUTINIT, field CH5OI[5] (RW) * * Selects the value that is forced into the channel output when the * initialization occurs. * * Values: * - 0 - The initialization value is 0. * - 1 - The initialization value is 1. */ /*@{*/ #define BP_FTM_OUTINIT_CH5OI (5U) /*!< Bit position for FTM_OUTINIT_CH5OI. */ #define BM_FTM_OUTINIT_CH5OI (0x00000020U) /*!< Bit mask for FTM_OUTINIT_CH5OI. */ #define BS_FTM_OUTINIT_CH5OI (1U) /*!< Bit field size in bits for FTM_OUTINIT_CH5OI. */ /*! @brief Read current value of the FTM_OUTINIT_CH5OI field. */ #define BR_FTM_OUTINIT_CH5OI(x) (BITBAND_ACCESS32(HW_FTM_OUTINIT_ADDR(x), BP_FTM_OUTINIT_CH5OI)) /*! @brief Format value for bitfield FTM_OUTINIT_CH5OI. */ #define BF_FTM_OUTINIT_CH5OI(v) ((uint32_t)((uint32_t)(v) << BP_FTM_OUTINIT_CH5OI) & BM_FTM_OUTINIT_CH5OI) /*! @brief Set the CH5OI field to a new value. */ #define BW_FTM_OUTINIT_CH5OI(x, v) (BITBAND_ACCESS32(HW_FTM_OUTINIT_ADDR(x), BP_FTM_OUTINIT_CH5OI) = (v)) /*@}*/ /*! * @name Register FTM_OUTINIT, field CH6OI[6] (RW) * * Selects the value that is forced into the channel output when the * initialization occurs. * * Values: * - 0 - The initialization value is 0. * - 1 - The initialization value is 1. */ /*@{*/ #define BP_FTM_OUTINIT_CH6OI (6U) /*!< Bit position for FTM_OUTINIT_CH6OI. */ #define BM_FTM_OUTINIT_CH6OI (0x00000040U) /*!< Bit mask for FTM_OUTINIT_CH6OI. */ #define BS_FTM_OUTINIT_CH6OI (1U) /*!< Bit field size in bits for FTM_OUTINIT_CH6OI. */ /*! @brief Read current value of the FTM_OUTINIT_CH6OI field. */ #define BR_FTM_OUTINIT_CH6OI(x) (BITBAND_ACCESS32(HW_FTM_OUTINIT_ADDR(x), BP_FTM_OUTINIT_CH6OI)) /*! @brief Format value for bitfield FTM_OUTINIT_CH6OI. */ #define BF_FTM_OUTINIT_CH6OI(v) ((uint32_t)((uint32_t)(v) << BP_FTM_OUTINIT_CH6OI) & BM_FTM_OUTINIT_CH6OI) /*! @brief Set the CH6OI field to a new value. */ #define BW_FTM_OUTINIT_CH6OI(x, v) (BITBAND_ACCESS32(HW_FTM_OUTINIT_ADDR(x), BP_FTM_OUTINIT_CH6OI) = (v)) /*@}*/ /*! * @name Register FTM_OUTINIT, field CH7OI[7] (RW) * * Selects the value that is forced into the channel output when the * initialization occurs. * * Values: * - 0 - The initialization value is 0. * - 1 - The initialization value is 1. */ /*@{*/ #define BP_FTM_OUTINIT_CH7OI (7U) /*!< Bit position for FTM_OUTINIT_CH7OI. */ #define BM_FTM_OUTINIT_CH7OI (0x00000080U) /*!< Bit mask for FTM_OUTINIT_CH7OI. */ #define BS_FTM_OUTINIT_CH7OI (1U) /*!< Bit field size in bits for FTM_OUTINIT_CH7OI. */ /*! @brief Read current value of the FTM_OUTINIT_CH7OI field. */ #define BR_FTM_OUTINIT_CH7OI(x) (BITBAND_ACCESS32(HW_FTM_OUTINIT_ADDR(x), BP_FTM_OUTINIT_CH7OI)) /*! @brief Format value for bitfield FTM_OUTINIT_CH7OI. */ #define BF_FTM_OUTINIT_CH7OI(v) ((uint32_t)((uint32_t)(v) << BP_FTM_OUTINIT_CH7OI) & BM_FTM_OUTINIT_CH7OI) /*! @brief Set the CH7OI field to a new value. */ #define BW_FTM_OUTINIT_CH7OI(x, v) (BITBAND_ACCESS32(HW_FTM_OUTINIT_ADDR(x), BP_FTM_OUTINIT_CH7OI) = (v)) /*@}*/ /******************************************************************************* * HW_FTM_OUTMASK - Output Mask ******************************************************************************/ /*! * @brief HW_FTM_OUTMASK - Output Mask (RW) * * Reset value: 0x00000000U * * This register provides a mask for each FTM channel. The mask of a channel * determines if its output responds, that is, it is masked or not, when a match * occurs. This feature is used for BLDC control where the PWM signal is presented * to an electric motor at specific times to provide electronic commutation. Any * write to the OUTMASK register, stores the value in its write buffer. The * register is updated with the value of its write buffer according to PWM * synchronization. */ typedef union _hw_ftm_outmask { uint32_t U; struct _hw_ftm_outmask_bitfields { uint32_t CH0OM : 1; /*!< [0] Channel 0 Output Mask */ uint32_t CH1OM : 1; /*!< [1] Channel 1 Output Mask */ uint32_t CH2OM : 1; /*!< [2] Channel 2 Output Mask */ uint32_t CH3OM : 1; /*!< [3] Channel 3 Output Mask */ uint32_t CH4OM : 1; /*!< [4] Channel 4 Output Mask */ uint32_t CH5OM : 1; /*!< [5] Channel 5 Output Mask */ uint32_t CH6OM : 1; /*!< [6] Channel 6 Output Mask */ uint32_t CH7OM : 1; /*!< [7] Channel 7 Output Mask */ uint32_t RESERVED0 : 24; /*!< [31:8] */ } B; } hw_ftm_outmask_t; /*! * @name Constants and macros for entire FTM_OUTMASK register */ /*@{*/ #define HW_FTM_OUTMASK_ADDR(x) ((x) + 0x60U) #define HW_FTM_OUTMASK(x) (*(__IO hw_ftm_outmask_t *) HW_FTM_OUTMASK_ADDR(x)) #define HW_FTM_OUTMASK_RD(x) (HW_FTM_OUTMASK(x).U) #define HW_FTM_OUTMASK_WR(x, v) (HW_FTM_OUTMASK(x).U = (v)) #define HW_FTM_OUTMASK_SET(x, v) (HW_FTM_OUTMASK_WR(x, HW_FTM_OUTMASK_RD(x) | (v))) #define HW_FTM_OUTMASK_CLR(x, v) (HW_FTM_OUTMASK_WR(x, HW_FTM_OUTMASK_RD(x) & ~(v))) #define HW_FTM_OUTMASK_TOG(x, v) (HW_FTM_OUTMASK_WR(x, HW_FTM_OUTMASK_RD(x) ^ (v))) /*@}*/ /* * Constants & macros for individual FTM_OUTMASK bitfields */ /*! * @name Register FTM_OUTMASK, field CH0OM[0] (RW) * * Defines if the channel output is masked or unmasked. * * Values: * - 0 - Channel output is not masked. It continues to operate normally. * - 1 - Channel output is masked. It is forced to its inactive state. */ /*@{*/ #define BP_FTM_OUTMASK_CH0OM (0U) /*!< Bit position for FTM_OUTMASK_CH0OM. */ #define BM_FTM_OUTMASK_CH0OM (0x00000001U) /*!< Bit mask for FTM_OUTMASK_CH0OM. */ #define BS_FTM_OUTMASK_CH0OM (1U) /*!< Bit field size in bits for FTM_OUTMASK_CH0OM. */ /*! @brief Read current value of the FTM_OUTMASK_CH0OM field. */ #define BR_FTM_OUTMASK_CH0OM(x) (BITBAND_ACCESS32(HW_FTM_OUTMASK_ADDR(x), BP_FTM_OUTMASK_CH0OM)) /*! @brief Format value for bitfield FTM_OUTMASK_CH0OM. */ #define BF_FTM_OUTMASK_CH0OM(v) ((uint32_t)((uint32_t)(v) << BP_FTM_OUTMASK_CH0OM) & BM_FTM_OUTMASK_CH0OM) /*! @brief Set the CH0OM field to a new value. */ #define BW_FTM_OUTMASK_CH0OM(x, v) (BITBAND_ACCESS32(HW_FTM_OUTMASK_ADDR(x), BP_FTM_OUTMASK_CH0OM) = (v)) /*@}*/ /*! * @name Register FTM_OUTMASK, field CH1OM[1] (RW) * * Defines if the channel output is masked or unmasked. * * Values: * - 0 - Channel output is not masked. It continues to operate normally. * - 1 - Channel output is masked. It is forced to its inactive state. */ /*@{*/ #define BP_FTM_OUTMASK_CH1OM (1U) /*!< Bit position for FTM_OUTMASK_CH1OM. */ #define BM_FTM_OUTMASK_CH1OM (0x00000002U) /*!< Bit mask for FTM_OUTMASK_CH1OM. */ #define BS_FTM_OUTMASK_CH1OM (1U) /*!< Bit field size in bits for FTM_OUTMASK_CH1OM. */ /*! @brief Read current value of the FTM_OUTMASK_CH1OM field. */ #define BR_FTM_OUTMASK_CH1OM(x) (BITBAND_ACCESS32(HW_FTM_OUTMASK_ADDR(x), BP_FTM_OUTMASK_CH1OM)) /*! @brief Format value for bitfield FTM_OUTMASK_CH1OM. */ #define BF_FTM_OUTMASK_CH1OM(v) ((uint32_t)((uint32_t)(v) << BP_FTM_OUTMASK_CH1OM) & BM_FTM_OUTMASK_CH1OM) /*! @brief Set the CH1OM field to a new value. */ #define BW_FTM_OUTMASK_CH1OM(x, v) (BITBAND_ACCESS32(HW_FTM_OUTMASK_ADDR(x), BP_FTM_OUTMASK_CH1OM) = (v)) /*@}*/ /*! * @name Register FTM_OUTMASK, field CH2OM[2] (RW) * * Defines if the channel output is masked or unmasked. * * Values: * - 0 - Channel output is not masked. It continues to operate normally. * - 1 - Channel output is masked. It is forced to its inactive state. */ /*@{*/ #define BP_FTM_OUTMASK_CH2OM (2U) /*!< Bit position for FTM_OUTMASK_CH2OM. */ #define BM_FTM_OUTMASK_CH2OM (0x00000004U) /*!< Bit mask for FTM_OUTMASK_CH2OM. */ #define BS_FTM_OUTMASK_CH2OM (1U) /*!< Bit field size in bits for FTM_OUTMASK_CH2OM. */ /*! @brief Read current value of the FTM_OUTMASK_CH2OM field. */ #define BR_FTM_OUTMASK_CH2OM(x) (BITBAND_ACCESS32(HW_FTM_OUTMASK_ADDR(x), BP_FTM_OUTMASK_CH2OM)) /*! @brief Format value for bitfield FTM_OUTMASK_CH2OM. */ #define BF_FTM_OUTMASK_CH2OM(v) ((uint32_t)((uint32_t)(v) << BP_FTM_OUTMASK_CH2OM) & BM_FTM_OUTMASK_CH2OM) /*! @brief Set the CH2OM field to a new value. */ #define BW_FTM_OUTMASK_CH2OM(x, v) (BITBAND_ACCESS32(HW_FTM_OUTMASK_ADDR(x), BP_FTM_OUTMASK_CH2OM) = (v)) /*@}*/ /*! * @name Register FTM_OUTMASK, field CH3OM[3] (RW) * * Defines if the channel output is masked or unmasked. * * Values: * - 0 - Channel output is not masked. It continues to operate normally. * - 1 - Channel output is masked. It is forced to its inactive state. */ /*@{*/ #define BP_FTM_OUTMASK_CH3OM (3U) /*!< Bit position for FTM_OUTMASK_CH3OM. */ #define BM_FTM_OUTMASK_CH3OM (0x00000008U) /*!< Bit mask for FTM_OUTMASK_CH3OM. */ #define BS_FTM_OUTMASK_CH3OM (1U) /*!< Bit field size in bits for FTM_OUTMASK_CH3OM. */ /*! @brief Read current value of the FTM_OUTMASK_CH3OM field. */ #define BR_FTM_OUTMASK_CH3OM(x) (BITBAND_ACCESS32(HW_FTM_OUTMASK_ADDR(x), BP_FTM_OUTMASK_CH3OM)) /*! @brief Format value for bitfield FTM_OUTMASK_CH3OM. */ #define BF_FTM_OUTMASK_CH3OM(v) ((uint32_t)((uint32_t)(v) << BP_FTM_OUTMASK_CH3OM) & BM_FTM_OUTMASK_CH3OM) /*! @brief Set the CH3OM field to a new value. */ #define BW_FTM_OUTMASK_CH3OM(x, v) (BITBAND_ACCESS32(HW_FTM_OUTMASK_ADDR(x), BP_FTM_OUTMASK_CH3OM) = (v)) /*@}*/ /*! * @name Register FTM_OUTMASK, field CH4OM[4] (RW) * * Defines if the channel output is masked or unmasked. * * Values: * - 0 - Channel output is not masked. It continues to operate normally. * - 1 - Channel output is masked. It is forced to its inactive state. */ /*@{*/ #define BP_FTM_OUTMASK_CH4OM (4U) /*!< Bit position for FTM_OUTMASK_CH4OM. */ #define BM_FTM_OUTMASK_CH4OM (0x00000010U) /*!< Bit mask for FTM_OUTMASK_CH4OM. */ #define BS_FTM_OUTMASK_CH4OM (1U) /*!< Bit field size in bits for FTM_OUTMASK_CH4OM. */ /*! @brief Read current value of the FTM_OUTMASK_CH4OM field. */ #define BR_FTM_OUTMASK_CH4OM(x) (BITBAND_ACCESS32(HW_FTM_OUTMASK_ADDR(x), BP_FTM_OUTMASK_CH4OM)) /*! @brief Format value for bitfield FTM_OUTMASK_CH4OM. */ #define BF_FTM_OUTMASK_CH4OM(v) ((uint32_t)((uint32_t)(v) << BP_FTM_OUTMASK_CH4OM) & BM_FTM_OUTMASK_CH4OM) /*! @brief Set the CH4OM field to a new value. */ #define BW_FTM_OUTMASK_CH4OM(x, v) (BITBAND_ACCESS32(HW_FTM_OUTMASK_ADDR(x), BP_FTM_OUTMASK_CH4OM) = (v)) /*@}*/ /*! * @name Register FTM_OUTMASK, field CH5OM[5] (RW) * * Defines if the channel output is masked or unmasked. * * Values: * - 0 - Channel output is not masked. It continues to operate normally. * - 1 - Channel output is masked. It is forced to its inactive state. */ /*@{*/ #define BP_FTM_OUTMASK_CH5OM (5U) /*!< Bit position for FTM_OUTMASK_CH5OM. */ #define BM_FTM_OUTMASK_CH5OM (0x00000020U) /*!< Bit mask for FTM_OUTMASK_CH5OM. */ #define BS_FTM_OUTMASK_CH5OM (1U) /*!< Bit field size in bits for FTM_OUTMASK_CH5OM. */ /*! @brief Read current value of the FTM_OUTMASK_CH5OM field. */ #define BR_FTM_OUTMASK_CH5OM(x) (BITBAND_ACCESS32(HW_FTM_OUTMASK_ADDR(x), BP_FTM_OUTMASK_CH5OM)) /*! @brief Format value for bitfield FTM_OUTMASK_CH5OM. */ #define BF_FTM_OUTMASK_CH5OM(v) ((uint32_t)((uint32_t)(v) << BP_FTM_OUTMASK_CH5OM) & BM_FTM_OUTMASK_CH5OM) /*! @brief Set the CH5OM field to a new value. */ #define BW_FTM_OUTMASK_CH5OM(x, v) (BITBAND_ACCESS32(HW_FTM_OUTMASK_ADDR(x), BP_FTM_OUTMASK_CH5OM) = (v)) /*@}*/ /*! * @name Register FTM_OUTMASK, field CH6OM[6] (RW) * * Defines if the channel output is masked or unmasked. * * Values: * - 0 - Channel output is not masked. It continues to operate normally. * - 1 - Channel output is masked. It is forced to its inactive state. */ /*@{*/ #define BP_FTM_OUTMASK_CH6OM (6U) /*!< Bit position for FTM_OUTMASK_CH6OM. */ #define BM_FTM_OUTMASK_CH6OM (0x00000040U) /*!< Bit mask for FTM_OUTMASK_CH6OM. */ #define BS_FTM_OUTMASK_CH6OM (1U) /*!< Bit field size in bits for FTM_OUTMASK_CH6OM. */ /*! @brief Read current value of the FTM_OUTMASK_CH6OM field. */ #define BR_FTM_OUTMASK_CH6OM(x) (BITBAND_ACCESS32(HW_FTM_OUTMASK_ADDR(x), BP_FTM_OUTMASK_CH6OM)) /*! @brief Format value for bitfield FTM_OUTMASK_CH6OM. */ #define BF_FTM_OUTMASK_CH6OM(v) ((uint32_t)((uint32_t)(v) << BP_FTM_OUTMASK_CH6OM) & BM_FTM_OUTMASK_CH6OM) /*! @brief Set the CH6OM field to a new value. */ #define BW_FTM_OUTMASK_CH6OM(x, v) (BITBAND_ACCESS32(HW_FTM_OUTMASK_ADDR(x), BP_FTM_OUTMASK_CH6OM) = (v)) /*@}*/ /*! * @name Register FTM_OUTMASK, field CH7OM[7] (RW) * * Defines if the channel output is masked or unmasked. * * Values: * - 0 - Channel output is not masked. It continues to operate normally. * - 1 - Channel output is masked. It is forced to its inactive state. */ /*@{*/ #define BP_FTM_OUTMASK_CH7OM (7U) /*!< Bit position for FTM_OUTMASK_CH7OM. */ #define BM_FTM_OUTMASK_CH7OM (0x00000080U) /*!< Bit mask for FTM_OUTMASK_CH7OM. */ #define BS_FTM_OUTMASK_CH7OM (1U) /*!< Bit field size in bits for FTM_OUTMASK_CH7OM. */ /*! @brief Read current value of the FTM_OUTMASK_CH7OM field. */ #define BR_FTM_OUTMASK_CH7OM(x) (BITBAND_ACCESS32(HW_FTM_OUTMASK_ADDR(x), BP_FTM_OUTMASK_CH7OM)) /*! @brief Format value for bitfield FTM_OUTMASK_CH7OM. */ #define BF_FTM_OUTMASK_CH7OM(v) ((uint32_t)((uint32_t)(v) << BP_FTM_OUTMASK_CH7OM) & BM_FTM_OUTMASK_CH7OM) /*! @brief Set the CH7OM field to a new value. */ #define BW_FTM_OUTMASK_CH7OM(x, v) (BITBAND_ACCESS32(HW_FTM_OUTMASK_ADDR(x), BP_FTM_OUTMASK_CH7OM) = (v)) /*@}*/ /******************************************************************************* * HW_FTM_COMBINE - Function For Linked Channels ******************************************************************************/ /*! * @brief HW_FTM_COMBINE - Function For Linked Channels (RW) * * Reset value: 0x00000000U * * This register contains the control bits used to configure the fault control, * synchronization, deadtime insertion, Dual Edge Capture mode, Complementary, * and Combine mode for each pair of channels (n) and (n+1), where n equals 0, 2, * 4, and 6. */ typedef union _hw_ftm_combine { uint32_t U; struct _hw_ftm_combine_bitfields { uint32_t COMBINE0 : 1; /*!< [0] Combine Channels For n = 0 */ uint32_t COMP0 : 1; /*!< [1] Complement Of Channel (n) For n = 0 */ uint32_t DECAPEN0 : 1; /*!< [2] Dual Edge Capture Mode Enable For n = * 0 */ uint32_t DECAP0 : 1; /*!< [3] Dual Edge Capture Mode Captures For n = * 0 */ uint32_t DTEN0 : 1; /*!< [4] Deadtime Enable For n = 0 */ uint32_t SYNCEN0 : 1; /*!< [5] Synchronization Enable For n = 0 */ uint32_t FAULTEN0 : 1; /*!< [6] Fault Control Enable For n = 0 */ uint32_t RESERVED0 : 1; /*!< [7] */ uint32_t COMBINE1 : 1; /*!< [8] Combine Channels For n = 2 */ uint32_t COMP1 : 1; /*!< [9] Complement Of Channel (n) For n = 2 */ uint32_t DECAPEN1 : 1; /*!< [10] Dual Edge Capture Mode Enable For n * = 2 */ uint32_t DECAP1 : 1; /*!< [11] Dual Edge Capture Mode Captures For n * = 2 */ uint32_t DTEN1 : 1; /*!< [12] Deadtime Enable For n = 2 */ uint32_t SYNCEN1 : 1; /*!< [13] Synchronization Enable For n = 2 */ uint32_t FAULTEN1 : 1; /*!< [14] Fault Control Enable For n = 2 */ uint32_t RESERVED1 : 1; /*!< [15] */ uint32_t COMBINE2 : 1; /*!< [16] Combine Channels For n = 4 */ uint32_t COMP2 : 1; /*!< [17] Complement Of Channel (n) For n = 4 */ uint32_t DECAPEN2 : 1; /*!< [18] Dual Edge Capture Mode Enable For n * = 4 */ uint32_t DECAP2 : 1; /*!< [19] Dual Edge Capture Mode Captures For n * = 4 */ uint32_t DTEN2 : 1; /*!< [20] Deadtime Enable For n = 4 */ uint32_t SYNCEN2 : 1; /*!< [21] Synchronization Enable For n = 4 */ uint32_t FAULTEN2 : 1; /*!< [22] Fault Control Enable For n = 4 */ uint32_t RESERVED2 : 1; /*!< [23] */ uint32_t COMBINE3 : 1; /*!< [24] Combine Channels For n = 6 */ uint32_t COMP3 : 1; /*!< [25] Complement Of Channel (n) for n = 6 */ uint32_t DECAPEN3 : 1; /*!< [26] Dual Edge Capture Mode Enable For n * = 6 */ uint32_t DECAP3 : 1; /*!< [27] Dual Edge Capture Mode Captures For n * = 6 */ uint32_t DTEN3 : 1; /*!< [28] Deadtime Enable For n = 6 */ uint32_t SYNCEN3 : 1; /*!< [29] Synchronization Enable For n = 6 */ uint32_t FAULTEN3 : 1; /*!< [30] Fault Control Enable For n = 6 */ uint32_t RESERVED3 : 1; /*!< [31] */ } B; } hw_ftm_combine_t; /*! * @name Constants and macros for entire FTM_COMBINE register */ /*@{*/ #define HW_FTM_COMBINE_ADDR(x) ((x) + 0x64U) #define HW_FTM_COMBINE(x) (*(__IO hw_ftm_combine_t *) HW_FTM_COMBINE_ADDR(x)) #define HW_FTM_COMBINE_RD(x) (HW_FTM_COMBINE(x).U) #define HW_FTM_COMBINE_WR(x, v) (HW_FTM_COMBINE(x).U = (v)) #define HW_FTM_COMBINE_SET(x, v) (HW_FTM_COMBINE_WR(x, HW_FTM_COMBINE_RD(x) | (v))) #define HW_FTM_COMBINE_CLR(x, v) (HW_FTM_COMBINE_WR(x, HW_FTM_COMBINE_RD(x) & ~(v))) #define HW_FTM_COMBINE_TOG(x, v) (HW_FTM_COMBINE_WR(x, HW_FTM_COMBINE_RD(x) ^ (v))) /*@}*/ /* * Constants & macros for individual FTM_COMBINE bitfields */ /*! * @name Register FTM_COMBINE, field COMBINE0[0] (RW) * * Enables the combine feature for channels (n) and (n+1). This field is write * protected. It can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - Channels (n) and (n+1) are independent. * - 1 - Channels (n) and (n+1) are combined. */ /*@{*/ #define BP_FTM_COMBINE_COMBINE0 (0U) /*!< Bit position for FTM_COMBINE_COMBINE0. */ #define BM_FTM_COMBINE_COMBINE0 (0x00000001U) /*!< Bit mask for FTM_COMBINE_COMBINE0. */ #define BS_FTM_COMBINE_COMBINE0 (1U) /*!< Bit field size in bits for FTM_COMBINE_COMBINE0. */ /*! @brief Read current value of the FTM_COMBINE_COMBINE0 field. */ #define BR_FTM_COMBINE_COMBINE0(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_COMBINE0)) /*! @brief Format value for bitfield FTM_COMBINE_COMBINE0. */ #define BF_FTM_COMBINE_COMBINE0(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_COMBINE0) & BM_FTM_COMBINE_COMBINE0) /*! @brief Set the COMBINE0 field to a new value. */ #define BW_FTM_COMBINE_COMBINE0(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_COMBINE0) = (v)) /*@}*/ /*! * @name Register FTM_COMBINE, field COMP0[1] (RW) * * Enables Complementary mode for the combined channels. In Complementary mode * the channel (n+1) output is the inverse of the channel (n) output. This field * is write protected. It can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - The channel (n+1) output is the same as the channel (n) output. * - 1 - The channel (n+1) output is the complement of the channel (n) output. */ /*@{*/ #define BP_FTM_COMBINE_COMP0 (1U) /*!< Bit position for FTM_COMBINE_COMP0. */ #define BM_FTM_COMBINE_COMP0 (0x00000002U) /*!< Bit mask for FTM_COMBINE_COMP0. */ #define BS_FTM_COMBINE_COMP0 (1U) /*!< Bit field size in bits for FTM_COMBINE_COMP0. */ /*! @brief Read current value of the FTM_COMBINE_COMP0 field. */ #define BR_FTM_COMBINE_COMP0(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_COMP0)) /*! @brief Format value for bitfield FTM_COMBINE_COMP0. */ #define BF_FTM_COMBINE_COMP0(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_COMP0) & BM_FTM_COMBINE_COMP0) /*! @brief Set the COMP0 field to a new value. */ #define BW_FTM_COMBINE_COMP0(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_COMP0) = (v)) /*@}*/ /*! * @name Register FTM_COMBINE, field DECAPEN0[2] (RW) * * Enables the Dual Edge Capture mode in the channels (n) and (n+1). This bit * reconfigures the function of MSnA, ELSnB:ELSnA and ELS(n+1)B:ELS(n+1)A bits in * Dual Edge Capture mode according to #ModeSel1Table. This field applies only * when FTMEN = 1. This field is write protected. It can be written only when * MODE[WPDIS] = 1. * * Values: * - 0 - The Dual Edge Capture mode in this pair of channels is disabled. * - 1 - The Dual Edge Capture mode in this pair of channels is enabled. */ /*@{*/ #define BP_FTM_COMBINE_DECAPEN0 (2U) /*!< Bit position for FTM_COMBINE_DECAPEN0. */ #define BM_FTM_COMBINE_DECAPEN0 (0x00000004U) /*!< Bit mask for FTM_COMBINE_DECAPEN0. */ #define BS_FTM_COMBINE_DECAPEN0 (1U) /*!< Bit field size in bits for FTM_COMBINE_DECAPEN0. */ /*! @brief Read current value of the FTM_COMBINE_DECAPEN0 field. */ #define BR_FTM_COMBINE_DECAPEN0(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_DECAPEN0)) /*! @brief Format value for bitfield FTM_COMBINE_DECAPEN0. */ #define BF_FTM_COMBINE_DECAPEN0(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_DECAPEN0) & BM_FTM_COMBINE_DECAPEN0) /*! @brief Set the DECAPEN0 field to a new value. */ #define BW_FTM_COMBINE_DECAPEN0(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_DECAPEN0) = (v)) /*@}*/ /*! * @name Register FTM_COMBINE, field DECAP0[3] (RW) * * Enables the capture of the FTM counter value according to the channel (n) * input event and the configuration of the dual edge capture bits. This field * applies only when FTMEN = 1 and DECAPEN = 1. DECAP bit is cleared automatically by * hardware if dual edge capture - one-shot mode is selected and when the capture * of channel (n+1) event is made. * * Values: * - 0 - The dual edge captures are inactive. * - 1 - The dual edge captures are active. */ /*@{*/ #define BP_FTM_COMBINE_DECAP0 (3U) /*!< Bit position for FTM_COMBINE_DECAP0. */ #define BM_FTM_COMBINE_DECAP0 (0x00000008U) /*!< Bit mask for FTM_COMBINE_DECAP0. */ #define BS_FTM_COMBINE_DECAP0 (1U) /*!< Bit field size in bits for FTM_COMBINE_DECAP0. */ /*! @brief Read current value of the FTM_COMBINE_DECAP0 field. */ #define BR_FTM_COMBINE_DECAP0(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_DECAP0)) /*! @brief Format value for bitfield FTM_COMBINE_DECAP0. */ #define BF_FTM_COMBINE_DECAP0(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_DECAP0) & BM_FTM_COMBINE_DECAP0) /*! @brief Set the DECAP0 field to a new value. */ #define BW_FTM_COMBINE_DECAP0(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_DECAP0) = (v)) /*@}*/ /*! * @name Register FTM_COMBINE, field DTEN0[4] (RW) * * Enables the deadtime insertion in the channels (n) and (n+1). This field is * write protected. It can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - The deadtime insertion in this pair of channels is disabled. * - 1 - The deadtime insertion in this pair of channels is enabled. */ /*@{*/ #define BP_FTM_COMBINE_DTEN0 (4U) /*!< Bit position for FTM_COMBINE_DTEN0. */ #define BM_FTM_COMBINE_DTEN0 (0x00000010U) /*!< Bit mask for FTM_COMBINE_DTEN0. */ #define BS_FTM_COMBINE_DTEN0 (1U) /*!< Bit field size in bits for FTM_COMBINE_DTEN0. */ /*! @brief Read current value of the FTM_COMBINE_DTEN0 field. */ #define BR_FTM_COMBINE_DTEN0(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_DTEN0)) /*! @brief Format value for bitfield FTM_COMBINE_DTEN0. */ #define BF_FTM_COMBINE_DTEN0(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_DTEN0) & BM_FTM_COMBINE_DTEN0) /*! @brief Set the DTEN0 field to a new value. */ #define BW_FTM_COMBINE_DTEN0(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_DTEN0) = (v)) /*@}*/ /*! * @name Register FTM_COMBINE, field SYNCEN0[5] (RW) * * Enables PWM synchronization of registers C(n)V and C(n+1)V. * * Values: * - 0 - The PWM synchronization in this pair of channels is disabled. * - 1 - The PWM synchronization in this pair of channels is enabled. */ /*@{*/ #define BP_FTM_COMBINE_SYNCEN0 (5U) /*!< Bit position for FTM_COMBINE_SYNCEN0. */ #define BM_FTM_COMBINE_SYNCEN0 (0x00000020U) /*!< Bit mask for FTM_COMBINE_SYNCEN0. */ #define BS_FTM_COMBINE_SYNCEN0 (1U) /*!< Bit field size in bits for FTM_COMBINE_SYNCEN0. */ /*! @brief Read current value of the FTM_COMBINE_SYNCEN0 field. */ #define BR_FTM_COMBINE_SYNCEN0(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_SYNCEN0)) /*! @brief Format value for bitfield FTM_COMBINE_SYNCEN0. */ #define BF_FTM_COMBINE_SYNCEN0(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_SYNCEN0) & BM_FTM_COMBINE_SYNCEN0) /*! @brief Set the SYNCEN0 field to a new value. */ #define BW_FTM_COMBINE_SYNCEN0(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_SYNCEN0) = (v)) /*@}*/ /*! * @name Register FTM_COMBINE, field FAULTEN0[6] (RW) * * Enables the fault control in channels (n) and (n+1). This field is write * protected. It can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - The fault control in this pair of channels is disabled. * - 1 - The fault control in this pair of channels is enabled. */ /*@{*/ #define BP_FTM_COMBINE_FAULTEN0 (6U) /*!< Bit position for FTM_COMBINE_FAULTEN0. */ #define BM_FTM_COMBINE_FAULTEN0 (0x00000040U) /*!< Bit mask for FTM_COMBINE_FAULTEN0. */ #define BS_FTM_COMBINE_FAULTEN0 (1U) /*!< Bit field size in bits for FTM_COMBINE_FAULTEN0. */ /*! @brief Read current value of the FTM_COMBINE_FAULTEN0 field. */ #define BR_FTM_COMBINE_FAULTEN0(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_FAULTEN0)) /*! @brief Format value for bitfield FTM_COMBINE_FAULTEN0. */ #define BF_FTM_COMBINE_FAULTEN0(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_FAULTEN0) & BM_FTM_COMBINE_FAULTEN0) /*! @brief Set the FAULTEN0 field to a new value. */ #define BW_FTM_COMBINE_FAULTEN0(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_FAULTEN0) = (v)) /*@}*/ /*! * @name Register FTM_COMBINE, field COMBINE1[8] (RW) * * Enables the combine feature for channels (n) and (n+1). This field is write * protected. It can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - Channels (n) and (n+1) are independent. * - 1 - Channels (n) and (n+1) are combined. */ /*@{*/ #define BP_FTM_COMBINE_COMBINE1 (8U) /*!< Bit position for FTM_COMBINE_COMBINE1. */ #define BM_FTM_COMBINE_COMBINE1 (0x00000100U) /*!< Bit mask for FTM_COMBINE_COMBINE1. */ #define BS_FTM_COMBINE_COMBINE1 (1U) /*!< Bit field size in bits for FTM_COMBINE_COMBINE1. */ /*! @brief Read current value of the FTM_COMBINE_COMBINE1 field. */ #define BR_FTM_COMBINE_COMBINE1(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_COMBINE1)) /*! @brief Format value for bitfield FTM_COMBINE_COMBINE1. */ #define BF_FTM_COMBINE_COMBINE1(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_COMBINE1) & BM_FTM_COMBINE_COMBINE1) /*! @brief Set the COMBINE1 field to a new value. */ #define BW_FTM_COMBINE_COMBINE1(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_COMBINE1) = (v)) /*@}*/ /*! * @name Register FTM_COMBINE, field COMP1[9] (RW) * * Enables Complementary mode for the combined channels. In Complementary mode * the channel (n+1) output is the inverse of the channel (n) output. This field * is write protected. It can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - The channel (n+1) output is the same as the channel (n) output. * - 1 - The channel (n+1) output is the complement of the channel (n) output. */ /*@{*/ #define BP_FTM_COMBINE_COMP1 (9U) /*!< Bit position for FTM_COMBINE_COMP1. */ #define BM_FTM_COMBINE_COMP1 (0x00000200U) /*!< Bit mask for FTM_COMBINE_COMP1. */ #define BS_FTM_COMBINE_COMP1 (1U) /*!< Bit field size in bits for FTM_COMBINE_COMP1. */ /*! @brief Read current value of the FTM_COMBINE_COMP1 field. */ #define BR_FTM_COMBINE_COMP1(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_COMP1)) /*! @brief Format value for bitfield FTM_COMBINE_COMP1. */ #define BF_FTM_COMBINE_COMP1(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_COMP1) & BM_FTM_COMBINE_COMP1) /*! @brief Set the COMP1 field to a new value. */ #define BW_FTM_COMBINE_COMP1(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_COMP1) = (v)) /*@}*/ /*! * @name Register FTM_COMBINE, field DECAPEN1[10] (RW) * * Enables the Dual Edge Capture mode in the channels (n) and (n+1). This bit * reconfigures the function of MSnA, ELSnB:ELSnA and ELS(n+1)B:ELS(n+1)A bits in * Dual Edge Capture mode according to #ModeSel1Table. This field applies only * when FTMEN = 1. This field is write protected. It can be written only when * MODE[WPDIS] = 1. * * Values: * - 0 - The Dual Edge Capture mode in this pair of channels is disabled. * - 1 - The Dual Edge Capture mode in this pair of channels is enabled. */ /*@{*/ #define BP_FTM_COMBINE_DECAPEN1 (10U) /*!< Bit position for FTM_COMBINE_DECAPEN1. */ #define BM_FTM_COMBINE_DECAPEN1 (0x00000400U) /*!< Bit mask for FTM_COMBINE_DECAPEN1. */ #define BS_FTM_COMBINE_DECAPEN1 (1U) /*!< Bit field size in bits for FTM_COMBINE_DECAPEN1. */ /*! @brief Read current value of the FTM_COMBINE_DECAPEN1 field. */ #define BR_FTM_COMBINE_DECAPEN1(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_DECAPEN1)) /*! @brief Format value for bitfield FTM_COMBINE_DECAPEN1. */ #define BF_FTM_COMBINE_DECAPEN1(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_DECAPEN1) & BM_FTM_COMBINE_DECAPEN1) /*! @brief Set the DECAPEN1 field to a new value. */ #define BW_FTM_COMBINE_DECAPEN1(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_DECAPEN1) = (v)) /*@}*/ /*! * @name Register FTM_COMBINE, field DECAP1[11] (RW) * * Enables the capture of the FTM counter value according to the channel (n) * input event and the configuration of the dual edge capture bits. This field * applies only when FTMEN = 1 and DECAPEN = 1. DECAP bit is cleared automatically by * hardware if Dual Edge Capture - One-Shot mode is selected and when the capture * of channel (n+1) event is made. * * Values: * - 0 - The dual edge captures are inactive. * - 1 - The dual edge captures are active. */ /*@{*/ #define BP_FTM_COMBINE_DECAP1 (11U) /*!< Bit position for FTM_COMBINE_DECAP1. */ #define BM_FTM_COMBINE_DECAP1 (0x00000800U) /*!< Bit mask for FTM_COMBINE_DECAP1. */ #define BS_FTM_COMBINE_DECAP1 (1U) /*!< Bit field size in bits for FTM_COMBINE_DECAP1. */ /*! @brief Read current value of the FTM_COMBINE_DECAP1 field. */ #define BR_FTM_COMBINE_DECAP1(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_DECAP1)) /*! @brief Format value for bitfield FTM_COMBINE_DECAP1. */ #define BF_FTM_COMBINE_DECAP1(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_DECAP1) & BM_FTM_COMBINE_DECAP1) /*! @brief Set the DECAP1 field to a new value. */ #define BW_FTM_COMBINE_DECAP1(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_DECAP1) = (v)) /*@}*/ /*! * @name Register FTM_COMBINE, field DTEN1[12] (RW) * * Enables the deadtime insertion in the channels (n) and (n+1). This field is * write protected. It can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - The deadtime insertion in this pair of channels is disabled. * - 1 - The deadtime insertion in this pair of channels is enabled. */ /*@{*/ #define BP_FTM_COMBINE_DTEN1 (12U) /*!< Bit position for FTM_COMBINE_DTEN1. */ #define BM_FTM_COMBINE_DTEN1 (0x00001000U) /*!< Bit mask for FTM_COMBINE_DTEN1. */ #define BS_FTM_COMBINE_DTEN1 (1U) /*!< Bit field size in bits for FTM_COMBINE_DTEN1. */ /*! @brief Read current value of the FTM_COMBINE_DTEN1 field. */ #define BR_FTM_COMBINE_DTEN1(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_DTEN1)) /*! @brief Format value for bitfield FTM_COMBINE_DTEN1. */ #define BF_FTM_COMBINE_DTEN1(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_DTEN1) & BM_FTM_COMBINE_DTEN1) /*! @brief Set the DTEN1 field to a new value. */ #define BW_FTM_COMBINE_DTEN1(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_DTEN1) = (v)) /*@}*/ /*! * @name Register FTM_COMBINE, field SYNCEN1[13] (RW) * * Enables PWM synchronization of registers C(n)V and C(n+1)V. * * Values: * - 0 - The PWM synchronization in this pair of channels is disabled. * - 1 - The PWM synchronization in this pair of channels is enabled. */ /*@{*/ #define BP_FTM_COMBINE_SYNCEN1 (13U) /*!< Bit position for FTM_COMBINE_SYNCEN1. */ #define BM_FTM_COMBINE_SYNCEN1 (0x00002000U) /*!< Bit mask for FTM_COMBINE_SYNCEN1. */ #define BS_FTM_COMBINE_SYNCEN1 (1U) /*!< Bit field size in bits for FTM_COMBINE_SYNCEN1. */ /*! @brief Read current value of the FTM_COMBINE_SYNCEN1 field. */ #define BR_FTM_COMBINE_SYNCEN1(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_SYNCEN1)) /*! @brief Format value for bitfield FTM_COMBINE_SYNCEN1. */ #define BF_FTM_COMBINE_SYNCEN1(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_SYNCEN1) & BM_FTM_COMBINE_SYNCEN1) /*! @brief Set the SYNCEN1 field to a new value. */ #define BW_FTM_COMBINE_SYNCEN1(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_SYNCEN1) = (v)) /*@}*/ /*! * @name Register FTM_COMBINE, field FAULTEN1[14] (RW) * * Enables the fault control in channels (n) and (n+1). This field is write * protected. It can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - The fault control in this pair of channels is disabled. * - 1 - The fault control in this pair of channels is enabled. */ /*@{*/ #define BP_FTM_COMBINE_FAULTEN1 (14U) /*!< Bit position for FTM_COMBINE_FAULTEN1. */ #define BM_FTM_COMBINE_FAULTEN1 (0x00004000U) /*!< Bit mask for FTM_COMBINE_FAULTEN1. */ #define BS_FTM_COMBINE_FAULTEN1 (1U) /*!< Bit field size in bits for FTM_COMBINE_FAULTEN1. */ /*! @brief Read current value of the FTM_COMBINE_FAULTEN1 field. */ #define BR_FTM_COMBINE_FAULTEN1(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_FAULTEN1)) /*! @brief Format value for bitfield FTM_COMBINE_FAULTEN1. */ #define BF_FTM_COMBINE_FAULTEN1(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_FAULTEN1) & BM_FTM_COMBINE_FAULTEN1) /*! @brief Set the FAULTEN1 field to a new value. */ #define BW_FTM_COMBINE_FAULTEN1(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_FAULTEN1) = (v)) /*@}*/ /*! * @name Register FTM_COMBINE, field COMBINE2[16] (RW) * * Enables the combine feature for channels (n) and (n+1). This field is write * protected. It can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - Channels (n) and (n+1) are independent. * - 1 - Channels (n) and (n+1) are combined. */ /*@{*/ #define BP_FTM_COMBINE_COMBINE2 (16U) /*!< Bit position for FTM_COMBINE_COMBINE2. */ #define BM_FTM_COMBINE_COMBINE2 (0x00010000U) /*!< Bit mask for FTM_COMBINE_COMBINE2. */ #define BS_FTM_COMBINE_COMBINE2 (1U) /*!< Bit field size in bits for FTM_COMBINE_COMBINE2. */ /*! @brief Read current value of the FTM_COMBINE_COMBINE2 field. */ #define BR_FTM_COMBINE_COMBINE2(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_COMBINE2)) /*! @brief Format value for bitfield FTM_COMBINE_COMBINE2. */ #define BF_FTM_COMBINE_COMBINE2(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_COMBINE2) & BM_FTM_COMBINE_COMBINE2) /*! @brief Set the COMBINE2 field to a new value. */ #define BW_FTM_COMBINE_COMBINE2(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_COMBINE2) = (v)) /*@}*/ /*! * @name Register FTM_COMBINE, field COMP2[17] (RW) * * Enables Complementary mode for the combined channels. In Complementary mode * the channel (n+1) output is the inverse of the channel (n) output. This field * is write protected. It can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - The channel (n+1) output is the same as the channel (n) output. * - 1 - The channel (n+1) output is the complement of the channel (n) output. */ /*@{*/ #define BP_FTM_COMBINE_COMP2 (17U) /*!< Bit position for FTM_COMBINE_COMP2. */ #define BM_FTM_COMBINE_COMP2 (0x00020000U) /*!< Bit mask for FTM_COMBINE_COMP2. */ #define BS_FTM_COMBINE_COMP2 (1U) /*!< Bit field size in bits for FTM_COMBINE_COMP2. */ /*! @brief Read current value of the FTM_COMBINE_COMP2 field. */ #define BR_FTM_COMBINE_COMP2(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_COMP2)) /*! @brief Format value for bitfield FTM_COMBINE_COMP2. */ #define BF_FTM_COMBINE_COMP2(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_COMP2) & BM_FTM_COMBINE_COMP2) /*! @brief Set the COMP2 field to a new value. */ #define BW_FTM_COMBINE_COMP2(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_COMP2) = (v)) /*@}*/ /*! * @name Register FTM_COMBINE, field DECAPEN2[18] (RW) * * Enables the Dual Edge Capture mode in the channels (n) and (n+1). This bit * reconfigures the function of MSnA, ELSnB:ELSnA and ELS(n+1)B:ELS(n+1)A bits in * Dual Edge Capture mode according to #ModeSel1Table. This field applies only * when FTMEN = 1. This field is write protected. It can be written only when * MODE[WPDIS] = 1. * * Values: * - 0 - The Dual Edge Capture mode in this pair of channels is disabled. * - 1 - The Dual Edge Capture mode in this pair of channels is enabled. */ /*@{*/ #define BP_FTM_COMBINE_DECAPEN2 (18U) /*!< Bit position for FTM_COMBINE_DECAPEN2. */ #define BM_FTM_COMBINE_DECAPEN2 (0x00040000U) /*!< Bit mask for FTM_COMBINE_DECAPEN2. */ #define BS_FTM_COMBINE_DECAPEN2 (1U) /*!< Bit field size in bits for FTM_COMBINE_DECAPEN2. */ /*! @brief Read current value of the FTM_COMBINE_DECAPEN2 field. */ #define BR_FTM_COMBINE_DECAPEN2(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_DECAPEN2)) /*! @brief Format value for bitfield FTM_COMBINE_DECAPEN2. */ #define BF_FTM_COMBINE_DECAPEN2(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_DECAPEN2) & BM_FTM_COMBINE_DECAPEN2) /*! @brief Set the DECAPEN2 field to a new value. */ #define BW_FTM_COMBINE_DECAPEN2(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_DECAPEN2) = (v)) /*@}*/ /*! * @name Register FTM_COMBINE, field DECAP2[19] (RW) * * Enables the capture of the FTM counter value according to the channel (n) * input event and the configuration of the dual edge capture bits. This field * applies only when FTMEN = 1 and DECAPEN = 1. DECAP bit is cleared automatically by * hardware if dual edge capture - one-shot mode is selected and when the capture * of channel (n+1) event is made. * * Values: * - 0 - The dual edge captures are inactive. * - 1 - The dual edge captures are active. */ /*@{*/ #define BP_FTM_COMBINE_DECAP2 (19U) /*!< Bit position for FTM_COMBINE_DECAP2. */ #define BM_FTM_COMBINE_DECAP2 (0x00080000U) /*!< Bit mask for FTM_COMBINE_DECAP2. */ #define BS_FTM_COMBINE_DECAP2 (1U) /*!< Bit field size in bits for FTM_COMBINE_DECAP2. */ /*! @brief Read current value of the FTM_COMBINE_DECAP2 field. */ #define BR_FTM_COMBINE_DECAP2(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_DECAP2)) /*! @brief Format value for bitfield FTM_COMBINE_DECAP2. */ #define BF_FTM_COMBINE_DECAP2(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_DECAP2) & BM_FTM_COMBINE_DECAP2) /*! @brief Set the DECAP2 field to a new value. */ #define BW_FTM_COMBINE_DECAP2(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_DECAP2) = (v)) /*@}*/ /*! * @name Register FTM_COMBINE, field DTEN2[20] (RW) * * Enables the deadtime insertion in the channels (n) and (n+1). This field is * write protected. It can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - The deadtime insertion in this pair of channels is disabled. * - 1 - The deadtime insertion in this pair of channels is enabled. */ /*@{*/ #define BP_FTM_COMBINE_DTEN2 (20U) /*!< Bit position for FTM_COMBINE_DTEN2. */ #define BM_FTM_COMBINE_DTEN2 (0x00100000U) /*!< Bit mask for FTM_COMBINE_DTEN2. */ #define BS_FTM_COMBINE_DTEN2 (1U) /*!< Bit field size in bits for FTM_COMBINE_DTEN2. */ /*! @brief Read current value of the FTM_COMBINE_DTEN2 field. */ #define BR_FTM_COMBINE_DTEN2(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_DTEN2)) /*! @brief Format value for bitfield FTM_COMBINE_DTEN2. */ #define BF_FTM_COMBINE_DTEN2(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_DTEN2) & BM_FTM_COMBINE_DTEN2) /*! @brief Set the DTEN2 field to a new value. */ #define BW_FTM_COMBINE_DTEN2(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_DTEN2) = (v)) /*@}*/ /*! * @name Register FTM_COMBINE, field SYNCEN2[21] (RW) * * Enables PWM synchronization of registers C(n)V and C(n+1)V. * * Values: * - 0 - The PWM synchronization in this pair of channels is disabled. * - 1 - The PWM synchronization in this pair of channels is enabled. */ /*@{*/ #define BP_FTM_COMBINE_SYNCEN2 (21U) /*!< Bit position for FTM_COMBINE_SYNCEN2. */ #define BM_FTM_COMBINE_SYNCEN2 (0x00200000U) /*!< Bit mask for FTM_COMBINE_SYNCEN2. */ #define BS_FTM_COMBINE_SYNCEN2 (1U) /*!< Bit field size in bits for FTM_COMBINE_SYNCEN2. */ /*! @brief Read current value of the FTM_COMBINE_SYNCEN2 field. */ #define BR_FTM_COMBINE_SYNCEN2(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_SYNCEN2)) /*! @brief Format value for bitfield FTM_COMBINE_SYNCEN2. */ #define BF_FTM_COMBINE_SYNCEN2(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_SYNCEN2) & BM_FTM_COMBINE_SYNCEN2) /*! @brief Set the SYNCEN2 field to a new value. */ #define BW_FTM_COMBINE_SYNCEN2(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_SYNCEN2) = (v)) /*@}*/ /*! * @name Register FTM_COMBINE, field FAULTEN2[22] (RW) * * Enables the fault control in channels (n) and (n+1). This field is write * protected. It can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - The fault control in this pair of channels is disabled. * - 1 - The fault control in this pair of channels is enabled. */ /*@{*/ #define BP_FTM_COMBINE_FAULTEN2 (22U) /*!< Bit position for FTM_COMBINE_FAULTEN2. */ #define BM_FTM_COMBINE_FAULTEN2 (0x00400000U) /*!< Bit mask for FTM_COMBINE_FAULTEN2. */ #define BS_FTM_COMBINE_FAULTEN2 (1U) /*!< Bit field size in bits for FTM_COMBINE_FAULTEN2. */ /*! @brief Read current value of the FTM_COMBINE_FAULTEN2 field. */ #define BR_FTM_COMBINE_FAULTEN2(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_FAULTEN2)) /*! @brief Format value for bitfield FTM_COMBINE_FAULTEN2. */ #define BF_FTM_COMBINE_FAULTEN2(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_FAULTEN2) & BM_FTM_COMBINE_FAULTEN2) /*! @brief Set the FAULTEN2 field to a new value. */ #define BW_FTM_COMBINE_FAULTEN2(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_FAULTEN2) = (v)) /*@}*/ /*! * @name Register FTM_COMBINE, field COMBINE3[24] (RW) * * Enables the combine feature for channels (n) and (n+1). This field is write * protected. It can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - Channels (n) and (n+1) are independent. * - 1 - Channels (n) and (n+1) are combined. */ /*@{*/ #define BP_FTM_COMBINE_COMBINE3 (24U) /*!< Bit position for FTM_COMBINE_COMBINE3. */ #define BM_FTM_COMBINE_COMBINE3 (0x01000000U) /*!< Bit mask for FTM_COMBINE_COMBINE3. */ #define BS_FTM_COMBINE_COMBINE3 (1U) /*!< Bit field size in bits for FTM_COMBINE_COMBINE3. */ /*! @brief Read current value of the FTM_COMBINE_COMBINE3 field. */ #define BR_FTM_COMBINE_COMBINE3(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_COMBINE3)) /*! @brief Format value for bitfield FTM_COMBINE_COMBINE3. */ #define BF_FTM_COMBINE_COMBINE3(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_COMBINE3) & BM_FTM_COMBINE_COMBINE3) /*! @brief Set the COMBINE3 field to a new value. */ #define BW_FTM_COMBINE_COMBINE3(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_COMBINE3) = (v)) /*@}*/ /*! * @name Register FTM_COMBINE, field COMP3[25] (RW) * * Enables Complementary mode for the combined channels. In Complementary mode * the channel (n+1) output is the inverse of the channel (n) output. This field * is write protected. It can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - The channel (n+1) output is the same as the channel (n) output. * - 1 - The channel (n+1) output is the complement of the channel (n) output. */ /*@{*/ #define BP_FTM_COMBINE_COMP3 (25U) /*!< Bit position for FTM_COMBINE_COMP3. */ #define BM_FTM_COMBINE_COMP3 (0x02000000U) /*!< Bit mask for FTM_COMBINE_COMP3. */ #define BS_FTM_COMBINE_COMP3 (1U) /*!< Bit field size in bits for FTM_COMBINE_COMP3. */ /*! @brief Read current value of the FTM_COMBINE_COMP3 field. */ #define BR_FTM_COMBINE_COMP3(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_COMP3)) /*! @brief Format value for bitfield FTM_COMBINE_COMP3. */ #define BF_FTM_COMBINE_COMP3(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_COMP3) & BM_FTM_COMBINE_COMP3) /*! @brief Set the COMP3 field to a new value. */ #define BW_FTM_COMBINE_COMP3(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_COMP3) = (v)) /*@}*/ /*! * @name Register FTM_COMBINE, field DECAPEN3[26] (RW) * * Enables the Dual Edge Capture mode in the channels (n) and (n+1). This bit * reconfigures the function of MSnA, ELSnB:ELSnA and ELS(n+1)B:ELS(n+1)A bits in * Dual Edge Capture mode according to #ModeSel1Table. This field applies only * when FTMEN = 1. This field is write protected. It can be written only when * MODE[WPDIS] = 1. * * Values: * - 0 - The Dual Edge Capture mode in this pair of channels is disabled. * - 1 - The Dual Edge Capture mode in this pair of channels is enabled. */ /*@{*/ #define BP_FTM_COMBINE_DECAPEN3 (26U) /*!< Bit position for FTM_COMBINE_DECAPEN3. */ #define BM_FTM_COMBINE_DECAPEN3 (0x04000000U) /*!< Bit mask for FTM_COMBINE_DECAPEN3. */ #define BS_FTM_COMBINE_DECAPEN3 (1U) /*!< Bit field size in bits for FTM_COMBINE_DECAPEN3. */ /*! @brief Read current value of the FTM_COMBINE_DECAPEN3 field. */ #define BR_FTM_COMBINE_DECAPEN3(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_DECAPEN3)) /*! @brief Format value for bitfield FTM_COMBINE_DECAPEN3. */ #define BF_FTM_COMBINE_DECAPEN3(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_DECAPEN3) & BM_FTM_COMBINE_DECAPEN3) /*! @brief Set the DECAPEN3 field to a new value. */ #define BW_FTM_COMBINE_DECAPEN3(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_DECAPEN3) = (v)) /*@}*/ /*! * @name Register FTM_COMBINE, field DECAP3[27] (RW) * * Enables the capture of the FTM counter value according to the channel (n) * input event and the configuration of the dual edge capture bits. This field * applies only when FTMEN = 1 and DECAPEN = 1. DECAP bit is cleared automatically by * hardware if dual edge capture - one-shot mode is selected and when the capture * of channel (n+1) event is made. * * Values: * - 0 - The dual edge captures are inactive. * - 1 - The dual edge captures are active. */ /*@{*/ #define BP_FTM_COMBINE_DECAP3 (27U) /*!< Bit position for FTM_COMBINE_DECAP3. */ #define BM_FTM_COMBINE_DECAP3 (0x08000000U) /*!< Bit mask for FTM_COMBINE_DECAP3. */ #define BS_FTM_COMBINE_DECAP3 (1U) /*!< Bit field size in bits for FTM_COMBINE_DECAP3. */ /*! @brief Read current value of the FTM_COMBINE_DECAP3 field. */ #define BR_FTM_COMBINE_DECAP3(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_DECAP3)) /*! @brief Format value for bitfield FTM_COMBINE_DECAP3. */ #define BF_FTM_COMBINE_DECAP3(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_DECAP3) & BM_FTM_COMBINE_DECAP3) /*! @brief Set the DECAP3 field to a new value. */ #define BW_FTM_COMBINE_DECAP3(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_DECAP3) = (v)) /*@}*/ /*! * @name Register FTM_COMBINE, field DTEN3[28] (RW) * * Enables the deadtime insertion in the channels (n) and (n+1). This field is * write protected. It can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - The deadtime insertion in this pair of channels is disabled. * - 1 - The deadtime insertion in this pair of channels is enabled. */ /*@{*/ #define BP_FTM_COMBINE_DTEN3 (28U) /*!< Bit position for FTM_COMBINE_DTEN3. */ #define BM_FTM_COMBINE_DTEN3 (0x10000000U) /*!< Bit mask for FTM_COMBINE_DTEN3. */ #define BS_FTM_COMBINE_DTEN3 (1U) /*!< Bit field size in bits for FTM_COMBINE_DTEN3. */ /*! @brief Read current value of the FTM_COMBINE_DTEN3 field. */ #define BR_FTM_COMBINE_DTEN3(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_DTEN3)) /*! @brief Format value for bitfield FTM_COMBINE_DTEN3. */ #define BF_FTM_COMBINE_DTEN3(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_DTEN3) & BM_FTM_COMBINE_DTEN3) /*! @brief Set the DTEN3 field to a new value. */ #define BW_FTM_COMBINE_DTEN3(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_DTEN3) = (v)) /*@}*/ /*! * @name Register FTM_COMBINE, field SYNCEN3[29] (RW) * * Enables PWM synchronization of registers C(n)V and C(n+1)V. * * Values: * - 0 - The PWM synchronization in this pair of channels is disabled. * - 1 - The PWM synchronization in this pair of channels is enabled. */ /*@{*/ #define BP_FTM_COMBINE_SYNCEN3 (29U) /*!< Bit position for FTM_COMBINE_SYNCEN3. */ #define BM_FTM_COMBINE_SYNCEN3 (0x20000000U) /*!< Bit mask for FTM_COMBINE_SYNCEN3. */ #define BS_FTM_COMBINE_SYNCEN3 (1U) /*!< Bit field size in bits for FTM_COMBINE_SYNCEN3. */ /*! @brief Read current value of the FTM_COMBINE_SYNCEN3 field. */ #define BR_FTM_COMBINE_SYNCEN3(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_SYNCEN3)) /*! @brief Format value for bitfield FTM_COMBINE_SYNCEN3. */ #define BF_FTM_COMBINE_SYNCEN3(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_SYNCEN3) & BM_FTM_COMBINE_SYNCEN3) /*! @brief Set the SYNCEN3 field to a new value. */ #define BW_FTM_COMBINE_SYNCEN3(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_SYNCEN3) = (v)) /*@}*/ /*! * @name Register FTM_COMBINE, field FAULTEN3[30] (RW) * * Enables the fault control in channels (n) and (n+1). This field is write * protected. It can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - The fault control in this pair of channels is disabled. * - 1 - The fault control in this pair of channels is enabled. */ /*@{*/ #define BP_FTM_COMBINE_FAULTEN3 (30U) /*!< Bit position for FTM_COMBINE_FAULTEN3. */ #define BM_FTM_COMBINE_FAULTEN3 (0x40000000U) /*!< Bit mask for FTM_COMBINE_FAULTEN3. */ #define BS_FTM_COMBINE_FAULTEN3 (1U) /*!< Bit field size in bits for FTM_COMBINE_FAULTEN3. */ /*! @brief Read current value of the FTM_COMBINE_FAULTEN3 field. */ #define BR_FTM_COMBINE_FAULTEN3(x) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_FAULTEN3)) /*! @brief Format value for bitfield FTM_COMBINE_FAULTEN3. */ #define BF_FTM_COMBINE_FAULTEN3(v) ((uint32_t)((uint32_t)(v) << BP_FTM_COMBINE_FAULTEN3) & BM_FTM_COMBINE_FAULTEN3) /*! @brief Set the FAULTEN3 field to a new value. */ #define BW_FTM_COMBINE_FAULTEN3(x, v) (BITBAND_ACCESS32(HW_FTM_COMBINE_ADDR(x), BP_FTM_COMBINE_FAULTEN3) = (v)) /*@}*/ /******************************************************************************* * HW_FTM_DEADTIME - Deadtime Insertion Control ******************************************************************************/ /*! * @brief HW_FTM_DEADTIME - Deadtime Insertion Control (RW) * * Reset value: 0x00000000U * * This register selects the deadtime prescaler factor and deadtime value. All * FTM channels use this clock prescaler and this deadtime value for the deadtime * insertion. */ typedef union _hw_ftm_deadtime { uint32_t U; struct _hw_ftm_deadtime_bitfields { uint32_t DTVAL : 6; /*!< [5:0] Deadtime Value */ uint32_t DTPS : 2; /*!< [7:6] Deadtime Prescaler Value */ uint32_t RESERVED0 : 24; /*!< [31:8] */ } B; } hw_ftm_deadtime_t; /*! * @name Constants and macros for entire FTM_DEADTIME register */ /*@{*/ #define HW_FTM_DEADTIME_ADDR(x) ((x) + 0x68U) #define HW_FTM_DEADTIME(x) (*(__IO hw_ftm_deadtime_t *) HW_FTM_DEADTIME_ADDR(x)) #define HW_FTM_DEADTIME_RD(x) (HW_FTM_DEADTIME(x).U) #define HW_FTM_DEADTIME_WR(x, v) (HW_FTM_DEADTIME(x).U = (v)) #define HW_FTM_DEADTIME_SET(x, v) (HW_FTM_DEADTIME_WR(x, HW_FTM_DEADTIME_RD(x) | (v))) #define HW_FTM_DEADTIME_CLR(x, v) (HW_FTM_DEADTIME_WR(x, HW_FTM_DEADTIME_RD(x) & ~(v))) #define HW_FTM_DEADTIME_TOG(x, v) (HW_FTM_DEADTIME_WR(x, HW_FTM_DEADTIME_RD(x) ^ (v))) /*@}*/ /* * Constants & macros for individual FTM_DEADTIME bitfields */ /*! * @name Register FTM_DEADTIME, field DTVAL[5:0] (RW) * * Selects the deadtime insertion value for the deadtime counter. The deadtime * counter is clocked by a scaled version of the system clock. See the description * of DTPS. Deadtime insert value = (DTPS * DTVAL). DTVAL selects the number of * deadtime counts inserted as follows: When DTVAL is 0, no counts are inserted. * When DTVAL is 1, 1 count is inserted. When DTVAL is 2, 2 counts are inserted. * This pattern continues up to a possible 63 counts. This field is write * protected. It can be written only when MODE[WPDIS] = 1. */ /*@{*/ #define BP_FTM_DEADTIME_DTVAL (0U) /*!< Bit position for FTM_DEADTIME_DTVAL. */ #define BM_FTM_DEADTIME_DTVAL (0x0000003FU) /*!< Bit mask for FTM_DEADTIME_DTVAL. */ #define BS_FTM_DEADTIME_DTVAL (6U) /*!< Bit field size in bits for FTM_DEADTIME_DTVAL. */ /*! @brief Read current value of the FTM_DEADTIME_DTVAL field. */ #define BR_FTM_DEADTIME_DTVAL(x) (HW_FTM_DEADTIME(x).B.DTVAL) /*! @brief Format value for bitfield FTM_DEADTIME_DTVAL. */ #define BF_FTM_DEADTIME_DTVAL(v) ((uint32_t)((uint32_t)(v) << BP_FTM_DEADTIME_DTVAL) & BM_FTM_DEADTIME_DTVAL) /*! @brief Set the DTVAL field to a new value. */ #define BW_FTM_DEADTIME_DTVAL(x, v) (HW_FTM_DEADTIME_WR(x, (HW_FTM_DEADTIME_RD(x) & ~BM_FTM_DEADTIME_DTVAL) | BF_FTM_DEADTIME_DTVAL(v))) /*@}*/ /*! * @name Register FTM_DEADTIME, field DTPS[7:6] (RW) * * Selects the division factor of the system clock. This prescaled clock is used * by the deadtime counter. This field is write protected. It can be written * only when MODE[WPDIS] = 1. * * Values: * - 0x - Divide the system clock by 1. * - 10 - Divide the system clock by 4. * - 11 - Divide the system clock by 16. */ /*@{*/ #define BP_FTM_DEADTIME_DTPS (6U) /*!< Bit position for FTM_DEADTIME_DTPS. */ #define BM_FTM_DEADTIME_DTPS (0x000000C0U) /*!< Bit mask for FTM_DEADTIME_DTPS. */ #define BS_FTM_DEADTIME_DTPS (2U) /*!< Bit field size in bits for FTM_DEADTIME_DTPS. */ /*! @brief Read current value of the FTM_DEADTIME_DTPS field. */ #define BR_FTM_DEADTIME_DTPS(x) (HW_FTM_DEADTIME(x).B.DTPS) /*! @brief Format value for bitfield FTM_DEADTIME_DTPS. */ #define BF_FTM_DEADTIME_DTPS(v) ((uint32_t)((uint32_t)(v) << BP_FTM_DEADTIME_DTPS) & BM_FTM_DEADTIME_DTPS) /*! @brief Set the DTPS field to a new value. */ #define BW_FTM_DEADTIME_DTPS(x, v) (HW_FTM_DEADTIME_WR(x, (HW_FTM_DEADTIME_RD(x) & ~BM_FTM_DEADTIME_DTPS) | BF_FTM_DEADTIME_DTPS(v))) /*@}*/ /******************************************************************************* * HW_FTM_EXTTRIG - FTM External Trigger ******************************************************************************/ /*! * @brief HW_FTM_EXTTRIG - FTM External Trigger (RW) * * Reset value: 0x00000000U * * This register: Indicates when a channel trigger was generated Enables the * generation of a trigger when the FTM counter is equal to its initial value * Selects which channels are used in the generation of the channel triggers Several * channels can be selected to generate multiple triggers in one PWM period. * Channels 6 and 7 are not used to generate channel triggers. */ typedef union _hw_ftm_exttrig { uint32_t U; struct _hw_ftm_exttrig_bitfields { uint32_t CH2TRIG : 1; /*!< [0] Channel 2 Trigger Enable */ uint32_t CH3TRIG : 1; /*!< [1] Channel 3 Trigger Enable */ uint32_t CH4TRIG : 1; /*!< [2] Channel 4 Trigger Enable */ uint32_t CH5TRIG : 1; /*!< [3] Channel 5 Trigger Enable */ uint32_t CH0TRIG : 1; /*!< [4] Channel 0 Trigger Enable */ uint32_t CH1TRIG : 1; /*!< [5] Channel 1 Trigger Enable */ uint32_t INITTRIGEN : 1; /*!< [6] Initialization Trigger Enable */ uint32_t TRIGF : 1; /*!< [7] Channel Trigger Flag */ uint32_t RESERVED0 : 24; /*!< [31:8] */ } B; } hw_ftm_exttrig_t; /*! * @name Constants and macros for entire FTM_EXTTRIG register */ /*@{*/ #define HW_FTM_EXTTRIG_ADDR(x) ((x) + 0x6CU) #define HW_FTM_EXTTRIG(x) (*(__IO hw_ftm_exttrig_t *) HW_FTM_EXTTRIG_ADDR(x)) #define HW_FTM_EXTTRIG_RD(x) (HW_FTM_EXTTRIG(x).U) #define HW_FTM_EXTTRIG_WR(x, v) (HW_FTM_EXTTRIG(x).U = (v)) #define HW_FTM_EXTTRIG_SET(x, v) (HW_FTM_EXTTRIG_WR(x, HW_FTM_EXTTRIG_RD(x) | (v))) #define HW_FTM_EXTTRIG_CLR(x, v) (HW_FTM_EXTTRIG_WR(x, HW_FTM_EXTTRIG_RD(x) & ~(v))) #define HW_FTM_EXTTRIG_TOG(x, v) (HW_FTM_EXTTRIG_WR(x, HW_FTM_EXTTRIG_RD(x) ^ (v))) /*@}*/ /* * Constants & macros for individual FTM_EXTTRIG bitfields */ /*! * @name Register FTM_EXTTRIG, field CH2TRIG[0] (RW) * * Enables the generation of the channel trigger when the FTM counter is equal * to the CnV register. * * Values: * - 0 - The generation of the channel trigger is disabled. * - 1 - The generation of the channel trigger is enabled. */ /*@{*/ #define BP_FTM_EXTTRIG_CH2TRIG (0U) /*!< Bit position for FTM_EXTTRIG_CH2TRIG. */ #define BM_FTM_EXTTRIG_CH2TRIG (0x00000001U) /*!< Bit mask for FTM_EXTTRIG_CH2TRIG. */ #define BS_FTM_EXTTRIG_CH2TRIG (1U) /*!< Bit field size in bits for FTM_EXTTRIG_CH2TRIG. */ /*! @brief Read current value of the FTM_EXTTRIG_CH2TRIG field. */ #define BR_FTM_EXTTRIG_CH2TRIG(x) (BITBAND_ACCESS32(HW_FTM_EXTTRIG_ADDR(x), BP_FTM_EXTTRIG_CH2TRIG)) /*! @brief Format value for bitfield FTM_EXTTRIG_CH2TRIG. */ #define BF_FTM_EXTTRIG_CH2TRIG(v) ((uint32_t)((uint32_t)(v) << BP_FTM_EXTTRIG_CH2TRIG) & BM_FTM_EXTTRIG_CH2TRIG) /*! @brief Set the CH2TRIG field to a new value. */ #define BW_FTM_EXTTRIG_CH2TRIG(x, v) (BITBAND_ACCESS32(HW_FTM_EXTTRIG_ADDR(x), BP_FTM_EXTTRIG_CH2TRIG) = (v)) /*@}*/ /*! * @name Register FTM_EXTTRIG, field CH3TRIG[1] (RW) * * Enables the generation of the channel trigger when the FTM counter is equal * to the CnV register. * * Values: * - 0 - The generation of the channel trigger is disabled. * - 1 - The generation of the channel trigger is enabled. */ /*@{*/ #define BP_FTM_EXTTRIG_CH3TRIG (1U) /*!< Bit position for FTM_EXTTRIG_CH3TRIG. */ #define BM_FTM_EXTTRIG_CH3TRIG (0x00000002U) /*!< Bit mask for FTM_EXTTRIG_CH3TRIG. */ #define BS_FTM_EXTTRIG_CH3TRIG (1U) /*!< Bit field size in bits for FTM_EXTTRIG_CH3TRIG. */ /*! @brief Read current value of the FTM_EXTTRIG_CH3TRIG field. */ #define BR_FTM_EXTTRIG_CH3TRIG(x) (BITBAND_ACCESS32(HW_FTM_EXTTRIG_ADDR(x), BP_FTM_EXTTRIG_CH3TRIG)) /*! @brief Format value for bitfield FTM_EXTTRIG_CH3TRIG. */ #define BF_FTM_EXTTRIG_CH3TRIG(v) ((uint32_t)((uint32_t)(v) << BP_FTM_EXTTRIG_CH3TRIG) & BM_FTM_EXTTRIG_CH3TRIG) /*! @brief Set the CH3TRIG field to a new value. */ #define BW_FTM_EXTTRIG_CH3TRIG(x, v) (BITBAND_ACCESS32(HW_FTM_EXTTRIG_ADDR(x), BP_FTM_EXTTRIG_CH3TRIG) = (v)) /*@}*/ /*! * @name Register FTM_EXTTRIG, field CH4TRIG[2] (RW) * * Enables the generation of the channel trigger when the FTM counter is equal * to the CnV register. * * Values: * - 0 - The generation of the channel trigger is disabled. * - 1 - The generation of the channel trigger is enabled. */ /*@{*/ #define BP_FTM_EXTTRIG_CH4TRIG (2U) /*!< Bit position for FTM_EXTTRIG_CH4TRIG. */ #define BM_FTM_EXTTRIG_CH4TRIG (0x00000004U) /*!< Bit mask for FTM_EXTTRIG_CH4TRIG. */ #define BS_FTM_EXTTRIG_CH4TRIG (1U) /*!< Bit field size in bits for FTM_EXTTRIG_CH4TRIG. */ /*! @brief Read current value of the FTM_EXTTRIG_CH4TRIG field. */ #define BR_FTM_EXTTRIG_CH4TRIG(x) (BITBAND_ACCESS32(HW_FTM_EXTTRIG_ADDR(x), BP_FTM_EXTTRIG_CH4TRIG)) /*! @brief Format value for bitfield FTM_EXTTRIG_CH4TRIG. */ #define BF_FTM_EXTTRIG_CH4TRIG(v) ((uint32_t)((uint32_t)(v) << BP_FTM_EXTTRIG_CH4TRIG) & BM_FTM_EXTTRIG_CH4TRIG) /*! @brief Set the CH4TRIG field to a new value. */ #define BW_FTM_EXTTRIG_CH4TRIG(x, v) (BITBAND_ACCESS32(HW_FTM_EXTTRIG_ADDR(x), BP_FTM_EXTTRIG_CH4TRIG) = (v)) /*@}*/ /*! * @name Register FTM_EXTTRIG, field CH5TRIG[3] (RW) * * Enables the generation of the channel trigger when the FTM counter is equal * to the CnV register. * * Values: * - 0 - The generation of the channel trigger is disabled. * - 1 - The generation of the channel trigger is enabled. */ /*@{*/ #define BP_FTM_EXTTRIG_CH5TRIG (3U) /*!< Bit position for FTM_EXTTRIG_CH5TRIG. */ #define BM_FTM_EXTTRIG_CH5TRIG (0x00000008U) /*!< Bit mask for FTM_EXTTRIG_CH5TRIG. */ #define BS_FTM_EXTTRIG_CH5TRIG (1U) /*!< Bit field size in bits for FTM_EXTTRIG_CH5TRIG. */ /*! @brief Read current value of the FTM_EXTTRIG_CH5TRIG field. */ #define BR_FTM_EXTTRIG_CH5TRIG(x) (BITBAND_ACCESS32(HW_FTM_EXTTRIG_ADDR(x), BP_FTM_EXTTRIG_CH5TRIG)) /*! @brief Format value for bitfield FTM_EXTTRIG_CH5TRIG. */ #define BF_FTM_EXTTRIG_CH5TRIG(v) ((uint32_t)((uint32_t)(v) << BP_FTM_EXTTRIG_CH5TRIG) & BM_FTM_EXTTRIG_CH5TRIG) /*! @brief Set the CH5TRIG field to a new value. */ #define BW_FTM_EXTTRIG_CH5TRIG(x, v) (BITBAND_ACCESS32(HW_FTM_EXTTRIG_ADDR(x), BP_FTM_EXTTRIG_CH5TRIG) = (v)) /*@}*/ /*! * @name Register FTM_EXTTRIG, field CH0TRIG[4] (RW) * * Enables the generation of the channel trigger when the FTM counter is equal * to the CnV register. * * Values: * - 0 - The generation of the channel trigger is disabled. * - 1 - The generation of the channel trigger is enabled. */ /*@{*/ #define BP_FTM_EXTTRIG_CH0TRIG (4U) /*!< Bit position for FTM_EXTTRIG_CH0TRIG. */ #define BM_FTM_EXTTRIG_CH0TRIG (0x00000010U) /*!< Bit mask for FTM_EXTTRIG_CH0TRIG. */ #define BS_FTM_EXTTRIG_CH0TRIG (1U) /*!< Bit field size in bits for FTM_EXTTRIG_CH0TRIG. */ /*! @brief Read current value of the FTM_EXTTRIG_CH0TRIG field. */ #define BR_FTM_EXTTRIG_CH0TRIG(x) (BITBAND_ACCESS32(HW_FTM_EXTTRIG_ADDR(x), BP_FTM_EXTTRIG_CH0TRIG)) /*! @brief Format value for bitfield FTM_EXTTRIG_CH0TRIG. */ #define BF_FTM_EXTTRIG_CH0TRIG(v) ((uint32_t)((uint32_t)(v) << BP_FTM_EXTTRIG_CH0TRIG) & BM_FTM_EXTTRIG_CH0TRIG) /*! @brief Set the CH0TRIG field to a new value. */ #define BW_FTM_EXTTRIG_CH0TRIG(x, v) (BITBAND_ACCESS32(HW_FTM_EXTTRIG_ADDR(x), BP_FTM_EXTTRIG_CH0TRIG) = (v)) /*@}*/ /*! * @name Register FTM_EXTTRIG, field CH1TRIG[5] (RW) * * Enables the generation of the channel trigger when the FTM counter is equal * to the CnV register. * * Values: * - 0 - The generation of the channel trigger is disabled. * - 1 - The generation of the channel trigger is enabled. */ /*@{*/ #define BP_FTM_EXTTRIG_CH1TRIG (5U) /*!< Bit position for FTM_EXTTRIG_CH1TRIG. */ #define BM_FTM_EXTTRIG_CH1TRIG (0x00000020U) /*!< Bit mask for FTM_EXTTRIG_CH1TRIG. */ #define BS_FTM_EXTTRIG_CH1TRIG (1U) /*!< Bit field size in bits for FTM_EXTTRIG_CH1TRIG. */ /*! @brief Read current value of the FTM_EXTTRIG_CH1TRIG field. */ #define BR_FTM_EXTTRIG_CH1TRIG(x) (BITBAND_ACCESS32(HW_FTM_EXTTRIG_ADDR(x), BP_FTM_EXTTRIG_CH1TRIG)) /*! @brief Format value for bitfield FTM_EXTTRIG_CH1TRIG. */ #define BF_FTM_EXTTRIG_CH1TRIG(v) ((uint32_t)((uint32_t)(v) << BP_FTM_EXTTRIG_CH1TRIG) & BM_FTM_EXTTRIG_CH1TRIG) /*! @brief Set the CH1TRIG field to a new value. */ #define BW_FTM_EXTTRIG_CH1TRIG(x, v) (BITBAND_ACCESS32(HW_FTM_EXTTRIG_ADDR(x), BP_FTM_EXTTRIG_CH1TRIG) = (v)) /*@}*/ /*! * @name Register FTM_EXTTRIG, field INITTRIGEN[6] (RW) * * Enables the generation of the trigger when the FTM counter is equal to the * CNTIN register. * * Values: * - 0 - The generation of initialization trigger is disabled. * - 1 - The generation of initialization trigger is enabled. */ /*@{*/ #define BP_FTM_EXTTRIG_INITTRIGEN (6U) /*!< Bit position for FTM_EXTTRIG_INITTRIGEN. */ #define BM_FTM_EXTTRIG_INITTRIGEN (0x00000040U) /*!< Bit mask for FTM_EXTTRIG_INITTRIGEN. */ #define BS_FTM_EXTTRIG_INITTRIGEN (1U) /*!< Bit field size in bits for FTM_EXTTRIG_INITTRIGEN. */ /*! @brief Read current value of the FTM_EXTTRIG_INITTRIGEN field. */ #define BR_FTM_EXTTRIG_INITTRIGEN(x) (BITBAND_ACCESS32(HW_FTM_EXTTRIG_ADDR(x), BP_FTM_EXTTRIG_INITTRIGEN)) /*! @brief Format value for bitfield FTM_EXTTRIG_INITTRIGEN. */ #define BF_FTM_EXTTRIG_INITTRIGEN(v) ((uint32_t)((uint32_t)(v) << BP_FTM_EXTTRIG_INITTRIGEN) & BM_FTM_EXTTRIG_INITTRIGEN) /*! @brief Set the INITTRIGEN field to a new value. */ #define BW_FTM_EXTTRIG_INITTRIGEN(x, v) (BITBAND_ACCESS32(HW_FTM_EXTTRIG_ADDR(x), BP_FTM_EXTTRIG_INITTRIGEN) = (v)) /*@}*/ /*! * @name Register FTM_EXTTRIG, field TRIGF[7] (ROWZ) * * Set by hardware when a channel trigger is generated. Clear TRIGF by reading * EXTTRIG while TRIGF is set and then writing a 0 to TRIGF. Writing a 1 to TRIGF * has no effect. If another channel trigger is generated before the clearing * sequence is completed, the sequence is reset so TRIGF remains set after the clear * sequence is completed for the earlier TRIGF. * * Values: * - 0 - No channel trigger was generated. * - 1 - A channel trigger was generated. */ /*@{*/ #define BP_FTM_EXTTRIG_TRIGF (7U) /*!< Bit position for FTM_EXTTRIG_TRIGF. */ #define BM_FTM_EXTTRIG_TRIGF (0x00000080U) /*!< Bit mask for FTM_EXTTRIG_TRIGF. */ #define BS_FTM_EXTTRIG_TRIGF (1U) /*!< Bit field size in bits for FTM_EXTTRIG_TRIGF. */ /*! @brief Read current value of the FTM_EXTTRIG_TRIGF field. */ #define BR_FTM_EXTTRIG_TRIGF(x) (BITBAND_ACCESS32(HW_FTM_EXTTRIG_ADDR(x), BP_FTM_EXTTRIG_TRIGF)) /*! @brief Format value for bitfield FTM_EXTTRIG_TRIGF. */ #define BF_FTM_EXTTRIG_TRIGF(v) ((uint32_t)((uint32_t)(v) << BP_FTM_EXTTRIG_TRIGF) & BM_FTM_EXTTRIG_TRIGF) /*! @brief Set the TRIGF field to a new value. */ #define BW_FTM_EXTTRIG_TRIGF(x, v) (BITBAND_ACCESS32(HW_FTM_EXTTRIG_ADDR(x), BP_FTM_EXTTRIG_TRIGF) = (v)) /*@}*/ /******************************************************************************* * HW_FTM_POL - Channels Polarity ******************************************************************************/ /*! * @brief HW_FTM_POL - Channels Polarity (RW) * * Reset value: 0x00000000U * * This register defines the output polarity of the FTM channels. The safe value * that is driven in a channel output when the fault control is enabled and a * fault condition is detected is the inactive state of the channel. That is, the * safe value of a channel is the value of its POL bit. */ typedef union _hw_ftm_pol { uint32_t U; struct _hw_ftm_pol_bitfields { uint32_t POL0 : 1; /*!< [0] Channel 0 Polarity */ uint32_t POL1 : 1; /*!< [1] Channel 1 Polarity */ uint32_t POL2 : 1; /*!< [2] Channel 2 Polarity */ uint32_t POL3 : 1; /*!< [3] Channel 3 Polarity */ uint32_t POL4 : 1; /*!< [4] Channel 4 Polarity */ uint32_t POL5 : 1; /*!< [5] Channel 5 Polarity */ uint32_t POL6 : 1; /*!< [6] Channel 6 Polarity */ uint32_t POL7 : 1; /*!< [7] Channel 7 Polarity */ uint32_t RESERVED0 : 24; /*!< [31:8] */ } B; } hw_ftm_pol_t; /*! * @name Constants and macros for entire FTM_POL register */ /*@{*/ #define HW_FTM_POL_ADDR(x) ((x) + 0x70U) #define HW_FTM_POL(x) (*(__IO hw_ftm_pol_t *) HW_FTM_POL_ADDR(x)) #define HW_FTM_POL_RD(x) (HW_FTM_POL(x).U) #define HW_FTM_POL_WR(x, v) (HW_FTM_POL(x).U = (v)) #define HW_FTM_POL_SET(x, v) (HW_FTM_POL_WR(x, HW_FTM_POL_RD(x) | (v))) #define HW_FTM_POL_CLR(x, v) (HW_FTM_POL_WR(x, HW_FTM_POL_RD(x) & ~(v))) #define HW_FTM_POL_TOG(x, v) (HW_FTM_POL_WR(x, HW_FTM_POL_RD(x) ^ (v))) /*@}*/ /* * Constants & macros for individual FTM_POL bitfields */ /*! * @name Register FTM_POL, field POL0[0] (RW) * * Defines the polarity of the channel output. This field is write protected. It * can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - The channel polarity is active high. * - 1 - The channel polarity is active low. */ /*@{*/ #define BP_FTM_POL_POL0 (0U) /*!< Bit position for FTM_POL_POL0. */ #define BM_FTM_POL_POL0 (0x00000001U) /*!< Bit mask for FTM_POL_POL0. */ #define BS_FTM_POL_POL0 (1U) /*!< Bit field size in bits for FTM_POL_POL0. */ /*! @brief Read current value of the FTM_POL_POL0 field. */ #define BR_FTM_POL_POL0(x) (BITBAND_ACCESS32(HW_FTM_POL_ADDR(x), BP_FTM_POL_POL0)) /*! @brief Format value for bitfield FTM_POL_POL0. */ #define BF_FTM_POL_POL0(v) ((uint32_t)((uint32_t)(v) << BP_FTM_POL_POL0) & BM_FTM_POL_POL0) /*! @brief Set the POL0 field to a new value. */ #define BW_FTM_POL_POL0(x, v) (BITBAND_ACCESS32(HW_FTM_POL_ADDR(x), BP_FTM_POL_POL0) = (v)) /*@}*/ /*! * @name Register FTM_POL, field POL1[1] (RW) * * Defines the polarity of the channel output. This field is write protected. It * can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - The channel polarity is active high. * - 1 - The channel polarity is active low. */ /*@{*/ #define BP_FTM_POL_POL1 (1U) /*!< Bit position for FTM_POL_POL1. */ #define BM_FTM_POL_POL1 (0x00000002U) /*!< Bit mask for FTM_POL_POL1. */ #define BS_FTM_POL_POL1 (1U) /*!< Bit field size in bits for FTM_POL_POL1. */ /*! @brief Read current value of the FTM_POL_POL1 field. */ #define BR_FTM_POL_POL1(x) (BITBAND_ACCESS32(HW_FTM_POL_ADDR(x), BP_FTM_POL_POL1)) /*! @brief Format value for bitfield FTM_POL_POL1. */ #define BF_FTM_POL_POL1(v) ((uint32_t)((uint32_t)(v) << BP_FTM_POL_POL1) & BM_FTM_POL_POL1) /*! @brief Set the POL1 field to a new value. */ #define BW_FTM_POL_POL1(x, v) (BITBAND_ACCESS32(HW_FTM_POL_ADDR(x), BP_FTM_POL_POL1) = (v)) /*@}*/ /*! * @name Register FTM_POL, field POL2[2] (RW) * * Defines the polarity of the channel output. This field is write protected. It * can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - The channel polarity is active high. * - 1 - The channel polarity is active low. */ /*@{*/ #define BP_FTM_POL_POL2 (2U) /*!< Bit position for FTM_POL_POL2. */ #define BM_FTM_POL_POL2 (0x00000004U) /*!< Bit mask for FTM_POL_POL2. */ #define BS_FTM_POL_POL2 (1U) /*!< Bit field size in bits for FTM_POL_POL2. */ /*! @brief Read current value of the FTM_POL_POL2 field. */ #define BR_FTM_POL_POL2(x) (BITBAND_ACCESS32(HW_FTM_POL_ADDR(x), BP_FTM_POL_POL2)) /*! @brief Format value for bitfield FTM_POL_POL2. */ #define BF_FTM_POL_POL2(v) ((uint32_t)((uint32_t)(v) << BP_FTM_POL_POL2) & BM_FTM_POL_POL2) /*! @brief Set the POL2 field to a new value. */ #define BW_FTM_POL_POL2(x, v) (BITBAND_ACCESS32(HW_FTM_POL_ADDR(x), BP_FTM_POL_POL2) = (v)) /*@}*/ /*! * @name Register FTM_POL, field POL3[3] (RW) * * Defines the polarity of the channel output. This field is write protected. It * can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - The channel polarity is active high. * - 1 - The channel polarity is active low. */ /*@{*/ #define BP_FTM_POL_POL3 (3U) /*!< Bit position for FTM_POL_POL3. */ #define BM_FTM_POL_POL3 (0x00000008U) /*!< Bit mask for FTM_POL_POL3. */ #define BS_FTM_POL_POL3 (1U) /*!< Bit field size in bits for FTM_POL_POL3. */ /*! @brief Read current value of the FTM_POL_POL3 field. */ #define BR_FTM_POL_POL3(x) (BITBAND_ACCESS32(HW_FTM_POL_ADDR(x), BP_FTM_POL_POL3)) /*! @brief Format value for bitfield FTM_POL_POL3. */ #define BF_FTM_POL_POL3(v) ((uint32_t)((uint32_t)(v) << BP_FTM_POL_POL3) & BM_FTM_POL_POL3) /*! @brief Set the POL3 field to a new value. */ #define BW_FTM_POL_POL3(x, v) (BITBAND_ACCESS32(HW_FTM_POL_ADDR(x), BP_FTM_POL_POL3) = (v)) /*@}*/ /*! * @name Register FTM_POL, field POL4[4] (RW) * * Defines the polarity of the channel output. This field is write protected. It * can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - The channel polarity is active high. * - 1 - The channel polarity is active low. */ /*@{*/ #define BP_FTM_POL_POL4 (4U) /*!< Bit position for FTM_POL_POL4. */ #define BM_FTM_POL_POL4 (0x00000010U) /*!< Bit mask for FTM_POL_POL4. */ #define BS_FTM_POL_POL4 (1U) /*!< Bit field size in bits for FTM_POL_POL4. */ /*! @brief Read current value of the FTM_POL_POL4 field. */ #define BR_FTM_POL_POL4(x) (BITBAND_ACCESS32(HW_FTM_POL_ADDR(x), BP_FTM_POL_POL4)) /*! @brief Format value for bitfield FTM_POL_POL4. */ #define BF_FTM_POL_POL4(v) ((uint32_t)((uint32_t)(v) << BP_FTM_POL_POL4) & BM_FTM_POL_POL4) /*! @brief Set the POL4 field to a new value. */ #define BW_FTM_POL_POL4(x, v) (BITBAND_ACCESS32(HW_FTM_POL_ADDR(x), BP_FTM_POL_POL4) = (v)) /*@}*/ /*! * @name Register FTM_POL, field POL5[5] (RW) * * Defines the polarity of the channel output. This field is write protected. It * can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - The channel polarity is active high. * - 1 - The channel polarity is active low. */ /*@{*/ #define BP_FTM_POL_POL5 (5U) /*!< Bit position for FTM_POL_POL5. */ #define BM_FTM_POL_POL5 (0x00000020U) /*!< Bit mask for FTM_POL_POL5. */ #define BS_FTM_POL_POL5 (1U) /*!< Bit field size in bits for FTM_POL_POL5. */ /*! @brief Read current value of the FTM_POL_POL5 field. */ #define BR_FTM_POL_POL5(x) (BITBAND_ACCESS32(HW_FTM_POL_ADDR(x), BP_FTM_POL_POL5)) /*! @brief Format value for bitfield FTM_POL_POL5. */ #define BF_FTM_POL_POL5(v) ((uint32_t)((uint32_t)(v) << BP_FTM_POL_POL5) & BM_FTM_POL_POL5) /*! @brief Set the POL5 field to a new value. */ #define BW_FTM_POL_POL5(x, v) (BITBAND_ACCESS32(HW_FTM_POL_ADDR(x), BP_FTM_POL_POL5) = (v)) /*@}*/ /*! * @name Register FTM_POL, field POL6[6] (RW) * * Defines the polarity of the channel output. This field is write protected. It * can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - The channel polarity is active high. * - 1 - The channel polarity is active low. */ /*@{*/ #define BP_FTM_POL_POL6 (6U) /*!< Bit position for FTM_POL_POL6. */ #define BM_FTM_POL_POL6 (0x00000040U) /*!< Bit mask for FTM_POL_POL6. */ #define BS_FTM_POL_POL6 (1U) /*!< Bit field size in bits for FTM_POL_POL6. */ /*! @brief Read current value of the FTM_POL_POL6 field. */ #define BR_FTM_POL_POL6(x) (BITBAND_ACCESS32(HW_FTM_POL_ADDR(x), BP_FTM_POL_POL6)) /*! @brief Format value for bitfield FTM_POL_POL6. */ #define BF_FTM_POL_POL6(v) ((uint32_t)((uint32_t)(v) << BP_FTM_POL_POL6) & BM_FTM_POL_POL6) /*! @brief Set the POL6 field to a new value. */ #define BW_FTM_POL_POL6(x, v) (BITBAND_ACCESS32(HW_FTM_POL_ADDR(x), BP_FTM_POL_POL6) = (v)) /*@}*/ /*! * @name Register FTM_POL, field POL7[7] (RW) * * Defines the polarity of the channel output. This field is write protected. It * can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - The channel polarity is active high. * - 1 - The channel polarity is active low. */ /*@{*/ #define BP_FTM_POL_POL7 (7U) /*!< Bit position for FTM_POL_POL7. */ #define BM_FTM_POL_POL7 (0x00000080U) /*!< Bit mask for FTM_POL_POL7. */ #define BS_FTM_POL_POL7 (1U) /*!< Bit field size in bits for FTM_POL_POL7. */ /*! @brief Read current value of the FTM_POL_POL7 field. */ #define BR_FTM_POL_POL7(x) (BITBAND_ACCESS32(HW_FTM_POL_ADDR(x), BP_FTM_POL_POL7)) /*! @brief Format value for bitfield FTM_POL_POL7. */ #define BF_FTM_POL_POL7(v) ((uint32_t)((uint32_t)(v) << BP_FTM_POL_POL7) & BM_FTM_POL_POL7) /*! @brief Set the POL7 field to a new value. */ #define BW_FTM_POL_POL7(x, v) (BITBAND_ACCESS32(HW_FTM_POL_ADDR(x), BP_FTM_POL_POL7) = (v)) /*@}*/ /******************************************************************************* * HW_FTM_FMS - Fault Mode Status ******************************************************************************/ /*! * @brief HW_FTM_FMS - Fault Mode Status (RW) * * Reset value: 0x00000000U * * This register contains the fault detection flags, write protection enable * bit, and the logic OR of the enabled fault inputs. */ typedef union _hw_ftm_fms { uint32_t U; struct _hw_ftm_fms_bitfields { uint32_t FAULTF0 : 1; /*!< [0] Fault Detection Flag 0 */ uint32_t FAULTF1 : 1; /*!< [1] Fault Detection Flag 1 */ uint32_t FAULTF2 : 1; /*!< [2] Fault Detection Flag 2 */ uint32_t FAULTF3 : 1; /*!< [3] Fault Detection Flag 3 */ uint32_t RESERVED0 : 1; /*!< [4] */ uint32_t FAULTIN : 1; /*!< [5] Fault Inputs */ uint32_t WPEN : 1; /*!< [6] Write Protection Enable */ uint32_t FAULTF : 1; /*!< [7] Fault Detection Flag */ uint32_t RESERVED1 : 24; /*!< [31:8] */ } B; } hw_ftm_fms_t; /*! * @name Constants and macros for entire FTM_FMS register */ /*@{*/ #define HW_FTM_FMS_ADDR(x) ((x) + 0x74U) #define HW_FTM_FMS(x) (*(__IO hw_ftm_fms_t *) HW_FTM_FMS_ADDR(x)) #define HW_FTM_FMS_RD(x) (HW_FTM_FMS(x).U) #define HW_FTM_FMS_WR(x, v) (HW_FTM_FMS(x).U = (v)) #define HW_FTM_FMS_SET(x, v) (HW_FTM_FMS_WR(x, HW_FTM_FMS_RD(x) | (v))) #define HW_FTM_FMS_CLR(x, v) (HW_FTM_FMS_WR(x, HW_FTM_FMS_RD(x) & ~(v))) #define HW_FTM_FMS_TOG(x, v) (HW_FTM_FMS_WR(x, HW_FTM_FMS_RD(x) ^ (v))) /*@}*/ /* * Constants & macros for individual FTM_FMS bitfields */ /*! * @name Register FTM_FMS, field FAULTF0[0] (ROWZ) * * Set by hardware when fault control is enabled, the corresponding fault input * is enabled and a fault condition is detected at the fault input. Clear FAULTF0 * by reading the FMS register while FAULTF0 is set and then writing a 0 to * FAULTF0 while there is no existing fault condition at the corresponding fault * input. Writing a 1 to FAULTF0 has no effect. FAULTF0 bit is also cleared when * FAULTF bit is cleared. If another fault condition is detected at the corresponding * fault input before the clearing sequence is completed, the sequence is reset * so FAULTF0 remains set after the clearing sequence is completed for the * earlier fault condition. * * Values: * - 0 - No fault condition was detected at the fault input. * - 1 - A fault condition was detected at the fault input. */ /*@{*/ #define BP_FTM_FMS_FAULTF0 (0U) /*!< Bit position for FTM_FMS_FAULTF0. */ #define BM_FTM_FMS_FAULTF0 (0x00000001U) /*!< Bit mask for FTM_FMS_FAULTF0. */ #define BS_FTM_FMS_FAULTF0 (1U) /*!< Bit field size in bits for FTM_FMS_FAULTF0. */ /*! @brief Read current value of the FTM_FMS_FAULTF0 field. */ #define BR_FTM_FMS_FAULTF0(x) (BITBAND_ACCESS32(HW_FTM_FMS_ADDR(x), BP_FTM_FMS_FAULTF0)) /*! @brief Format value for bitfield FTM_FMS_FAULTF0. */ #define BF_FTM_FMS_FAULTF0(v) ((uint32_t)((uint32_t)(v) << BP_FTM_FMS_FAULTF0) & BM_FTM_FMS_FAULTF0) /*! @brief Set the FAULTF0 field to a new value. */ #define BW_FTM_FMS_FAULTF0(x, v) (BITBAND_ACCESS32(HW_FTM_FMS_ADDR(x), BP_FTM_FMS_FAULTF0) = (v)) /*@}*/ /*! * @name Register FTM_FMS, field FAULTF1[1] (ROWZ) * * Set by hardware when fault control is enabled, the corresponding fault input * is enabled and a fault condition is detected at the fault input. Clear FAULTF1 * by reading the FMS register while FAULTF1 is set and then writing a 0 to * FAULTF1 while there is no existing fault condition at the corresponding fault * input. Writing a 1 to FAULTF1 has no effect. FAULTF1 bit is also cleared when * FAULTF bit is cleared. If another fault condition is detected at the corresponding * fault input before the clearing sequence is completed, the sequence is reset * so FAULTF1 remains set after the clearing sequence is completed for the * earlier fault condition. * * Values: * - 0 - No fault condition was detected at the fault input. * - 1 - A fault condition was detected at the fault input. */ /*@{*/ #define BP_FTM_FMS_FAULTF1 (1U) /*!< Bit position for FTM_FMS_FAULTF1. */ #define BM_FTM_FMS_FAULTF1 (0x00000002U) /*!< Bit mask for FTM_FMS_FAULTF1. */ #define BS_FTM_FMS_FAULTF1 (1U) /*!< Bit field size in bits for FTM_FMS_FAULTF1. */ /*! @brief Read current value of the FTM_FMS_FAULTF1 field. */ #define BR_FTM_FMS_FAULTF1(x) (BITBAND_ACCESS32(HW_FTM_FMS_ADDR(x), BP_FTM_FMS_FAULTF1)) /*! @brief Format value for bitfield FTM_FMS_FAULTF1. */ #define BF_FTM_FMS_FAULTF1(v) ((uint32_t)((uint32_t)(v) << BP_FTM_FMS_FAULTF1) & BM_FTM_FMS_FAULTF1) /*! @brief Set the FAULTF1 field to a new value. */ #define BW_FTM_FMS_FAULTF1(x, v) (BITBAND_ACCESS32(HW_FTM_FMS_ADDR(x), BP_FTM_FMS_FAULTF1) = (v)) /*@}*/ /*! * @name Register FTM_FMS, field FAULTF2[2] (ROWZ) * * Set by hardware when fault control is enabled, the corresponding fault input * is enabled and a fault condition is detected at the fault input. Clear FAULTF2 * by reading the FMS register while FAULTF2 is set and then writing a 0 to * FAULTF2 while there is no existing fault condition at the corresponding fault * input. Writing a 1 to FAULTF2 has no effect. FAULTF2 bit is also cleared when * FAULTF bit is cleared. If another fault condition is detected at the corresponding * fault input before the clearing sequence is completed, the sequence is reset * so FAULTF2 remains set after the clearing sequence is completed for the * earlier fault condition. * * Values: * - 0 - No fault condition was detected at the fault input. * - 1 - A fault condition was detected at the fault input. */ /*@{*/ #define BP_FTM_FMS_FAULTF2 (2U) /*!< Bit position for FTM_FMS_FAULTF2. */ #define BM_FTM_FMS_FAULTF2 (0x00000004U) /*!< Bit mask for FTM_FMS_FAULTF2. */ #define BS_FTM_FMS_FAULTF2 (1U) /*!< Bit field size in bits for FTM_FMS_FAULTF2. */ /*! @brief Read current value of the FTM_FMS_FAULTF2 field. */ #define BR_FTM_FMS_FAULTF2(x) (BITBAND_ACCESS32(HW_FTM_FMS_ADDR(x), BP_FTM_FMS_FAULTF2)) /*! @brief Format value for bitfield FTM_FMS_FAULTF2. */ #define BF_FTM_FMS_FAULTF2(v) ((uint32_t)((uint32_t)(v) << BP_FTM_FMS_FAULTF2) & BM_FTM_FMS_FAULTF2) /*! @brief Set the FAULTF2 field to a new value. */ #define BW_FTM_FMS_FAULTF2(x, v) (BITBAND_ACCESS32(HW_FTM_FMS_ADDR(x), BP_FTM_FMS_FAULTF2) = (v)) /*@}*/ /*! * @name Register FTM_FMS, field FAULTF3[3] (ROWZ) * * Set by hardware when fault control is enabled, the corresponding fault input * is enabled and a fault condition is detected at the fault input. Clear FAULTF3 * by reading the FMS register while FAULTF3 is set and then writing a 0 to * FAULTF3 while there is no existing fault condition at the corresponding fault * input. Writing a 1 to FAULTF3 has no effect. FAULTF3 bit is also cleared when * FAULTF bit is cleared. If another fault condition is detected at the corresponding * fault input before the clearing sequence is completed, the sequence is reset * so FAULTF3 remains set after the clearing sequence is completed for the * earlier fault condition. * * Values: * - 0 - No fault condition was detected at the fault input. * - 1 - A fault condition was detected at the fault input. */ /*@{*/ #define BP_FTM_FMS_FAULTF3 (3U) /*!< Bit position for FTM_FMS_FAULTF3. */ #define BM_FTM_FMS_FAULTF3 (0x00000008U) /*!< Bit mask for FTM_FMS_FAULTF3. */ #define BS_FTM_FMS_FAULTF3 (1U) /*!< Bit field size in bits for FTM_FMS_FAULTF3. */ /*! @brief Read current value of the FTM_FMS_FAULTF3 field. */ #define BR_FTM_FMS_FAULTF3(x) (BITBAND_ACCESS32(HW_FTM_FMS_ADDR(x), BP_FTM_FMS_FAULTF3)) /*! @brief Format value for bitfield FTM_FMS_FAULTF3. */ #define BF_FTM_FMS_FAULTF3(v) ((uint32_t)((uint32_t)(v) << BP_FTM_FMS_FAULTF3) & BM_FTM_FMS_FAULTF3) /*! @brief Set the FAULTF3 field to a new value. */ #define BW_FTM_FMS_FAULTF3(x, v) (BITBAND_ACCESS32(HW_FTM_FMS_ADDR(x), BP_FTM_FMS_FAULTF3) = (v)) /*@}*/ /*! * @name Register FTM_FMS, field FAULTIN[5] (RO) * * Represents the logic OR of the enabled fault inputs after their filter (if * their filter is enabled) when fault control is enabled. * * Values: * - 0 - The logic OR of the enabled fault inputs is 0. * - 1 - The logic OR of the enabled fault inputs is 1. */ /*@{*/ #define BP_FTM_FMS_FAULTIN (5U) /*!< Bit position for FTM_FMS_FAULTIN. */ #define BM_FTM_FMS_FAULTIN (0x00000020U) /*!< Bit mask for FTM_FMS_FAULTIN. */ #define BS_FTM_FMS_FAULTIN (1U) /*!< Bit field size in bits for FTM_FMS_FAULTIN. */ /*! @brief Read current value of the FTM_FMS_FAULTIN field. */ #define BR_FTM_FMS_FAULTIN(x) (BITBAND_ACCESS32(HW_FTM_FMS_ADDR(x), BP_FTM_FMS_FAULTIN)) /*@}*/ /*! * @name Register FTM_FMS, field WPEN[6] (RW) * * The WPEN bit is the negation of the WPDIS bit. WPEN is set when 1 is written * to it. WPEN is cleared when WPEN bit is read as a 1 and then 1 is written to * WPDIS. Writing 0 to WPEN has no effect. * * Values: * - 0 - Write protection is disabled. Write protected bits can be written. * - 1 - Write protection is enabled. Write protected bits cannot be written. */ /*@{*/ #define BP_FTM_FMS_WPEN (6U) /*!< Bit position for FTM_FMS_WPEN. */ #define BM_FTM_FMS_WPEN (0x00000040U) /*!< Bit mask for FTM_FMS_WPEN. */ #define BS_FTM_FMS_WPEN (1U) /*!< Bit field size in bits for FTM_FMS_WPEN. */ /*! @brief Read current value of the FTM_FMS_WPEN field. */ #define BR_FTM_FMS_WPEN(x) (BITBAND_ACCESS32(HW_FTM_FMS_ADDR(x), BP_FTM_FMS_WPEN)) /*! @brief Format value for bitfield FTM_FMS_WPEN. */ #define BF_FTM_FMS_WPEN(v) ((uint32_t)((uint32_t)(v) << BP_FTM_FMS_WPEN) & BM_FTM_FMS_WPEN) /*! @brief Set the WPEN field to a new value. */ #define BW_FTM_FMS_WPEN(x, v) (BITBAND_ACCESS32(HW_FTM_FMS_ADDR(x), BP_FTM_FMS_WPEN) = (v)) /*@}*/ /*! * @name Register FTM_FMS, field FAULTF[7] (ROWZ) * * Represents the logic OR of the individual FAULTFj bits where j = 3, 2, 1, 0. * Clear FAULTF by reading the FMS register while FAULTF is set and then writing * a 0 to FAULTF while there is no existing fault condition at the enabled fault * inputs. Writing a 1 to FAULTF has no effect. If another fault condition is * detected in an enabled fault input before the clearing sequence is completed, the * sequence is reset so FAULTF remains set after the clearing sequence is * completed for the earlier fault condition. FAULTF is also cleared when FAULTFj bits * are cleared individually. * * Values: * - 0 - No fault condition was detected. * - 1 - A fault condition was detected. */ /*@{*/ #define BP_FTM_FMS_FAULTF (7U) /*!< Bit position for FTM_FMS_FAULTF. */ #define BM_FTM_FMS_FAULTF (0x00000080U) /*!< Bit mask for FTM_FMS_FAULTF. */ #define BS_FTM_FMS_FAULTF (1U) /*!< Bit field size in bits for FTM_FMS_FAULTF. */ /*! @brief Read current value of the FTM_FMS_FAULTF field. */ #define BR_FTM_FMS_FAULTF(x) (BITBAND_ACCESS32(HW_FTM_FMS_ADDR(x), BP_FTM_FMS_FAULTF)) /*! @brief Format value for bitfield FTM_FMS_FAULTF. */ #define BF_FTM_FMS_FAULTF(v) ((uint32_t)((uint32_t)(v) << BP_FTM_FMS_FAULTF) & BM_FTM_FMS_FAULTF) /*! @brief Set the FAULTF field to a new value. */ #define BW_FTM_FMS_FAULTF(x, v) (BITBAND_ACCESS32(HW_FTM_FMS_ADDR(x), BP_FTM_FMS_FAULTF) = (v)) /*@}*/ /******************************************************************************* * HW_FTM_FILTER - Input Capture Filter Control ******************************************************************************/ /*! * @brief HW_FTM_FILTER - Input Capture Filter Control (RW) * * Reset value: 0x00000000U * * This register selects the filter value for the inputs of channels. Channels * 4, 5, 6 and 7 do not have an input filter. Writing to the FILTER register has * immediate effect and must be done only when the channels 0, 1, 2, and 3 are not * in input modes. Failure to do this could result in a missing valid signal. */ typedef union _hw_ftm_filter { uint32_t U; struct _hw_ftm_filter_bitfields { uint32_t CH0FVAL : 4; /*!< [3:0] Channel 0 Input Filter */ uint32_t CH1FVAL : 4; /*!< [7:4] Channel 1 Input Filter */ uint32_t CH2FVAL : 4; /*!< [11:8] Channel 2 Input Filter */ uint32_t CH3FVAL : 4; /*!< [15:12] Channel 3 Input Filter */ uint32_t RESERVED0 : 16; /*!< [31:16] */ } B; } hw_ftm_filter_t; /*! * @name Constants and macros for entire FTM_FILTER register */ /*@{*/ #define HW_FTM_FILTER_ADDR(x) ((x) + 0x78U) #define HW_FTM_FILTER(x) (*(__IO hw_ftm_filter_t *) HW_FTM_FILTER_ADDR(x)) #define HW_FTM_FILTER_RD(x) (HW_FTM_FILTER(x).U) #define HW_FTM_FILTER_WR(x, v) (HW_FTM_FILTER(x).U = (v)) #define HW_FTM_FILTER_SET(x, v) (HW_FTM_FILTER_WR(x, HW_FTM_FILTER_RD(x) | (v))) #define HW_FTM_FILTER_CLR(x, v) (HW_FTM_FILTER_WR(x, HW_FTM_FILTER_RD(x) & ~(v))) #define HW_FTM_FILTER_TOG(x, v) (HW_FTM_FILTER_WR(x, HW_FTM_FILTER_RD(x) ^ (v))) /*@}*/ /* * Constants & macros for individual FTM_FILTER bitfields */ /*! * @name Register FTM_FILTER, field CH0FVAL[3:0] (RW) * * Selects the filter value for the channel input. The filter is disabled when * the value is zero. */ /*@{*/ #define BP_FTM_FILTER_CH0FVAL (0U) /*!< Bit position for FTM_FILTER_CH0FVAL. */ #define BM_FTM_FILTER_CH0FVAL (0x0000000FU) /*!< Bit mask for FTM_FILTER_CH0FVAL. */ #define BS_FTM_FILTER_CH0FVAL (4U) /*!< Bit field size in bits for FTM_FILTER_CH0FVAL. */ /*! @brief Read current value of the FTM_FILTER_CH0FVAL field. */ #define BR_FTM_FILTER_CH0FVAL(x) (HW_FTM_FILTER(x).B.CH0FVAL) /*! @brief Format value for bitfield FTM_FILTER_CH0FVAL. */ #define BF_FTM_FILTER_CH0FVAL(v) ((uint32_t)((uint32_t)(v) << BP_FTM_FILTER_CH0FVAL) & BM_FTM_FILTER_CH0FVAL) /*! @brief Set the CH0FVAL field to a new value. */ #define BW_FTM_FILTER_CH0FVAL(x, v) (HW_FTM_FILTER_WR(x, (HW_FTM_FILTER_RD(x) & ~BM_FTM_FILTER_CH0FVAL) | BF_FTM_FILTER_CH0FVAL(v))) /*@}*/ /*! * @name Register FTM_FILTER, field CH1FVAL[7:4] (RW) * * Selects the filter value for the channel input. The filter is disabled when * the value is zero. */ /*@{*/ #define BP_FTM_FILTER_CH1FVAL (4U) /*!< Bit position for FTM_FILTER_CH1FVAL. */ #define BM_FTM_FILTER_CH1FVAL (0x000000F0U) /*!< Bit mask for FTM_FILTER_CH1FVAL. */ #define BS_FTM_FILTER_CH1FVAL (4U) /*!< Bit field size in bits for FTM_FILTER_CH1FVAL. */ /*! @brief Read current value of the FTM_FILTER_CH1FVAL field. */ #define BR_FTM_FILTER_CH1FVAL(x) (HW_FTM_FILTER(x).B.CH1FVAL) /*! @brief Format value for bitfield FTM_FILTER_CH1FVAL. */ #define BF_FTM_FILTER_CH1FVAL(v) ((uint32_t)((uint32_t)(v) << BP_FTM_FILTER_CH1FVAL) & BM_FTM_FILTER_CH1FVAL) /*! @brief Set the CH1FVAL field to a new value. */ #define BW_FTM_FILTER_CH1FVAL(x, v) (HW_FTM_FILTER_WR(x, (HW_FTM_FILTER_RD(x) & ~BM_FTM_FILTER_CH1FVAL) | BF_FTM_FILTER_CH1FVAL(v))) /*@}*/ /*! * @name Register FTM_FILTER, field CH2FVAL[11:8] (RW) * * Selects the filter value for the channel input. The filter is disabled when * the value is zero. */ /*@{*/ #define BP_FTM_FILTER_CH2FVAL (8U) /*!< Bit position for FTM_FILTER_CH2FVAL. */ #define BM_FTM_FILTER_CH2FVAL (0x00000F00U) /*!< Bit mask for FTM_FILTER_CH2FVAL. */ #define BS_FTM_FILTER_CH2FVAL (4U) /*!< Bit field size in bits for FTM_FILTER_CH2FVAL. */ /*! @brief Read current value of the FTM_FILTER_CH2FVAL field. */ #define BR_FTM_FILTER_CH2FVAL(x) (HW_FTM_FILTER(x).B.CH2FVAL) /*! @brief Format value for bitfield FTM_FILTER_CH2FVAL. */ #define BF_FTM_FILTER_CH2FVAL(v) ((uint32_t)((uint32_t)(v) << BP_FTM_FILTER_CH2FVAL) & BM_FTM_FILTER_CH2FVAL) /*! @brief Set the CH2FVAL field to a new value. */ #define BW_FTM_FILTER_CH2FVAL(x, v) (HW_FTM_FILTER_WR(x, (HW_FTM_FILTER_RD(x) & ~BM_FTM_FILTER_CH2FVAL) | BF_FTM_FILTER_CH2FVAL(v))) /*@}*/ /*! * @name Register FTM_FILTER, field CH3FVAL[15:12] (RW) * * Selects the filter value for the channel input. The filter is disabled when * the value is zero. */ /*@{*/ #define BP_FTM_FILTER_CH3FVAL (12U) /*!< Bit position for FTM_FILTER_CH3FVAL. */ #define BM_FTM_FILTER_CH3FVAL (0x0000F000U) /*!< Bit mask for FTM_FILTER_CH3FVAL. */ #define BS_FTM_FILTER_CH3FVAL (4U) /*!< Bit field size in bits for FTM_FILTER_CH3FVAL. */ /*! @brief Read current value of the FTM_FILTER_CH3FVAL field. */ #define BR_FTM_FILTER_CH3FVAL(x) (HW_FTM_FILTER(x).B.CH3FVAL) /*! @brief Format value for bitfield FTM_FILTER_CH3FVAL. */ #define BF_FTM_FILTER_CH3FVAL(v) ((uint32_t)((uint32_t)(v) << BP_FTM_FILTER_CH3FVAL) & BM_FTM_FILTER_CH3FVAL) /*! @brief Set the CH3FVAL field to a new value. */ #define BW_FTM_FILTER_CH3FVAL(x, v) (HW_FTM_FILTER_WR(x, (HW_FTM_FILTER_RD(x) & ~BM_FTM_FILTER_CH3FVAL) | BF_FTM_FILTER_CH3FVAL(v))) /*@}*/ /******************************************************************************* * HW_FTM_FLTCTRL - Fault Control ******************************************************************************/ /*! * @brief HW_FTM_FLTCTRL - Fault Control (RW) * * Reset value: 0x00000000U * * This register selects the filter value for the fault inputs, enables the * fault inputs and the fault inputs filter. */ typedef union _hw_ftm_fltctrl { uint32_t U; struct _hw_ftm_fltctrl_bitfields { uint32_t FAULT0EN : 1; /*!< [0] Fault Input 0 Enable */ uint32_t FAULT1EN : 1; /*!< [1] Fault Input 1 Enable */ uint32_t FAULT2EN : 1; /*!< [2] Fault Input 2 Enable */ uint32_t FAULT3EN : 1; /*!< [3] Fault Input 3 Enable */ uint32_t FFLTR0EN : 1; /*!< [4] Fault Input 0 Filter Enable */ uint32_t FFLTR1EN : 1; /*!< [5] Fault Input 1 Filter Enable */ uint32_t FFLTR2EN : 1; /*!< [6] Fault Input 2 Filter Enable */ uint32_t FFLTR3EN : 1; /*!< [7] Fault Input 3 Filter Enable */ uint32_t FFVAL : 4; /*!< [11:8] Fault Input Filter */ uint32_t RESERVED0 : 20; /*!< [31:12] */ } B; } hw_ftm_fltctrl_t; /*! * @name Constants and macros for entire FTM_FLTCTRL register */ /*@{*/ #define HW_FTM_FLTCTRL_ADDR(x) ((x) + 0x7CU) #define HW_FTM_FLTCTRL(x) (*(__IO hw_ftm_fltctrl_t *) HW_FTM_FLTCTRL_ADDR(x)) #define HW_FTM_FLTCTRL_RD(x) (HW_FTM_FLTCTRL(x).U) #define HW_FTM_FLTCTRL_WR(x, v) (HW_FTM_FLTCTRL(x).U = (v)) #define HW_FTM_FLTCTRL_SET(x, v) (HW_FTM_FLTCTRL_WR(x, HW_FTM_FLTCTRL_RD(x) | (v))) #define HW_FTM_FLTCTRL_CLR(x, v) (HW_FTM_FLTCTRL_WR(x, HW_FTM_FLTCTRL_RD(x) & ~(v))) #define HW_FTM_FLTCTRL_TOG(x, v) (HW_FTM_FLTCTRL_WR(x, HW_FTM_FLTCTRL_RD(x) ^ (v))) /*@}*/ /* * Constants & macros for individual FTM_FLTCTRL bitfields */ /*! * @name Register FTM_FLTCTRL, field FAULT0EN[0] (RW) * * Enables the fault input. This field is write protected. It can be written * only when MODE[WPDIS] = 1. * * Values: * - 0 - Fault input is disabled. * - 1 - Fault input is enabled. */ /*@{*/ #define BP_FTM_FLTCTRL_FAULT0EN (0U) /*!< Bit position for FTM_FLTCTRL_FAULT0EN. */ #define BM_FTM_FLTCTRL_FAULT0EN (0x00000001U) /*!< Bit mask for FTM_FLTCTRL_FAULT0EN. */ #define BS_FTM_FLTCTRL_FAULT0EN (1U) /*!< Bit field size in bits for FTM_FLTCTRL_FAULT0EN. */ /*! @brief Read current value of the FTM_FLTCTRL_FAULT0EN field. */ #define BR_FTM_FLTCTRL_FAULT0EN(x) (BITBAND_ACCESS32(HW_FTM_FLTCTRL_ADDR(x), BP_FTM_FLTCTRL_FAULT0EN)) /*! @brief Format value for bitfield FTM_FLTCTRL_FAULT0EN. */ #define BF_FTM_FLTCTRL_FAULT0EN(v) ((uint32_t)((uint32_t)(v) << BP_FTM_FLTCTRL_FAULT0EN) & BM_FTM_FLTCTRL_FAULT0EN) /*! @brief Set the FAULT0EN field to a new value. */ #define BW_FTM_FLTCTRL_FAULT0EN(x, v) (BITBAND_ACCESS32(HW_FTM_FLTCTRL_ADDR(x), BP_FTM_FLTCTRL_FAULT0EN) = (v)) /*@}*/ /*! * @name Register FTM_FLTCTRL, field FAULT1EN[1] (RW) * * Enables the fault input. This field is write protected. It can be written * only when MODE[WPDIS] = 1. * * Values: * - 0 - Fault input is disabled. * - 1 - Fault input is enabled. */ /*@{*/ #define BP_FTM_FLTCTRL_FAULT1EN (1U) /*!< Bit position for FTM_FLTCTRL_FAULT1EN. */ #define BM_FTM_FLTCTRL_FAULT1EN (0x00000002U) /*!< Bit mask for FTM_FLTCTRL_FAULT1EN. */ #define BS_FTM_FLTCTRL_FAULT1EN (1U) /*!< Bit field size in bits for FTM_FLTCTRL_FAULT1EN. */ /*! @brief Read current value of the FTM_FLTCTRL_FAULT1EN field. */ #define BR_FTM_FLTCTRL_FAULT1EN(x) (BITBAND_ACCESS32(HW_FTM_FLTCTRL_ADDR(x), BP_FTM_FLTCTRL_FAULT1EN)) /*! @brief Format value for bitfield FTM_FLTCTRL_FAULT1EN. */ #define BF_FTM_FLTCTRL_FAULT1EN(v) ((uint32_t)((uint32_t)(v) << BP_FTM_FLTCTRL_FAULT1EN) & BM_FTM_FLTCTRL_FAULT1EN) /*! @brief Set the FAULT1EN field to a new value. */ #define BW_FTM_FLTCTRL_FAULT1EN(x, v) (BITBAND_ACCESS32(HW_FTM_FLTCTRL_ADDR(x), BP_FTM_FLTCTRL_FAULT1EN) = (v)) /*@}*/ /*! * @name Register FTM_FLTCTRL, field FAULT2EN[2] (RW) * * Enables the fault input. This field is write protected. It can be written * only when MODE[WPDIS] = 1. * * Values: * - 0 - Fault input is disabled. * - 1 - Fault input is enabled. */ /*@{*/ #define BP_FTM_FLTCTRL_FAULT2EN (2U) /*!< Bit position for FTM_FLTCTRL_FAULT2EN. */ #define BM_FTM_FLTCTRL_FAULT2EN (0x00000004U) /*!< Bit mask for FTM_FLTCTRL_FAULT2EN. */ #define BS_FTM_FLTCTRL_FAULT2EN (1U) /*!< Bit field size in bits for FTM_FLTCTRL_FAULT2EN. */ /*! @brief Read current value of the FTM_FLTCTRL_FAULT2EN field. */ #define BR_FTM_FLTCTRL_FAULT2EN(x) (BITBAND_ACCESS32(HW_FTM_FLTCTRL_ADDR(x), BP_FTM_FLTCTRL_FAULT2EN)) /*! @brief Format value for bitfield FTM_FLTCTRL_FAULT2EN. */ #define BF_FTM_FLTCTRL_FAULT2EN(v) ((uint32_t)((uint32_t)(v) << BP_FTM_FLTCTRL_FAULT2EN) & BM_FTM_FLTCTRL_FAULT2EN) /*! @brief Set the FAULT2EN field to a new value. */ #define BW_FTM_FLTCTRL_FAULT2EN(x, v) (BITBAND_ACCESS32(HW_FTM_FLTCTRL_ADDR(x), BP_FTM_FLTCTRL_FAULT2EN) = (v)) /*@}*/ /*! * @name Register FTM_FLTCTRL, field FAULT3EN[3] (RW) * * Enables the fault input. This field is write protected. It can be written * only when MODE[WPDIS] = 1. * * Values: * - 0 - Fault input is disabled. * - 1 - Fault input is enabled. */ /*@{*/ #define BP_FTM_FLTCTRL_FAULT3EN (3U) /*!< Bit position for FTM_FLTCTRL_FAULT3EN. */ #define BM_FTM_FLTCTRL_FAULT3EN (0x00000008U) /*!< Bit mask for FTM_FLTCTRL_FAULT3EN. */ #define BS_FTM_FLTCTRL_FAULT3EN (1U) /*!< Bit field size in bits for FTM_FLTCTRL_FAULT3EN. */ /*! @brief Read current value of the FTM_FLTCTRL_FAULT3EN field. */ #define BR_FTM_FLTCTRL_FAULT3EN(x) (BITBAND_ACCESS32(HW_FTM_FLTCTRL_ADDR(x), BP_FTM_FLTCTRL_FAULT3EN)) /*! @brief Format value for bitfield FTM_FLTCTRL_FAULT3EN. */ #define BF_FTM_FLTCTRL_FAULT3EN(v) ((uint32_t)((uint32_t)(v) << BP_FTM_FLTCTRL_FAULT3EN) & BM_FTM_FLTCTRL_FAULT3EN) /*! @brief Set the FAULT3EN field to a new value. */ #define BW_FTM_FLTCTRL_FAULT3EN(x, v) (BITBAND_ACCESS32(HW_FTM_FLTCTRL_ADDR(x), BP_FTM_FLTCTRL_FAULT3EN) = (v)) /*@}*/ /*! * @name Register FTM_FLTCTRL, field FFLTR0EN[4] (RW) * * Enables the filter for the fault input. This field is write protected. It can * be written only when MODE[WPDIS] = 1. * * Values: * - 0 - Fault input filter is disabled. * - 1 - Fault input filter is enabled. */ /*@{*/ #define BP_FTM_FLTCTRL_FFLTR0EN (4U) /*!< Bit position for FTM_FLTCTRL_FFLTR0EN. */ #define BM_FTM_FLTCTRL_FFLTR0EN (0x00000010U) /*!< Bit mask for FTM_FLTCTRL_FFLTR0EN. */ #define BS_FTM_FLTCTRL_FFLTR0EN (1U) /*!< Bit field size in bits for FTM_FLTCTRL_FFLTR0EN. */ /*! @brief Read current value of the FTM_FLTCTRL_FFLTR0EN field. */ #define BR_FTM_FLTCTRL_FFLTR0EN(x) (BITBAND_ACCESS32(HW_FTM_FLTCTRL_ADDR(x), BP_FTM_FLTCTRL_FFLTR0EN)) /*! @brief Format value for bitfield FTM_FLTCTRL_FFLTR0EN. */ #define BF_FTM_FLTCTRL_FFLTR0EN(v) ((uint32_t)((uint32_t)(v) << BP_FTM_FLTCTRL_FFLTR0EN) & BM_FTM_FLTCTRL_FFLTR0EN) /*! @brief Set the FFLTR0EN field to a new value. */ #define BW_FTM_FLTCTRL_FFLTR0EN(x, v) (BITBAND_ACCESS32(HW_FTM_FLTCTRL_ADDR(x), BP_FTM_FLTCTRL_FFLTR0EN) = (v)) /*@}*/ /*! * @name Register FTM_FLTCTRL, field FFLTR1EN[5] (RW) * * Enables the filter for the fault input. This field is write protected. It can * be written only when MODE[WPDIS] = 1. * * Values: * - 0 - Fault input filter is disabled. * - 1 - Fault input filter is enabled. */ /*@{*/ #define BP_FTM_FLTCTRL_FFLTR1EN (5U) /*!< Bit position for FTM_FLTCTRL_FFLTR1EN. */ #define BM_FTM_FLTCTRL_FFLTR1EN (0x00000020U) /*!< Bit mask for FTM_FLTCTRL_FFLTR1EN. */ #define BS_FTM_FLTCTRL_FFLTR1EN (1U) /*!< Bit field size in bits for FTM_FLTCTRL_FFLTR1EN. */ /*! @brief Read current value of the FTM_FLTCTRL_FFLTR1EN field. */ #define BR_FTM_FLTCTRL_FFLTR1EN(x) (BITBAND_ACCESS32(HW_FTM_FLTCTRL_ADDR(x), BP_FTM_FLTCTRL_FFLTR1EN)) /*! @brief Format value for bitfield FTM_FLTCTRL_FFLTR1EN. */ #define BF_FTM_FLTCTRL_FFLTR1EN(v) ((uint32_t)((uint32_t)(v) << BP_FTM_FLTCTRL_FFLTR1EN) & BM_FTM_FLTCTRL_FFLTR1EN) /*! @brief Set the FFLTR1EN field to a new value. */ #define BW_FTM_FLTCTRL_FFLTR1EN(x, v) (BITBAND_ACCESS32(HW_FTM_FLTCTRL_ADDR(x), BP_FTM_FLTCTRL_FFLTR1EN) = (v)) /*@}*/ /*! * @name Register FTM_FLTCTRL, field FFLTR2EN[6] (RW) * * Enables the filter for the fault input. This field is write protected. It can * be written only when MODE[WPDIS] = 1. * * Values: * - 0 - Fault input filter is disabled. * - 1 - Fault input filter is enabled. */ /*@{*/ #define BP_FTM_FLTCTRL_FFLTR2EN (6U) /*!< Bit position for FTM_FLTCTRL_FFLTR2EN. */ #define BM_FTM_FLTCTRL_FFLTR2EN (0x00000040U) /*!< Bit mask for FTM_FLTCTRL_FFLTR2EN. */ #define BS_FTM_FLTCTRL_FFLTR2EN (1U) /*!< Bit field size in bits for FTM_FLTCTRL_FFLTR2EN. */ /*! @brief Read current value of the FTM_FLTCTRL_FFLTR2EN field. */ #define BR_FTM_FLTCTRL_FFLTR2EN(x) (BITBAND_ACCESS32(HW_FTM_FLTCTRL_ADDR(x), BP_FTM_FLTCTRL_FFLTR2EN)) /*! @brief Format value for bitfield FTM_FLTCTRL_FFLTR2EN. */ #define BF_FTM_FLTCTRL_FFLTR2EN(v) ((uint32_t)((uint32_t)(v) << BP_FTM_FLTCTRL_FFLTR2EN) & BM_FTM_FLTCTRL_FFLTR2EN) /*! @brief Set the FFLTR2EN field to a new value. */ #define BW_FTM_FLTCTRL_FFLTR2EN(x, v) (BITBAND_ACCESS32(HW_FTM_FLTCTRL_ADDR(x), BP_FTM_FLTCTRL_FFLTR2EN) = (v)) /*@}*/ /*! * @name Register FTM_FLTCTRL, field FFLTR3EN[7] (RW) * * Enables the filter for the fault input. This field is write protected. It can * be written only when MODE[WPDIS] = 1. * * Values: * - 0 - Fault input filter is disabled. * - 1 - Fault input filter is enabled. */ /*@{*/ #define BP_FTM_FLTCTRL_FFLTR3EN (7U) /*!< Bit position for FTM_FLTCTRL_FFLTR3EN. */ #define BM_FTM_FLTCTRL_FFLTR3EN (0x00000080U) /*!< Bit mask for FTM_FLTCTRL_FFLTR3EN. */ #define BS_FTM_FLTCTRL_FFLTR3EN (1U) /*!< Bit field size in bits for FTM_FLTCTRL_FFLTR3EN. */ /*! @brief Read current value of the FTM_FLTCTRL_FFLTR3EN field. */ #define BR_FTM_FLTCTRL_FFLTR3EN(x) (BITBAND_ACCESS32(HW_FTM_FLTCTRL_ADDR(x), BP_FTM_FLTCTRL_FFLTR3EN)) /*! @brief Format value for bitfield FTM_FLTCTRL_FFLTR3EN. */ #define BF_FTM_FLTCTRL_FFLTR3EN(v) ((uint32_t)((uint32_t)(v) << BP_FTM_FLTCTRL_FFLTR3EN) & BM_FTM_FLTCTRL_FFLTR3EN) /*! @brief Set the FFLTR3EN field to a new value. */ #define BW_FTM_FLTCTRL_FFLTR3EN(x, v) (BITBAND_ACCESS32(HW_FTM_FLTCTRL_ADDR(x), BP_FTM_FLTCTRL_FFLTR3EN) = (v)) /*@}*/ /*! * @name Register FTM_FLTCTRL, field FFVAL[11:8] (RW) * * Selects the filter value for the fault inputs. The fault filter is disabled * when the value is zero. Writing to this field has immediate effect and must be * done only when the fault control or all fault inputs are disabled. Failure to * do this could result in a missing fault detection. */ /*@{*/ #define BP_FTM_FLTCTRL_FFVAL (8U) /*!< Bit position for FTM_FLTCTRL_FFVAL. */ #define BM_FTM_FLTCTRL_FFVAL (0x00000F00U) /*!< Bit mask for FTM_FLTCTRL_FFVAL. */ #define BS_FTM_FLTCTRL_FFVAL (4U) /*!< Bit field size in bits for FTM_FLTCTRL_FFVAL. */ /*! @brief Read current value of the FTM_FLTCTRL_FFVAL field. */ #define BR_FTM_FLTCTRL_FFVAL(x) (HW_FTM_FLTCTRL(x).B.FFVAL) /*! @brief Format value for bitfield FTM_FLTCTRL_FFVAL. */ #define BF_FTM_FLTCTRL_FFVAL(v) ((uint32_t)((uint32_t)(v) << BP_FTM_FLTCTRL_FFVAL) & BM_FTM_FLTCTRL_FFVAL) /*! @brief Set the FFVAL field to a new value. */ #define BW_FTM_FLTCTRL_FFVAL(x, v) (HW_FTM_FLTCTRL_WR(x, (HW_FTM_FLTCTRL_RD(x) & ~BM_FTM_FLTCTRL_FFVAL) | BF_FTM_FLTCTRL_FFVAL(v))) /*@}*/ /******************************************************************************* * HW_FTM_QDCTRL - Quadrature Decoder Control And Status ******************************************************************************/ /*! * @brief HW_FTM_QDCTRL - Quadrature Decoder Control And Status (RW) * * Reset value: 0x00000000U * * This register has the control and status bits for the Quadrature Decoder mode. */ typedef union _hw_ftm_qdctrl { uint32_t U; struct _hw_ftm_qdctrl_bitfields { uint32_t QUADEN : 1; /*!< [0] Quadrature Decoder Mode Enable */ uint32_t TOFDIR : 1; /*!< [1] Timer Overflow Direction In Quadrature * Decoder Mode */ uint32_t QUADIR : 1; /*!< [2] FTM Counter Direction In Quadrature * Decoder Mode */ uint32_t QUADMODE : 1; /*!< [3] Quadrature Decoder Mode */ uint32_t PHBPOL : 1; /*!< [4] Phase B Input Polarity */ uint32_t PHAPOL : 1; /*!< [5] Phase A Input Polarity */ uint32_t PHBFLTREN : 1; /*!< [6] Phase B Input Filter Enable */ uint32_t PHAFLTREN : 1; /*!< [7] Phase A Input Filter Enable */ uint32_t RESERVED0 : 24; /*!< [31:8] */ } B; } hw_ftm_qdctrl_t; /*! * @name Constants and macros for entire FTM_QDCTRL register */ /*@{*/ #define HW_FTM_QDCTRL_ADDR(x) ((x) + 0x80U) #define HW_FTM_QDCTRL(x) (*(__IO hw_ftm_qdctrl_t *) HW_FTM_QDCTRL_ADDR(x)) #define HW_FTM_QDCTRL_RD(x) (HW_FTM_QDCTRL(x).U) #define HW_FTM_QDCTRL_WR(x, v) (HW_FTM_QDCTRL(x).U = (v)) #define HW_FTM_QDCTRL_SET(x, v) (HW_FTM_QDCTRL_WR(x, HW_FTM_QDCTRL_RD(x) | (v))) #define HW_FTM_QDCTRL_CLR(x, v) (HW_FTM_QDCTRL_WR(x, HW_FTM_QDCTRL_RD(x) & ~(v))) #define HW_FTM_QDCTRL_TOG(x, v) (HW_FTM_QDCTRL_WR(x, HW_FTM_QDCTRL_RD(x) ^ (v))) /*@}*/ /* * Constants & macros for individual FTM_QDCTRL bitfields */ /*! * @name Register FTM_QDCTRL, field QUADEN[0] (RW) * * Enables the Quadrature Decoder mode. In this mode, the phase A and B input * signals control the FTM counter direction. The Quadrature Decoder mode has * precedence over the other modes. See #ModeSel1Table. This field is write protected. * It can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - Quadrature Decoder mode is disabled. * - 1 - Quadrature Decoder mode is enabled. */ /*@{*/ #define BP_FTM_QDCTRL_QUADEN (0U) /*!< Bit position for FTM_QDCTRL_QUADEN. */ #define BM_FTM_QDCTRL_QUADEN (0x00000001U) /*!< Bit mask for FTM_QDCTRL_QUADEN. */ #define BS_FTM_QDCTRL_QUADEN (1U) /*!< Bit field size in bits for FTM_QDCTRL_QUADEN. */ /*! @brief Read current value of the FTM_QDCTRL_QUADEN field. */ #define BR_FTM_QDCTRL_QUADEN(x) (BITBAND_ACCESS32(HW_FTM_QDCTRL_ADDR(x), BP_FTM_QDCTRL_QUADEN)) /*! @brief Format value for bitfield FTM_QDCTRL_QUADEN. */ #define BF_FTM_QDCTRL_QUADEN(v) ((uint32_t)((uint32_t)(v) << BP_FTM_QDCTRL_QUADEN) & BM_FTM_QDCTRL_QUADEN) /*! @brief Set the QUADEN field to a new value. */ #define BW_FTM_QDCTRL_QUADEN(x, v) (BITBAND_ACCESS32(HW_FTM_QDCTRL_ADDR(x), BP_FTM_QDCTRL_QUADEN) = (v)) /*@}*/ /*! * @name Register FTM_QDCTRL, field TOFDIR[1] (RO) * * Indicates if the TOF bit was set on the top or the bottom of counting. * * Values: * - 0 - TOF bit was set on the bottom of counting. There was an FTM counter * decrement and FTM counter changes from its minimum value (CNTIN register) to * its maximum value (MOD register). * - 1 - TOF bit was set on the top of counting. There was an FTM counter * increment and FTM counter changes from its maximum value (MOD register) to its * minimum value (CNTIN register). */ /*@{*/ #define BP_FTM_QDCTRL_TOFDIR (1U) /*!< Bit position for FTM_QDCTRL_TOFDIR. */ #define BM_FTM_QDCTRL_TOFDIR (0x00000002U) /*!< Bit mask for FTM_QDCTRL_TOFDIR. */ #define BS_FTM_QDCTRL_TOFDIR (1U) /*!< Bit field size in bits for FTM_QDCTRL_TOFDIR. */ /*! @brief Read current value of the FTM_QDCTRL_TOFDIR field. */ #define BR_FTM_QDCTRL_TOFDIR(x) (BITBAND_ACCESS32(HW_FTM_QDCTRL_ADDR(x), BP_FTM_QDCTRL_TOFDIR)) /*@}*/ /*! * @name Register FTM_QDCTRL, field QUADIR[2] (RO) * * Indicates the counting direction. * * Values: * - 0 - Counting direction is decreasing (FTM counter decrement). * - 1 - Counting direction is increasing (FTM counter increment). */ /*@{*/ #define BP_FTM_QDCTRL_QUADIR (2U) /*!< Bit position for FTM_QDCTRL_QUADIR. */ #define BM_FTM_QDCTRL_QUADIR (0x00000004U) /*!< Bit mask for FTM_QDCTRL_QUADIR. */ #define BS_FTM_QDCTRL_QUADIR (1U) /*!< Bit field size in bits for FTM_QDCTRL_QUADIR. */ /*! @brief Read current value of the FTM_QDCTRL_QUADIR field. */ #define BR_FTM_QDCTRL_QUADIR(x) (BITBAND_ACCESS32(HW_FTM_QDCTRL_ADDR(x), BP_FTM_QDCTRL_QUADIR)) /*@}*/ /*! * @name Register FTM_QDCTRL, field QUADMODE[3] (RW) * * Selects the encoding mode used in the Quadrature Decoder mode. * * Values: * - 0 - Phase A and phase B encoding mode. * - 1 - Count and direction encoding mode. */ /*@{*/ #define BP_FTM_QDCTRL_QUADMODE (3U) /*!< Bit position for FTM_QDCTRL_QUADMODE. */ #define BM_FTM_QDCTRL_QUADMODE (0x00000008U) /*!< Bit mask for FTM_QDCTRL_QUADMODE. */ #define BS_FTM_QDCTRL_QUADMODE (1U) /*!< Bit field size in bits for FTM_QDCTRL_QUADMODE. */ /*! @brief Read current value of the FTM_QDCTRL_QUADMODE field. */ #define BR_FTM_QDCTRL_QUADMODE(x) (BITBAND_ACCESS32(HW_FTM_QDCTRL_ADDR(x), BP_FTM_QDCTRL_QUADMODE)) /*! @brief Format value for bitfield FTM_QDCTRL_QUADMODE. */ #define BF_FTM_QDCTRL_QUADMODE(v) ((uint32_t)((uint32_t)(v) << BP_FTM_QDCTRL_QUADMODE) & BM_FTM_QDCTRL_QUADMODE) /*! @brief Set the QUADMODE field to a new value. */ #define BW_FTM_QDCTRL_QUADMODE(x, v) (BITBAND_ACCESS32(HW_FTM_QDCTRL_ADDR(x), BP_FTM_QDCTRL_QUADMODE) = (v)) /*@}*/ /*! * @name Register FTM_QDCTRL, field PHBPOL[4] (RW) * * Selects the polarity for the quadrature decoder phase B input. * * Values: * - 0 - Normal polarity. Phase B input signal is not inverted before * identifying the rising and falling edges of this signal. * - 1 - Inverted polarity. Phase B input signal is inverted before identifying * the rising and falling edges of this signal. */ /*@{*/ #define BP_FTM_QDCTRL_PHBPOL (4U) /*!< Bit position for FTM_QDCTRL_PHBPOL. */ #define BM_FTM_QDCTRL_PHBPOL (0x00000010U) /*!< Bit mask for FTM_QDCTRL_PHBPOL. */ #define BS_FTM_QDCTRL_PHBPOL (1U) /*!< Bit field size in bits for FTM_QDCTRL_PHBPOL. */ /*! @brief Read current value of the FTM_QDCTRL_PHBPOL field. */ #define BR_FTM_QDCTRL_PHBPOL(x) (BITBAND_ACCESS32(HW_FTM_QDCTRL_ADDR(x), BP_FTM_QDCTRL_PHBPOL)) /*! @brief Format value for bitfield FTM_QDCTRL_PHBPOL. */ #define BF_FTM_QDCTRL_PHBPOL(v) ((uint32_t)((uint32_t)(v) << BP_FTM_QDCTRL_PHBPOL) & BM_FTM_QDCTRL_PHBPOL) /*! @brief Set the PHBPOL field to a new value. */ #define BW_FTM_QDCTRL_PHBPOL(x, v) (BITBAND_ACCESS32(HW_FTM_QDCTRL_ADDR(x), BP_FTM_QDCTRL_PHBPOL) = (v)) /*@}*/ /*! * @name Register FTM_QDCTRL, field PHAPOL[5] (RW) * * Selects the polarity for the quadrature decoder phase A input. * * Values: * - 0 - Normal polarity. Phase A input signal is not inverted before * identifying the rising and falling edges of this signal. * - 1 - Inverted polarity. Phase A input signal is inverted before identifying * the rising and falling edges of this signal. */ /*@{*/ #define BP_FTM_QDCTRL_PHAPOL (5U) /*!< Bit position for FTM_QDCTRL_PHAPOL. */ #define BM_FTM_QDCTRL_PHAPOL (0x00000020U) /*!< Bit mask for FTM_QDCTRL_PHAPOL. */ #define BS_FTM_QDCTRL_PHAPOL (1U) /*!< Bit field size in bits for FTM_QDCTRL_PHAPOL. */ /*! @brief Read current value of the FTM_QDCTRL_PHAPOL field. */ #define BR_FTM_QDCTRL_PHAPOL(x) (BITBAND_ACCESS32(HW_FTM_QDCTRL_ADDR(x), BP_FTM_QDCTRL_PHAPOL)) /*! @brief Format value for bitfield FTM_QDCTRL_PHAPOL. */ #define BF_FTM_QDCTRL_PHAPOL(v) ((uint32_t)((uint32_t)(v) << BP_FTM_QDCTRL_PHAPOL) & BM_FTM_QDCTRL_PHAPOL) /*! @brief Set the PHAPOL field to a new value. */ #define BW_FTM_QDCTRL_PHAPOL(x, v) (BITBAND_ACCESS32(HW_FTM_QDCTRL_ADDR(x), BP_FTM_QDCTRL_PHAPOL) = (v)) /*@}*/ /*! * @name Register FTM_QDCTRL, field PHBFLTREN[6] (RW) * * Enables the filter for the quadrature decoder phase B input. The filter value * for the phase B input is defined by the CH1FVAL field of FILTER. The phase B * filter is also disabled when CH1FVAL is zero. * * Values: * - 0 - Phase B input filter is disabled. * - 1 - Phase B input filter is enabled. */ /*@{*/ #define BP_FTM_QDCTRL_PHBFLTREN (6U) /*!< Bit position for FTM_QDCTRL_PHBFLTREN. */ #define BM_FTM_QDCTRL_PHBFLTREN (0x00000040U) /*!< Bit mask for FTM_QDCTRL_PHBFLTREN. */ #define BS_FTM_QDCTRL_PHBFLTREN (1U) /*!< Bit field size in bits for FTM_QDCTRL_PHBFLTREN. */ /*! @brief Read current value of the FTM_QDCTRL_PHBFLTREN field. */ #define BR_FTM_QDCTRL_PHBFLTREN(x) (BITBAND_ACCESS32(HW_FTM_QDCTRL_ADDR(x), BP_FTM_QDCTRL_PHBFLTREN)) /*! @brief Format value for bitfield FTM_QDCTRL_PHBFLTREN. */ #define BF_FTM_QDCTRL_PHBFLTREN(v) ((uint32_t)((uint32_t)(v) << BP_FTM_QDCTRL_PHBFLTREN) & BM_FTM_QDCTRL_PHBFLTREN) /*! @brief Set the PHBFLTREN field to a new value. */ #define BW_FTM_QDCTRL_PHBFLTREN(x, v) (BITBAND_ACCESS32(HW_FTM_QDCTRL_ADDR(x), BP_FTM_QDCTRL_PHBFLTREN) = (v)) /*@}*/ /*! * @name Register FTM_QDCTRL, field PHAFLTREN[7] (RW) * * Enables the filter for the quadrature decoder phase A input. The filter value * for the phase A input is defined by the CH0FVAL field of FILTER. The phase A * filter is also disabled when CH0FVAL is zero. * * Values: * - 0 - Phase A input filter is disabled. * - 1 - Phase A input filter is enabled. */ /*@{*/ #define BP_FTM_QDCTRL_PHAFLTREN (7U) /*!< Bit position for FTM_QDCTRL_PHAFLTREN. */ #define BM_FTM_QDCTRL_PHAFLTREN (0x00000080U) /*!< Bit mask for FTM_QDCTRL_PHAFLTREN. */ #define BS_FTM_QDCTRL_PHAFLTREN (1U) /*!< Bit field size in bits for FTM_QDCTRL_PHAFLTREN. */ /*! @brief Read current value of the FTM_QDCTRL_PHAFLTREN field. */ #define BR_FTM_QDCTRL_PHAFLTREN(x) (BITBAND_ACCESS32(HW_FTM_QDCTRL_ADDR(x), BP_FTM_QDCTRL_PHAFLTREN)) /*! @brief Format value for bitfield FTM_QDCTRL_PHAFLTREN. */ #define BF_FTM_QDCTRL_PHAFLTREN(v) ((uint32_t)((uint32_t)(v) << BP_FTM_QDCTRL_PHAFLTREN) & BM_FTM_QDCTRL_PHAFLTREN) /*! @brief Set the PHAFLTREN field to a new value. */ #define BW_FTM_QDCTRL_PHAFLTREN(x, v) (BITBAND_ACCESS32(HW_FTM_QDCTRL_ADDR(x), BP_FTM_QDCTRL_PHAFLTREN) = (v)) /*@}*/ /******************************************************************************* * HW_FTM_CONF - Configuration ******************************************************************************/ /*! * @brief HW_FTM_CONF - Configuration (RW) * * Reset value: 0x00000000U * * This register selects the number of times that the FTM counter overflow * should occur before the TOF bit to be set, the FTM behavior in BDM modes, the use * of an external global time base, and the global time base signal generation. */ typedef union _hw_ftm_conf { uint32_t U; struct _hw_ftm_conf_bitfields { uint32_t NUMTOF : 5; /*!< [4:0] TOF Frequency */ uint32_t RESERVED0 : 1; /*!< [5] */ uint32_t BDMMODE : 2; /*!< [7:6] BDM Mode */ uint32_t RESERVED1 : 1; /*!< [8] */ uint32_t GTBEEN : 1; /*!< [9] Global Time Base Enable */ uint32_t GTBEOUT : 1; /*!< [10] Global Time Base Output */ uint32_t RESERVED2 : 21; /*!< [31:11] */ } B; } hw_ftm_conf_t; /*! * @name Constants and macros for entire FTM_CONF register */ /*@{*/ #define HW_FTM_CONF_ADDR(x) ((x) + 0x84U) #define HW_FTM_CONF(x) (*(__IO hw_ftm_conf_t *) HW_FTM_CONF_ADDR(x)) #define HW_FTM_CONF_RD(x) (HW_FTM_CONF(x).U) #define HW_FTM_CONF_WR(x, v) (HW_FTM_CONF(x).U = (v)) #define HW_FTM_CONF_SET(x, v) (HW_FTM_CONF_WR(x, HW_FTM_CONF_RD(x) | (v))) #define HW_FTM_CONF_CLR(x, v) (HW_FTM_CONF_WR(x, HW_FTM_CONF_RD(x) & ~(v))) #define HW_FTM_CONF_TOG(x, v) (HW_FTM_CONF_WR(x, HW_FTM_CONF_RD(x) ^ (v))) /*@}*/ /* * Constants & macros for individual FTM_CONF bitfields */ /*! * @name Register FTM_CONF, field NUMTOF[4:0] (RW) * * Selects the ratio between the number of counter overflows to the number of * times the TOF bit is set. NUMTOF = 0: The TOF bit is set for each counter * overflow. NUMTOF = 1: The TOF bit is set for the first counter overflow but not for * the next overflow. NUMTOF = 2: The TOF bit is set for the first counter * overflow but not for the next 2 overflows. NUMTOF = 3: The TOF bit is set for the * first counter overflow but not for the next 3 overflows. This pattern continues * up to a maximum of 31. */ /*@{*/ #define BP_FTM_CONF_NUMTOF (0U) /*!< Bit position for FTM_CONF_NUMTOF. */ #define BM_FTM_CONF_NUMTOF (0x0000001FU) /*!< Bit mask for FTM_CONF_NUMTOF. */ #define BS_FTM_CONF_NUMTOF (5U) /*!< Bit field size in bits for FTM_CONF_NUMTOF. */ /*! @brief Read current value of the FTM_CONF_NUMTOF field. */ #define BR_FTM_CONF_NUMTOF(x) (HW_FTM_CONF(x).B.NUMTOF) /*! @brief Format value for bitfield FTM_CONF_NUMTOF. */ #define BF_FTM_CONF_NUMTOF(v) ((uint32_t)((uint32_t)(v) << BP_FTM_CONF_NUMTOF) & BM_FTM_CONF_NUMTOF) /*! @brief Set the NUMTOF field to a new value. */ #define BW_FTM_CONF_NUMTOF(x, v) (HW_FTM_CONF_WR(x, (HW_FTM_CONF_RD(x) & ~BM_FTM_CONF_NUMTOF) | BF_FTM_CONF_NUMTOF(v))) /*@}*/ /*! * @name Register FTM_CONF, field BDMMODE[7:6] (RW) * * Selects the FTM behavior in BDM mode. See BDM mode. */ /*@{*/ #define BP_FTM_CONF_BDMMODE (6U) /*!< Bit position for FTM_CONF_BDMMODE. */ #define BM_FTM_CONF_BDMMODE (0x000000C0U) /*!< Bit mask for FTM_CONF_BDMMODE. */ #define BS_FTM_CONF_BDMMODE (2U) /*!< Bit field size in bits for FTM_CONF_BDMMODE. */ /*! @brief Read current value of the FTM_CONF_BDMMODE field. */ #define BR_FTM_CONF_BDMMODE(x) (HW_FTM_CONF(x).B.BDMMODE) /*! @brief Format value for bitfield FTM_CONF_BDMMODE. */ #define BF_FTM_CONF_BDMMODE(v) ((uint32_t)((uint32_t)(v) << BP_FTM_CONF_BDMMODE) & BM_FTM_CONF_BDMMODE) /*! @brief Set the BDMMODE field to a new value. */ #define BW_FTM_CONF_BDMMODE(x, v) (HW_FTM_CONF_WR(x, (HW_FTM_CONF_RD(x) & ~BM_FTM_CONF_BDMMODE) | BF_FTM_CONF_BDMMODE(v))) /*@}*/ /*! * @name Register FTM_CONF, field GTBEEN[9] (RW) * * Configures the FTM to use an external global time base signal that is * generated by another FTM. * * Values: * - 0 - Use of an external global time base is disabled. * - 1 - Use of an external global time base is enabled. */ /*@{*/ #define BP_FTM_CONF_GTBEEN (9U) /*!< Bit position for FTM_CONF_GTBEEN. */ #define BM_FTM_CONF_GTBEEN (0x00000200U) /*!< Bit mask for FTM_CONF_GTBEEN. */ #define BS_FTM_CONF_GTBEEN (1U) /*!< Bit field size in bits for FTM_CONF_GTBEEN. */ /*! @brief Read current value of the FTM_CONF_GTBEEN field. */ #define BR_FTM_CONF_GTBEEN(x) (BITBAND_ACCESS32(HW_FTM_CONF_ADDR(x), BP_FTM_CONF_GTBEEN)) /*! @brief Format value for bitfield FTM_CONF_GTBEEN. */ #define BF_FTM_CONF_GTBEEN(v) ((uint32_t)((uint32_t)(v) << BP_FTM_CONF_GTBEEN) & BM_FTM_CONF_GTBEEN) /*! @brief Set the GTBEEN field to a new value. */ #define BW_FTM_CONF_GTBEEN(x, v) (BITBAND_ACCESS32(HW_FTM_CONF_ADDR(x), BP_FTM_CONF_GTBEEN) = (v)) /*@}*/ /*! * @name Register FTM_CONF, field GTBEOUT[10] (RW) * * Enables the global time base signal generation to other FTMs. * * Values: * - 0 - A global time base signal generation is disabled. * - 1 - A global time base signal generation is enabled. */ /*@{*/ #define BP_FTM_CONF_GTBEOUT (10U) /*!< Bit position for FTM_CONF_GTBEOUT. */ #define BM_FTM_CONF_GTBEOUT (0x00000400U) /*!< Bit mask for FTM_CONF_GTBEOUT. */ #define BS_FTM_CONF_GTBEOUT (1U) /*!< Bit field size in bits for FTM_CONF_GTBEOUT. */ /*! @brief Read current value of the FTM_CONF_GTBEOUT field. */ #define BR_FTM_CONF_GTBEOUT(x) (BITBAND_ACCESS32(HW_FTM_CONF_ADDR(x), BP_FTM_CONF_GTBEOUT)) /*! @brief Format value for bitfield FTM_CONF_GTBEOUT. */ #define BF_FTM_CONF_GTBEOUT(v) ((uint32_t)((uint32_t)(v) << BP_FTM_CONF_GTBEOUT) & BM_FTM_CONF_GTBEOUT) /*! @brief Set the GTBEOUT field to a new value. */ #define BW_FTM_CONF_GTBEOUT(x, v) (BITBAND_ACCESS32(HW_FTM_CONF_ADDR(x), BP_FTM_CONF_GTBEOUT) = (v)) /*@}*/ /******************************************************************************* * HW_FTM_FLTPOL - FTM Fault Input Polarity ******************************************************************************/ /*! * @brief HW_FTM_FLTPOL - FTM Fault Input Polarity (RW) * * Reset value: 0x00000000U * * This register defines the fault inputs polarity. */ typedef union _hw_ftm_fltpol { uint32_t U; struct _hw_ftm_fltpol_bitfields { uint32_t FLT0POL : 1; /*!< [0] Fault Input 0 Polarity */ uint32_t FLT1POL : 1; /*!< [1] Fault Input 1 Polarity */ uint32_t FLT2POL : 1; /*!< [2] Fault Input 2 Polarity */ uint32_t FLT3POL : 1; /*!< [3] Fault Input 3 Polarity */ uint32_t RESERVED0 : 28; /*!< [31:4] */ } B; } hw_ftm_fltpol_t; /*! * @name Constants and macros for entire FTM_FLTPOL register */ /*@{*/ #define HW_FTM_FLTPOL_ADDR(x) ((x) + 0x88U) #define HW_FTM_FLTPOL(x) (*(__IO hw_ftm_fltpol_t *) HW_FTM_FLTPOL_ADDR(x)) #define HW_FTM_FLTPOL_RD(x) (HW_FTM_FLTPOL(x).U) #define HW_FTM_FLTPOL_WR(x, v) (HW_FTM_FLTPOL(x).U = (v)) #define HW_FTM_FLTPOL_SET(x, v) (HW_FTM_FLTPOL_WR(x, HW_FTM_FLTPOL_RD(x) | (v))) #define HW_FTM_FLTPOL_CLR(x, v) (HW_FTM_FLTPOL_WR(x, HW_FTM_FLTPOL_RD(x) & ~(v))) #define HW_FTM_FLTPOL_TOG(x, v) (HW_FTM_FLTPOL_WR(x, HW_FTM_FLTPOL_RD(x) ^ (v))) /*@}*/ /* * Constants & macros for individual FTM_FLTPOL bitfields */ /*! * @name Register FTM_FLTPOL, field FLT0POL[0] (RW) * * Defines the polarity of the fault input. This field is write protected. It * can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - The fault input polarity is active high. A 1 at the fault input * indicates a fault. * - 1 - The fault input polarity is active low. A 0 at the fault input * indicates a fault. */ /*@{*/ #define BP_FTM_FLTPOL_FLT0POL (0U) /*!< Bit position for FTM_FLTPOL_FLT0POL. */ #define BM_FTM_FLTPOL_FLT0POL (0x00000001U) /*!< Bit mask for FTM_FLTPOL_FLT0POL. */ #define BS_FTM_FLTPOL_FLT0POL (1U) /*!< Bit field size in bits for FTM_FLTPOL_FLT0POL. */ /*! @brief Read current value of the FTM_FLTPOL_FLT0POL field. */ #define BR_FTM_FLTPOL_FLT0POL(x) (BITBAND_ACCESS32(HW_FTM_FLTPOL_ADDR(x), BP_FTM_FLTPOL_FLT0POL)) /*! @brief Format value for bitfield FTM_FLTPOL_FLT0POL. */ #define BF_FTM_FLTPOL_FLT0POL(v) ((uint32_t)((uint32_t)(v) << BP_FTM_FLTPOL_FLT0POL) & BM_FTM_FLTPOL_FLT0POL) /*! @brief Set the FLT0POL field to a new value. */ #define BW_FTM_FLTPOL_FLT0POL(x, v) (BITBAND_ACCESS32(HW_FTM_FLTPOL_ADDR(x), BP_FTM_FLTPOL_FLT0POL) = (v)) /*@}*/ /*! * @name Register FTM_FLTPOL, field FLT1POL[1] (RW) * * Defines the polarity of the fault input. This field is write protected. It * can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - The fault input polarity is active high. A 1 at the fault input * indicates a fault. * - 1 - The fault input polarity is active low. A 0 at the fault input * indicates a fault. */ /*@{*/ #define BP_FTM_FLTPOL_FLT1POL (1U) /*!< Bit position for FTM_FLTPOL_FLT1POL. */ #define BM_FTM_FLTPOL_FLT1POL (0x00000002U) /*!< Bit mask for FTM_FLTPOL_FLT1POL. */ #define BS_FTM_FLTPOL_FLT1POL (1U) /*!< Bit field size in bits for FTM_FLTPOL_FLT1POL. */ /*! @brief Read current value of the FTM_FLTPOL_FLT1POL field. */ #define BR_FTM_FLTPOL_FLT1POL(x) (BITBAND_ACCESS32(HW_FTM_FLTPOL_ADDR(x), BP_FTM_FLTPOL_FLT1POL)) /*! @brief Format value for bitfield FTM_FLTPOL_FLT1POL. */ #define BF_FTM_FLTPOL_FLT1POL(v) ((uint32_t)((uint32_t)(v) << BP_FTM_FLTPOL_FLT1POL) & BM_FTM_FLTPOL_FLT1POL) /*! @brief Set the FLT1POL field to a new value. */ #define BW_FTM_FLTPOL_FLT1POL(x, v) (BITBAND_ACCESS32(HW_FTM_FLTPOL_ADDR(x), BP_FTM_FLTPOL_FLT1POL) = (v)) /*@}*/ /*! * @name Register FTM_FLTPOL, field FLT2POL[2] (RW) * * Defines the polarity of the fault input. This field is write protected. It * can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - The fault input polarity is active high. A 1 at the fault input * indicates a fault. * - 1 - The fault input polarity is active low. A 0 at the fault input * indicates a fault. */ /*@{*/ #define BP_FTM_FLTPOL_FLT2POL (2U) /*!< Bit position for FTM_FLTPOL_FLT2POL. */ #define BM_FTM_FLTPOL_FLT2POL (0x00000004U) /*!< Bit mask for FTM_FLTPOL_FLT2POL. */ #define BS_FTM_FLTPOL_FLT2POL (1U) /*!< Bit field size in bits for FTM_FLTPOL_FLT2POL. */ /*! @brief Read current value of the FTM_FLTPOL_FLT2POL field. */ #define BR_FTM_FLTPOL_FLT2POL(x) (BITBAND_ACCESS32(HW_FTM_FLTPOL_ADDR(x), BP_FTM_FLTPOL_FLT2POL)) /*! @brief Format value for bitfield FTM_FLTPOL_FLT2POL. */ #define BF_FTM_FLTPOL_FLT2POL(v) ((uint32_t)((uint32_t)(v) << BP_FTM_FLTPOL_FLT2POL) & BM_FTM_FLTPOL_FLT2POL) /*! @brief Set the FLT2POL field to a new value. */ #define BW_FTM_FLTPOL_FLT2POL(x, v) (BITBAND_ACCESS32(HW_FTM_FLTPOL_ADDR(x), BP_FTM_FLTPOL_FLT2POL) = (v)) /*@}*/ /*! * @name Register FTM_FLTPOL, field FLT3POL[3] (RW) * * Defines the polarity of the fault input. This field is write protected. It * can be written only when MODE[WPDIS] = 1. * * Values: * - 0 - The fault input polarity is active high. A 1 at the fault input * indicates a fault. * - 1 - The fault input polarity is active low. A 0 at the fault input * indicates a fault. */ /*@{*/ #define BP_FTM_FLTPOL_FLT3POL (3U) /*!< Bit position for FTM_FLTPOL_FLT3POL. */ #define BM_FTM_FLTPOL_FLT3POL (0x00000008U) /*!< Bit mask for FTM_FLTPOL_FLT3POL. */ #define BS_FTM_FLTPOL_FLT3POL (1U) /*!< Bit field size in bits for FTM_FLTPOL_FLT3POL. */ /*! @brief Read current value of the FTM_FLTPOL_FLT3POL field. */ #define BR_FTM_FLTPOL_FLT3POL(x) (BITBAND_ACCESS32(HW_FTM_FLTPOL_ADDR(x), BP_FTM_FLTPOL_FLT3POL)) /*! @brief Format value for bitfield FTM_FLTPOL_FLT3POL. */ #define BF_FTM_FLTPOL_FLT3POL(v) ((uint32_t)((uint32_t)(v) << BP_FTM_FLTPOL_FLT3POL) & BM_FTM_FLTPOL_FLT3POL) /*! @brief Set the FLT3POL field to a new value. */ #define BW_FTM_FLTPOL_FLT3POL(x, v) (BITBAND_ACCESS32(HW_FTM_FLTPOL_ADDR(x), BP_FTM_FLTPOL_FLT3POL) = (v)) /*@}*/ /******************************************************************************* * HW_FTM_SYNCONF - Synchronization Configuration ******************************************************************************/ /*! * @brief HW_FTM_SYNCONF - Synchronization Configuration (RW) * * Reset value: 0x00000000U * * This register selects the PWM synchronization configuration, SWOCTRL, INVCTRL * and CNTIN registers synchronization, if FTM clears the TRIGj bit, where j = * 0, 1, 2, when the hardware trigger j is detected. */ typedef union _hw_ftm_synconf { uint32_t U; struct _hw_ftm_synconf_bitfields { uint32_t HWTRIGMODE : 1; /*!< [0] Hardware Trigger Mode */ uint32_t RESERVED0 : 1; /*!< [1] */ uint32_t CNTINC : 1; /*!< [2] CNTIN Register Synchronization */ uint32_t RESERVED1 : 1; /*!< [3] */ uint32_t INVC : 1; /*!< [4] INVCTRL Register Synchronization */ uint32_t SWOC : 1; /*!< [5] SWOCTRL Register Synchronization */ uint32_t RESERVED2 : 1; /*!< [6] */ uint32_t SYNCMODE : 1; /*!< [7] Synchronization Mode */ uint32_t SWRSTCNT : 1; /*!< [8] */ uint32_t SWWRBUF : 1; /*!< [9] */ uint32_t SWOM : 1; /*!< [10] */ uint32_t SWINVC : 1; /*!< [11] */ uint32_t SWSOC : 1; /*!< [12] */ uint32_t RESERVED3 : 3; /*!< [15:13] */ uint32_t HWRSTCNT : 1; /*!< [16] */ uint32_t HWWRBUF : 1; /*!< [17] */ uint32_t HWOM : 1; /*!< [18] */ uint32_t HWINVC : 1; /*!< [19] */ uint32_t HWSOC : 1; /*!< [20] */ uint32_t RESERVED4 : 11; /*!< [31:21] */ } B; } hw_ftm_synconf_t; /*! * @name Constants and macros for entire FTM_SYNCONF register */ /*@{*/ #define HW_FTM_SYNCONF_ADDR(x) ((x) + 0x8CU) #define HW_FTM_SYNCONF(x) (*(__IO hw_ftm_synconf_t *) HW_FTM_SYNCONF_ADDR(x)) #define HW_FTM_SYNCONF_RD(x) (HW_FTM_SYNCONF(x).U) #define HW_FTM_SYNCONF_WR(x, v) (HW_FTM_SYNCONF(x).U = (v)) #define HW_FTM_SYNCONF_SET(x, v) (HW_FTM_SYNCONF_WR(x, HW_FTM_SYNCONF_RD(x) | (v))) #define HW_FTM_SYNCONF_CLR(x, v) (HW_FTM_SYNCONF_WR(x, HW_FTM_SYNCONF_RD(x) & ~(v))) #define HW_FTM_SYNCONF_TOG(x, v) (HW_FTM_SYNCONF_WR(x, HW_FTM_SYNCONF_RD(x) ^ (v))) /*@}*/ /* * Constants & macros for individual FTM_SYNCONF bitfields */ /*! * @name Register FTM_SYNCONF, field HWTRIGMODE[0] (RW) * * Values: * - 0 - FTM clears the TRIGj bit when the hardware trigger j is detected, where * j = 0, 1,2. * - 1 - FTM does not clear the TRIGj bit when the hardware trigger j is * detected, where j = 0, 1,2. */ /*@{*/ #define BP_FTM_SYNCONF_HWTRIGMODE (0U) /*!< Bit position for FTM_SYNCONF_HWTRIGMODE. */ #define BM_FTM_SYNCONF_HWTRIGMODE (0x00000001U) /*!< Bit mask for FTM_SYNCONF_HWTRIGMODE. */ #define BS_FTM_SYNCONF_HWTRIGMODE (1U) /*!< Bit field size in bits for FTM_SYNCONF_HWTRIGMODE. */ /*! @brief Read current value of the FTM_SYNCONF_HWTRIGMODE field. */ #define BR_FTM_SYNCONF_HWTRIGMODE(x) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_HWTRIGMODE)) /*! @brief Format value for bitfield FTM_SYNCONF_HWTRIGMODE. */ #define BF_FTM_SYNCONF_HWTRIGMODE(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SYNCONF_HWTRIGMODE) & BM_FTM_SYNCONF_HWTRIGMODE) /*! @brief Set the HWTRIGMODE field to a new value. */ #define BW_FTM_SYNCONF_HWTRIGMODE(x, v) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_HWTRIGMODE) = (v)) /*@}*/ /*! * @name Register FTM_SYNCONF, field CNTINC[2] (RW) * * Values: * - 0 - CNTIN register is updated with its buffer value at all rising edges of * system clock. * - 1 - CNTIN register is updated with its buffer value by the PWM * synchronization. */ /*@{*/ #define BP_FTM_SYNCONF_CNTINC (2U) /*!< Bit position for FTM_SYNCONF_CNTINC. */ #define BM_FTM_SYNCONF_CNTINC (0x00000004U) /*!< Bit mask for FTM_SYNCONF_CNTINC. */ #define BS_FTM_SYNCONF_CNTINC (1U) /*!< Bit field size in bits for FTM_SYNCONF_CNTINC. */ /*! @brief Read current value of the FTM_SYNCONF_CNTINC field. */ #define BR_FTM_SYNCONF_CNTINC(x) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_CNTINC)) /*! @brief Format value for bitfield FTM_SYNCONF_CNTINC. */ #define BF_FTM_SYNCONF_CNTINC(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SYNCONF_CNTINC) & BM_FTM_SYNCONF_CNTINC) /*! @brief Set the CNTINC field to a new value. */ #define BW_FTM_SYNCONF_CNTINC(x, v) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_CNTINC) = (v)) /*@}*/ /*! * @name Register FTM_SYNCONF, field INVC[4] (RW) * * Values: * - 0 - INVCTRL register is updated with its buffer value at all rising edges * of system clock. * - 1 - INVCTRL register is updated with its buffer value by the PWM * synchronization. */ /*@{*/ #define BP_FTM_SYNCONF_INVC (4U) /*!< Bit position for FTM_SYNCONF_INVC. */ #define BM_FTM_SYNCONF_INVC (0x00000010U) /*!< Bit mask for FTM_SYNCONF_INVC. */ #define BS_FTM_SYNCONF_INVC (1U) /*!< Bit field size in bits for FTM_SYNCONF_INVC. */ /*! @brief Read current value of the FTM_SYNCONF_INVC field. */ #define BR_FTM_SYNCONF_INVC(x) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_INVC)) /*! @brief Format value for bitfield FTM_SYNCONF_INVC. */ #define BF_FTM_SYNCONF_INVC(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SYNCONF_INVC) & BM_FTM_SYNCONF_INVC) /*! @brief Set the INVC field to a new value. */ #define BW_FTM_SYNCONF_INVC(x, v) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_INVC) = (v)) /*@}*/ /*! * @name Register FTM_SYNCONF, field SWOC[5] (RW) * * Values: * - 0 - SWOCTRL register is updated with its buffer value at all rising edges * of system clock. * - 1 - SWOCTRL register is updated with its buffer value by the PWM * synchronization. */ /*@{*/ #define BP_FTM_SYNCONF_SWOC (5U) /*!< Bit position for FTM_SYNCONF_SWOC. */ #define BM_FTM_SYNCONF_SWOC (0x00000020U) /*!< Bit mask for FTM_SYNCONF_SWOC. */ #define BS_FTM_SYNCONF_SWOC (1U) /*!< Bit field size in bits for FTM_SYNCONF_SWOC. */ /*! @brief Read current value of the FTM_SYNCONF_SWOC field. */ #define BR_FTM_SYNCONF_SWOC(x) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_SWOC)) /*! @brief Format value for bitfield FTM_SYNCONF_SWOC. */ #define BF_FTM_SYNCONF_SWOC(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SYNCONF_SWOC) & BM_FTM_SYNCONF_SWOC) /*! @brief Set the SWOC field to a new value. */ #define BW_FTM_SYNCONF_SWOC(x, v) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_SWOC) = (v)) /*@}*/ /*! * @name Register FTM_SYNCONF, field SYNCMODE[7] (RW) * * Selects the PWM Synchronization mode. * * Values: * - 0 - Legacy PWM synchronization is selected. * - 1 - Enhanced PWM synchronization is selected. */ /*@{*/ #define BP_FTM_SYNCONF_SYNCMODE (7U) /*!< Bit position for FTM_SYNCONF_SYNCMODE. */ #define BM_FTM_SYNCONF_SYNCMODE (0x00000080U) /*!< Bit mask for FTM_SYNCONF_SYNCMODE. */ #define BS_FTM_SYNCONF_SYNCMODE (1U) /*!< Bit field size in bits for FTM_SYNCONF_SYNCMODE. */ /*! @brief Read current value of the FTM_SYNCONF_SYNCMODE field. */ #define BR_FTM_SYNCONF_SYNCMODE(x) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_SYNCMODE)) /*! @brief Format value for bitfield FTM_SYNCONF_SYNCMODE. */ #define BF_FTM_SYNCONF_SYNCMODE(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SYNCONF_SYNCMODE) & BM_FTM_SYNCONF_SYNCMODE) /*! @brief Set the SYNCMODE field to a new value. */ #define BW_FTM_SYNCONF_SYNCMODE(x, v) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_SYNCMODE) = (v)) /*@}*/ /*! * @name Register FTM_SYNCONF, field SWRSTCNT[8] (RW) * * FTM counter synchronization is activated by the software trigger. * * Values: * - 0 - The software trigger does not activate the FTM counter synchronization. * - 1 - The software trigger activates the FTM counter synchronization. */ /*@{*/ #define BP_FTM_SYNCONF_SWRSTCNT (8U) /*!< Bit position for FTM_SYNCONF_SWRSTCNT. */ #define BM_FTM_SYNCONF_SWRSTCNT (0x00000100U) /*!< Bit mask for FTM_SYNCONF_SWRSTCNT. */ #define BS_FTM_SYNCONF_SWRSTCNT (1U) /*!< Bit field size in bits for FTM_SYNCONF_SWRSTCNT. */ /*! @brief Read current value of the FTM_SYNCONF_SWRSTCNT field. */ #define BR_FTM_SYNCONF_SWRSTCNT(x) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_SWRSTCNT)) /*! @brief Format value for bitfield FTM_SYNCONF_SWRSTCNT. */ #define BF_FTM_SYNCONF_SWRSTCNT(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SYNCONF_SWRSTCNT) & BM_FTM_SYNCONF_SWRSTCNT) /*! @brief Set the SWRSTCNT field to a new value. */ #define BW_FTM_SYNCONF_SWRSTCNT(x, v) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_SWRSTCNT) = (v)) /*@}*/ /*! * @name Register FTM_SYNCONF, field SWWRBUF[9] (RW) * * MOD, CNTIN, and CV registers synchronization is activated by the software * trigger. * * Values: * - 0 - The software trigger does not activate MOD, CNTIN, and CV registers * synchronization. * - 1 - The software trigger activates MOD, CNTIN, and CV registers * synchronization. */ /*@{*/ #define BP_FTM_SYNCONF_SWWRBUF (9U) /*!< Bit position for FTM_SYNCONF_SWWRBUF. */ #define BM_FTM_SYNCONF_SWWRBUF (0x00000200U) /*!< Bit mask for FTM_SYNCONF_SWWRBUF. */ #define BS_FTM_SYNCONF_SWWRBUF (1U) /*!< Bit field size in bits for FTM_SYNCONF_SWWRBUF. */ /*! @brief Read current value of the FTM_SYNCONF_SWWRBUF field. */ #define BR_FTM_SYNCONF_SWWRBUF(x) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_SWWRBUF)) /*! @brief Format value for bitfield FTM_SYNCONF_SWWRBUF. */ #define BF_FTM_SYNCONF_SWWRBUF(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SYNCONF_SWWRBUF) & BM_FTM_SYNCONF_SWWRBUF) /*! @brief Set the SWWRBUF field to a new value. */ #define BW_FTM_SYNCONF_SWWRBUF(x, v) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_SWWRBUF) = (v)) /*@}*/ /*! * @name Register FTM_SYNCONF, field SWOM[10] (RW) * * Output mask synchronization is activated by the software trigger. * * Values: * - 0 - The software trigger does not activate the OUTMASK register * synchronization. * - 1 - The software trigger activates the OUTMASK register synchronization. */ /*@{*/ #define BP_FTM_SYNCONF_SWOM (10U) /*!< Bit position for FTM_SYNCONF_SWOM. */ #define BM_FTM_SYNCONF_SWOM (0x00000400U) /*!< Bit mask for FTM_SYNCONF_SWOM. */ #define BS_FTM_SYNCONF_SWOM (1U) /*!< Bit field size in bits for FTM_SYNCONF_SWOM. */ /*! @brief Read current value of the FTM_SYNCONF_SWOM field. */ #define BR_FTM_SYNCONF_SWOM(x) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_SWOM)) /*! @brief Format value for bitfield FTM_SYNCONF_SWOM. */ #define BF_FTM_SYNCONF_SWOM(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SYNCONF_SWOM) & BM_FTM_SYNCONF_SWOM) /*! @brief Set the SWOM field to a new value. */ #define BW_FTM_SYNCONF_SWOM(x, v) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_SWOM) = (v)) /*@}*/ /*! * @name Register FTM_SYNCONF, field SWINVC[11] (RW) * * Inverting control synchronization is activated by the software trigger. * * Values: * - 0 - The software trigger does not activate the INVCTRL register * synchronization. * - 1 - The software trigger activates the INVCTRL register synchronization. */ /*@{*/ #define BP_FTM_SYNCONF_SWINVC (11U) /*!< Bit position for FTM_SYNCONF_SWINVC. */ #define BM_FTM_SYNCONF_SWINVC (0x00000800U) /*!< Bit mask for FTM_SYNCONF_SWINVC. */ #define BS_FTM_SYNCONF_SWINVC (1U) /*!< Bit field size in bits for FTM_SYNCONF_SWINVC. */ /*! @brief Read current value of the FTM_SYNCONF_SWINVC field. */ #define BR_FTM_SYNCONF_SWINVC(x) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_SWINVC)) /*! @brief Format value for bitfield FTM_SYNCONF_SWINVC. */ #define BF_FTM_SYNCONF_SWINVC(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SYNCONF_SWINVC) & BM_FTM_SYNCONF_SWINVC) /*! @brief Set the SWINVC field to a new value. */ #define BW_FTM_SYNCONF_SWINVC(x, v) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_SWINVC) = (v)) /*@}*/ /*! * @name Register FTM_SYNCONF, field SWSOC[12] (RW) * * Software output control synchronization is activated by the software trigger. * * Values: * - 0 - The software trigger does not activate the SWOCTRL register * synchronization. * - 1 - The software trigger activates the SWOCTRL register synchronization. */ /*@{*/ #define BP_FTM_SYNCONF_SWSOC (12U) /*!< Bit position for FTM_SYNCONF_SWSOC. */ #define BM_FTM_SYNCONF_SWSOC (0x00001000U) /*!< Bit mask for FTM_SYNCONF_SWSOC. */ #define BS_FTM_SYNCONF_SWSOC (1U) /*!< Bit field size in bits for FTM_SYNCONF_SWSOC. */ /*! @brief Read current value of the FTM_SYNCONF_SWSOC field. */ #define BR_FTM_SYNCONF_SWSOC(x) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_SWSOC)) /*! @brief Format value for bitfield FTM_SYNCONF_SWSOC. */ #define BF_FTM_SYNCONF_SWSOC(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SYNCONF_SWSOC) & BM_FTM_SYNCONF_SWSOC) /*! @brief Set the SWSOC field to a new value. */ #define BW_FTM_SYNCONF_SWSOC(x, v) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_SWSOC) = (v)) /*@}*/ /*! * @name Register FTM_SYNCONF, field HWRSTCNT[16] (RW) * * FTM counter synchronization is activated by a hardware trigger. * * Values: * - 0 - A hardware trigger does not activate the FTM counter synchronization. * - 1 - A hardware trigger activates the FTM counter synchronization. */ /*@{*/ #define BP_FTM_SYNCONF_HWRSTCNT (16U) /*!< Bit position for FTM_SYNCONF_HWRSTCNT. */ #define BM_FTM_SYNCONF_HWRSTCNT (0x00010000U) /*!< Bit mask for FTM_SYNCONF_HWRSTCNT. */ #define BS_FTM_SYNCONF_HWRSTCNT (1U) /*!< Bit field size in bits for FTM_SYNCONF_HWRSTCNT. */ /*! @brief Read current value of the FTM_SYNCONF_HWRSTCNT field. */ #define BR_FTM_SYNCONF_HWRSTCNT(x) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_HWRSTCNT)) /*! @brief Format value for bitfield FTM_SYNCONF_HWRSTCNT. */ #define BF_FTM_SYNCONF_HWRSTCNT(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SYNCONF_HWRSTCNT) & BM_FTM_SYNCONF_HWRSTCNT) /*! @brief Set the HWRSTCNT field to a new value. */ #define BW_FTM_SYNCONF_HWRSTCNT(x, v) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_HWRSTCNT) = (v)) /*@}*/ /*! * @name Register FTM_SYNCONF, field HWWRBUF[17] (RW) * * MOD, CNTIN, and CV registers synchronization is activated by a hardware * trigger. * * Values: * - 0 - A hardware trigger does not activate MOD, CNTIN, and CV registers * synchronization. * - 1 - A hardware trigger activates MOD, CNTIN, and CV registers * synchronization. */ /*@{*/ #define BP_FTM_SYNCONF_HWWRBUF (17U) /*!< Bit position for FTM_SYNCONF_HWWRBUF. */ #define BM_FTM_SYNCONF_HWWRBUF (0x00020000U) /*!< Bit mask for FTM_SYNCONF_HWWRBUF. */ #define BS_FTM_SYNCONF_HWWRBUF (1U) /*!< Bit field size in bits for FTM_SYNCONF_HWWRBUF. */ /*! @brief Read current value of the FTM_SYNCONF_HWWRBUF field. */ #define BR_FTM_SYNCONF_HWWRBUF(x) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_HWWRBUF)) /*! @brief Format value for bitfield FTM_SYNCONF_HWWRBUF. */ #define BF_FTM_SYNCONF_HWWRBUF(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SYNCONF_HWWRBUF) & BM_FTM_SYNCONF_HWWRBUF) /*! @brief Set the HWWRBUF field to a new value. */ #define BW_FTM_SYNCONF_HWWRBUF(x, v) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_HWWRBUF) = (v)) /*@}*/ /*! * @name Register FTM_SYNCONF, field HWOM[18] (RW) * * Output mask synchronization is activated by a hardware trigger. * * Values: * - 0 - A hardware trigger does not activate the OUTMASK register * synchronization. * - 1 - A hardware trigger activates the OUTMASK register synchronization. */ /*@{*/ #define BP_FTM_SYNCONF_HWOM (18U) /*!< Bit position for FTM_SYNCONF_HWOM. */ #define BM_FTM_SYNCONF_HWOM (0x00040000U) /*!< Bit mask for FTM_SYNCONF_HWOM. */ #define BS_FTM_SYNCONF_HWOM (1U) /*!< Bit field size in bits for FTM_SYNCONF_HWOM. */ /*! @brief Read current value of the FTM_SYNCONF_HWOM field. */ #define BR_FTM_SYNCONF_HWOM(x) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_HWOM)) /*! @brief Format value for bitfield FTM_SYNCONF_HWOM. */ #define BF_FTM_SYNCONF_HWOM(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SYNCONF_HWOM) & BM_FTM_SYNCONF_HWOM) /*! @brief Set the HWOM field to a new value. */ #define BW_FTM_SYNCONF_HWOM(x, v) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_HWOM) = (v)) /*@}*/ /*! * @name Register FTM_SYNCONF, field HWINVC[19] (RW) * * Inverting control synchronization is activated by a hardware trigger. * * Values: * - 0 - A hardware trigger does not activate the INVCTRL register * synchronization. * - 1 - A hardware trigger activates the INVCTRL register synchronization. */ /*@{*/ #define BP_FTM_SYNCONF_HWINVC (19U) /*!< Bit position for FTM_SYNCONF_HWINVC. */ #define BM_FTM_SYNCONF_HWINVC (0x00080000U) /*!< Bit mask for FTM_SYNCONF_HWINVC. */ #define BS_FTM_SYNCONF_HWINVC (1U) /*!< Bit field size in bits for FTM_SYNCONF_HWINVC. */ /*! @brief Read current value of the FTM_SYNCONF_HWINVC field. */ #define BR_FTM_SYNCONF_HWINVC(x) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_HWINVC)) /*! @brief Format value for bitfield FTM_SYNCONF_HWINVC. */ #define BF_FTM_SYNCONF_HWINVC(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SYNCONF_HWINVC) & BM_FTM_SYNCONF_HWINVC) /*! @brief Set the HWINVC field to a new value. */ #define BW_FTM_SYNCONF_HWINVC(x, v) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_HWINVC) = (v)) /*@}*/ /*! * @name Register FTM_SYNCONF, field HWSOC[20] (RW) * * Software output control synchronization is activated by a hardware trigger. * * Values: * - 0 - A hardware trigger does not activate the SWOCTRL register * synchronization. * - 1 - A hardware trigger activates the SWOCTRL register synchronization. */ /*@{*/ #define BP_FTM_SYNCONF_HWSOC (20U) /*!< Bit position for FTM_SYNCONF_HWSOC. */ #define BM_FTM_SYNCONF_HWSOC (0x00100000U) /*!< Bit mask for FTM_SYNCONF_HWSOC. */ #define BS_FTM_SYNCONF_HWSOC (1U) /*!< Bit field size in bits for FTM_SYNCONF_HWSOC. */ /*! @brief Read current value of the FTM_SYNCONF_HWSOC field. */ #define BR_FTM_SYNCONF_HWSOC(x) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_HWSOC)) /*! @brief Format value for bitfield FTM_SYNCONF_HWSOC. */ #define BF_FTM_SYNCONF_HWSOC(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SYNCONF_HWSOC) & BM_FTM_SYNCONF_HWSOC) /*! @brief Set the HWSOC field to a new value. */ #define BW_FTM_SYNCONF_HWSOC(x, v) (BITBAND_ACCESS32(HW_FTM_SYNCONF_ADDR(x), BP_FTM_SYNCONF_HWSOC) = (v)) /*@}*/ /******************************************************************************* * HW_FTM_INVCTRL - FTM Inverting Control ******************************************************************************/ /*! * @brief HW_FTM_INVCTRL - FTM Inverting Control (RW) * * Reset value: 0x00000000U * * This register controls when the channel (n) output becomes the channel (n+1) * output, and channel (n+1) output becomes the channel (n) output. Each INVmEN * bit enables the inverting operation for the corresponding pair channels m. This * register has a write buffer. The INVmEN bit is updated by the INVCTRL * register synchronization. */ typedef union _hw_ftm_invctrl { uint32_t U; struct _hw_ftm_invctrl_bitfields { uint32_t INV0EN : 1; /*!< [0] Pair Channels 0 Inverting Enable */ uint32_t INV1EN : 1; /*!< [1] Pair Channels 1 Inverting Enable */ uint32_t INV2EN : 1; /*!< [2] Pair Channels 2 Inverting Enable */ uint32_t INV3EN : 1; /*!< [3] Pair Channels 3 Inverting Enable */ uint32_t RESERVED0 : 28; /*!< [31:4] */ } B; } hw_ftm_invctrl_t; /*! * @name Constants and macros for entire FTM_INVCTRL register */ /*@{*/ #define HW_FTM_INVCTRL_ADDR(x) ((x) + 0x90U) #define HW_FTM_INVCTRL(x) (*(__IO hw_ftm_invctrl_t *) HW_FTM_INVCTRL_ADDR(x)) #define HW_FTM_INVCTRL_RD(x) (HW_FTM_INVCTRL(x).U) #define HW_FTM_INVCTRL_WR(x, v) (HW_FTM_INVCTRL(x).U = (v)) #define HW_FTM_INVCTRL_SET(x, v) (HW_FTM_INVCTRL_WR(x, HW_FTM_INVCTRL_RD(x) | (v))) #define HW_FTM_INVCTRL_CLR(x, v) (HW_FTM_INVCTRL_WR(x, HW_FTM_INVCTRL_RD(x) & ~(v))) #define HW_FTM_INVCTRL_TOG(x, v) (HW_FTM_INVCTRL_WR(x, HW_FTM_INVCTRL_RD(x) ^ (v))) /*@}*/ /* * Constants & macros for individual FTM_INVCTRL bitfields */ /*! * @name Register FTM_INVCTRL, field INV0EN[0] (RW) * * Values: * - 0 - Inverting is disabled. * - 1 - Inverting is enabled. */ /*@{*/ #define BP_FTM_INVCTRL_INV0EN (0U) /*!< Bit position for FTM_INVCTRL_INV0EN. */ #define BM_FTM_INVCTRL_INV0EN (0x00000001U) /*!< Bit mask for FTM_INVCTRL_INV0EN. */ #define BS_FTM_INVCTRL_INV0EN (1U) /*!< Bit field size in bits for FTM_INVCTRL_INV0EN. */ /*! @brief Read current value of the FTM_INVCTRL_INV0EN field. */ #define BR_FTM_INVCTRL_INV0EN(x) (BITBAND_ACCESS32(HW_FTM_INVCTRL_ADDR(x), BP_FTM_INVCTRL_INV0EN)) /*! @brief Format value for bitfield FTM_INVCTRL_INV0EN. */ #define BF_FTM_INVCTRL_INV0EN(v) ((uint32_t)((uint32_t)(v) << BP_FTM_INVCTRL_INV0EN) & BM_FTM_INVCTRL_INV0EN) /*! @brief Set the INV0EN field to a new value. */ #define BW_FTM_INVCTRL_INV0EN(x, v) (BITBAND_ACCESS32(HW_FTM_INVCTRL_ADDR(x), BP_FTM_INVCTRL_INV0EN) = (v)) /*@}*/ /*! * @name Register FTM_INVCTRL, field INV1EN[1] (RW) * * Values: * - 0 - Inverting is disabled. * - 1 - Inverting is enabled. */ /*@{*/ #define BP_FTM_INVCTRL_INV1EN (1U) /*!< Bit position for FTM_INVCTRL_INV1EN. */ #define BM_FTM_INVCTRL_INV1EN (0x00000002U) /*!< Bit mask for FTM_INVCTRL_INV1EN. */ #define BS_FTM_INVCTRL_INV1EN (1U) /*!< Bit field size in bits for FTM_INVCTRL_INV1EN. */ /*! @brief Read current value of the FTM_INVCTRL_INV1EN field. */ #define BR_FTM_INVCTRL_INV1EN(x) (BITBAND_ACCESS32(HW_FTM_INVCTRL_ADDR(x), BP_FTM_INVCTRL_INV1EN)) /*! @brief Format value for bitfield FTM_INVCTRL_INV1EN. */ #define BF_FTM_INVCTRL_INV1EN(v) ((uint32_t)((uint32_t)(v) << BP_FTM_INVCTRL_INV1EN) & BM_FTM_INVCTRL_INV1EN) /*! @brief Set the INV1EN field to a new value. */ #define BW_FTM_INVCTRL_INV1EN(x, v) (BITBAND_ACCESS32(HW_FTM_INVCTRL_ADDR(x), BP_FTM_INVCTRL_INV1EN) = (v)) /*@}*/ /*! * @name Register FTM_INVCTRL, field INV2EN[2] (RW) * * Values: * - 0 - Inverting is disabled. * - 1 - Inverting is enabled. */ /*@{*/ #define BP_FTM_INVCTRL_INV2EN (2U) /*!< Bit position for FTM_INVCTRL_INV2EN. */ #define BM_FTM_INVCTRL_INV2EN (0x00000004U) /*!< Bit mask for FTM_INVCTRL_INV2EN. */ #define BS_FTM_INVCTRL_INV2EN (1U) /*!< Bit field size in bits for FTM_INVCTRL_INV2EN. */ /*! @brief Read current value of the FTM_INVCTRL_INV2EN field. */ #define BR_FTM_INVCTRL_INV2EN(x) (BITBAND_ACCESS32(HW_FTM_INVCTRL_ADDR(x), BP_FTM_INVCTRL_INV2EN)) /*! @brief Format value for bitfield FTM_INVCTRL_INV2EN. */ #define BF_FTM_INVCTRL_INV2EN(v) ((uint32_t)((uint32_t)(v) << BP_FTM_INVCTRL_INV2EN) & BM_FTM_INVCTRL_INV2EN) /*! @brief Set the INV2EN field to a new value. */ #define BW_FTM_INVCTRL_INV2EN(x, v) (BITBAND_ACCESS32(HW_FTM_INVCTRL_ADDR(x), BP_FTM_INVCTRL_INV2EN) = (v)) /*@}*/ /*! * @name Register FTM_INVCTRL, field INV3EN[3] (RW) * * Values: * - 0 - Inverting is disabled. * - 1 - Inverting is enabled. */ /*@{*/ #define BP_FTM_INVCTRL_INV3EN (3U) /*!< Bit position for FTM_INVCTRL_INV3EN. */ #define BM_FTM_INVCTRL_INV3EN (0x00000008U) /*!< Bit mask for FTM_INVCTRL_INV3EN. */ #define BS_FTM_INVCTRL_INV3EN (1U) /*!< Bit field size in bits for FTM_INVCTRL_INV3EN. */ /*! @brief Read current value of the FTM_INVCTRL_INV3EN field. */ #define BR_FTM_INVCTRL_INV3EN(x) (BITBAND_ACCESS32(HW_FTM_INVCTRL_ADDR(x), BP_FTM_INVCTRL_INV3EN)) /*! @brief Format value for bitfield FTM_INVCTRL_INV3EN. */ #define BF_FTM_INVCTRL_INV3EN(v) ((uint32_t)((uint32_t)(v) << BP_FTM_INVCTRL_INV3EN) & BM_FTM_INVCTRL_INV3EN) /*! @brief Set the INV3EN field to a new value. */ #define BW_FTM_INVCTRL_INV3EN(x, v) (BITBAND_ACCESS32(HW_FTM_INVCTRL_ADDR(x), BP_FTM_INVCTRL_INV3EN) = (v)) /*@}*/ /******************************************************************************* * HW_FTM_SWOCTRL - FTM Software Output Control ******************************************************************************/ /*! * @brief HW_FTM_SWOCTRL - FTM Software Output Control (RW) * * Reset value: 0x00000000U * * This register enables software control of channel (n) output and defines the * value forced to the channel (n) output: The CHnOC bits enable the control of * the corresponding channel (n) output by software. The CHnOCV bits select the * value that is forced at the corresponding channel (n) output. This register has * a write buffer. The fields are updated by the SWOCTRL register synchronization. */ typedef union _hw_ftm_swoctrl { uint32_t U; struct _hw_ftm_swoctrl_bitfields { uint32_t CH0OC : 1; /*!< [0] Channel 0 Software Output Control Enable * */ uint32_t CH1OC : 1; /*!< [1] Channel 1 Software Output Control Enable * */ uint32_t CH2OC : 1; /*!< [2] Channel 2 Software Output Control Enable * */ uint32_t CH3OC : 1; /*!< [3] Channel 3 Software Output Control Enable * */ uint32_t CH4OC : 1; /*!< [4] Channel 4 Software Output Control Enable * */ uint32_t CH5OC : 1; /*!< [5] Channel 5 Software Output Control Enable * */ uint32_t CH6OC : 1; /*!< [6] Channel 6 Software Output Control Enable * */ uint32_t CH7OC : 1; /*!< [7] Channel 7 Software Output Control Enable * */ uint32_t CH0OCV : 1; /*!< [8] Channel 0 Software Output Control Value * */ uint32_t CH1OCV : 1; /*!< [9] Channel 1 Software Output Control Value * */ uint32_t CH2OCV : 1; /*!< [10] Channel 2 Software Output Control * Value */ uint32_t CH3OCV : 1; /*!< [11] Channel 3 Software Output Control * Value */ uint32_t CH4OCV : 1; /*!< [12] Channel 4 Software Output Control * Value */ uint32_t CH5OCV : 1; /*!< [13] Channel 5 Software Output Control * Value */ uint32_t CH6OCV : 1; /*!< [14] Channel 6 Software Output Control * Value */ uint32_t CH7OCV : 1; /*!< [15] Channel 7 Software Output Control * Value */ uint32_t RESERVED0 : 16; /*!< [31:16] */ } B; } hw_ftm_swoctrl_t; /*! * @name Constants and macros for entire FTM_SWOCTRL register */ /*@{*/ #define HW_FTM_SWOCTRL_ADDR(x) ((x) + 0x94U) #define HW_FTM_SWOCTRL(x) (*(__IO hw_ftm_swoctrl_t *) HW_FTM_SWOCTRL_ADDR(x)) #define HW_FTM_SWOCTRL_RD(x) (HW_FTM_SWOCTRL(x).U) #define HW_FTM_SWOCTRL_WR(x, v) (HW_FTM_SWOCTRL(x).U = (v)) #define HW_FTM_SWOCTRL_SET(x, v) (HW_FTM_SWOCTRL_WR(x, HW_FTM_SWOCTRL_RD(x) | (v))) #define HW_FTM_SWOCTRL_CLR(x, v) (HW_FTM_SWOCTRL_WR(x, HW_FTM_SWOCTRL_RD(x) & ~(v))) #define HW_FTM_SWOCTRL_TOG(x, v) (HW_FTM_SWOCTRL_WR(x, HW_FTM_SWOCTRL_RD(x) ^ (v))) /*@}*/ /* * Constants & macros for individual FTM_SWOCTRL bitfields */ /*! * @name Register FTM_SWOCTRL, field CH0OC[0] (RW) * * Values: * - 0 - The channel output is not affected by software output control. * - 1 - The channel output is affected by software output control. */ /*@{*/ #define BP_FTM_SWOCTRL_CH0OC (0U) /*!< Bit position for FTM_SWOCTRL_CH0OC. */ #define BM_FTM_SWOCTRL_CH0OC (0x00000001U) /*!< Bit mask for FTM_SWOCTRL_CH0OC. */ #define BS_FTM_SWOCTRL_CH0OC (1U) /*!< Bit field size in bits for FTM_SWOCTRL_CH0OC. */ /*! @brief Read current value of the FTM_SWOCTRL_CH0OC field. */ #define BR_FTM_SWOCTRL_CH0OC(x) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH0OC)) /*! @brief Format value for bitfield FTM_SWOCTRL_CH0OC. */ #define BF_FTM_SWOCTRL_CH0OC(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SWOCTRL_CH0OC) & BM_FTM_SWOCTRL_CH0OC) /*! @brief Set the CH0OC field to a new value. */ #define BW_FTM_SWOCTRL_CH0OC(x, v) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH0OC) = (v)) /*@}*/ /*! * @name Register FTM_SWOCTRL, field CH1OC[1] (RW) * * Values: * - 0 - The channel output is not affected by software output control. * - 1 - The channel output is affected by software output control. */ /*@{*/ #define BP_FTM_SWOCTRL_CH1OC (1U) /*!< Bit position for FTM_SWOCTRL_CH1OC. */ #define BM_FTM_SWOCTRL_CH1OC (0x00000002U) /*!< Bit mask for FTM_SWOCTRL_CH1OC. */ #define BS_FTM_SWOCTRL_CH1OC (1U) /*!< Bit field size in bits for FTM_SWOCTRL_CH1OC. */ /*! @brief Read current value of the FTM_SWOCTRL_CH1OC field. */ #define BR_FTM_SWOCTRL_CH1OC(x) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH1OC)) /*! @brief Format value for bitfield FTM_SWOCTRL_CH1OC. */ #define BF_FTM_SWOCTRL_CH1OC(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SWOCTRL_CH1OC) & BM_FTM_SWOCTRL_CH1OC) /*! @brief Set the CH1OC field to a new value. */ #define BW_FTM_SWOCTRL_CH1OC(x, v) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH1OC) = (v)) /*@}*/ /*! * @name Register FTM_SWOCTRL, field CH2OC[2] (RW) * * Values: * - 0 - The channel output is not affected by software output control. * - 1 - The channel output is affected by software output control. */ /*@{*/ #define BP_FTM_SWOCTRL_CH2OC (2U) /*!< Bit position for FTM_SWOCTRL_CH2OC. */ #define BM_FTM_SWOCTRL_CH2OC (0x00000004U) /*!< Bit mask for FTM_SWOCTRL_CH2OC. */ #define BS_FTM_SWOCTRL_CH2OC (1U) /*!< Bit field size in bits for FTM_SWOCTRL_CH2OC. */ /*! @brief Read current value of the FTM_SWOCTRL_CH2OC field. */ #define BR_FTM_SWOCTRL_CH2OC(x) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH2OC)) /*! @brief Format value for bitfield FTM_SWOCTRL_CH2OC. */ #define BF_FTM_SWOCTRL_CH2OC(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SWOCTRL_CH2OC) & BM_FTM_SWOCTRL_CH2OC) /*! @brief Set the CH2OC field to a new value. */ #define BW_FTM_SWOCTRL_CH2OC(x, v) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH2OC) = (v)) /*@}*/ /*! * @name Register FTM_SWOCTRL, field CH3OC[3] (RW) * * Values: * - 0 - The channel output is not affected by software output control. * - 1 - The channel output is affected by software output control. */ /*@{*/ #define BP_FTM_SWOCTRL_CH3OC (3U) /*!< Bit position for FTM_SWOCTRL_CH3OC. */ #define BM_FTM_SWOCTRL_CH3OC (0x00000008U) /*!< Bit mask for FTM_SWOCTRL_CH3OC. */ #define BS_FTM_SWOCTRL_CH3OC (1U) /*!< Bit field size in bits for FTM_SWOCTRL_CH3OC. */ /*! @brief Read current value of the FTM_SWOCTRL_CH3OC field. */ #define BR_FTM_SWOCTRL_CH3OC(x) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH3OC)) /*! @brief Format value for bitfield FTM_SWOCTRL_CH3OC. */ #define BF_FTM_SWOCTRL_CH3OC(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SWOCTRL_CH3OC) & BM_FTM_SWOCTRL_CH3OC) /*! @brief Set the CH3OC field to a new value. */ #define BW_FTM_SWOCTRL_CH3OC(x, v) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH3OC) = (v)) /*@}*/ /*! * @name Register FTM_SWOCTRL, field CH4OC[4] (RW) * * Values: * - 0 - The channel output is not affected by software output control. * - 1 - The channel output is affected by software output control. */ /*@{*/ #define BP_FTM_SWOCTRL_CH4OC (4U) /*!< Bit position for FTM_SWOCTRL_CH4OC. */ #define BM_FTM_SWOCTRL_CH4OC (0x00000010U) /*!< Bit mask for FTM_SWOCTRL_CH4OC. */ #define BS_FTM_SWOCTRL_CH4OC (1U) /*!< Bit field size in bits for FTM_SWOCTRL_CH4OC. */ /*! @brief Read current value of the FTM_SWOCTRL_CH4OC field. */ #define BR_FTM_SWOCTRL_CH4OC(x) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH4OC)) /*! @brief Format value for bitfield FTM_SWOCTRL_CH4OC. */ #define BF_FTM_SWOCTRL_CH4OC(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SWOCTRL_CH4OC) & BM_FTM_SWOCTRL_CH4OC) /*! @brief Set the CH4OC field to a new value. */ #define BW_FTM_SWOCTRL_CH4OC(x, v) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH4OC) = (v)) /*@}*/ /*! * @name Register FTM_SWOCTRL, field CH5OC[5] (RW) * * Values: * - 0 - The channel output is not affected by software output control. * - 1 - The channel output is affected by software output control. */ /*@{*/ #define BP_FTM_SWOCTRL_CH5OC (5U) /*!< Bit position for FTM_SWOCTRL_CH5OC. */ #define BM_FTM_SWOCTRL_CH5OC (0x00000020U) /*!< Bit mask for FTM_SWOCTRL_CH5OC. */ #define BS_FTM_SWOCTRL_CH5OC (1U) /*!< Bit field size in bits for FTM_SWOCTRL_CH5OC. */ /*! @brief Read current value of the FTM_SWOCTRL_CH5OC field. */ #define BR_FTM_SWOCTRL_CH5OC(x) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH5OC)) /*! @brief Format value for bitfield FTM_SWOCTRL_CH5OC. */ #define BF_FTM_SWOCTRL_CH5OC(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SWOCTRL_CH5OC) & BM_FTM_SWOCTRL_CH5OC) /*! @brief Set the CH5OC field to a new value. */ #define BW_FTM_SWOCTRL_CH5OC(x, v) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH5OC) = (v)) /*@}*/ /*! * @name Register FTM_SWOCTRL, field CH6OC[6] (RW) * * Values: * - 0 - The channel output is not affected by software output control. * - 1 - The channel output is affected by software output control. */ /*@{*/ #define BP_FTM_SWOCTRL_CH6OC (6U) /*!< Bit position for FTM_SWOCTRL_CH6OC. */ #define BM_FTM_SWOCTRL_CH6OC (0x00000040U) /*!< Bit mask for FTM_SWOCTRL_CH6OC. */ #define BS_FTM_SWOCTRL_CH6OC (1U) /*!< Bit field size in bits for FTM_SWOCTRL_CH6OC. */ /*! @brief Read current value of the FTM_SWOCTRL_CH6OC field. */ #define BR_FTM_SWOCTRL_CH6OC(x) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH6OC)) /*! @brief Format value for bitfield FTM_SWOCTRL_CH6OC. */ #define BF_FTM_SWOCTRL_CH6OC(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SWOCTRL_CH6OC) & BM_FTM_SWOCTRL_CH6OC) /*! @brief Set the CH6OC field to a new value. */ #define BW_FTM_SWOCTRL_CH6OC(x, v) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH6OC) = (v)) /*@}*/ /*! * @name Register FTM_SWOCTRL, field CH7OC[7] (RW) * * Values: * - 0 - The channel output is not affected by software output control. * - 1 - The channel output is affected by software output control. */ /*@{*/ #define BP_FTM_SWOCTRL_CH7OC (7U) /*!< Bit position for FTM_SWOCTRL_CH7OC. */ #define BM_FTM_SWOCTRL_CH7OC (0x00000080U) /*!< Bit mask for FTM_SWOCTRL_CH7OC. */ #define BS_FTM_SWOCTRL_CH7OC (1U) /*!< Bit field size in bits for FTM_SWOCTRL_CH7OC. */ /*! @brief Read current value of the FTM_SWOCTRL_CH7OC field. */ #define BR_FTM_SWOCTRL_CH7OC(x) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH7OC)) /*! @brief Format value for bitfield FTM_SWOCTRL_CH7OC. */ #define BF_FTM_SWOCTRL_CH7OC(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SWOCTRL_CH7OC) & BM_FTM_SWOCTRL_CH7OC) /*! @brief Set the CH7OC field to a new value. */ #define BW_FTM_SWOCTRL_CH7OC(x, v) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH7OC) = (v)) /*@}*/ /*! * @name Register FTM_SWOCTRL, field CH0OCV[8] (RW) * * Values: * - 0 - The software output control forces 0 to the channel output. * - 1 - The software output control forces 1 to the channel output. */ /*@{*/ #define BP_FTM_SWOCTRL_CH0OCV (8U) /*!< Bit position for FTM_SWOCTRL_CH0OCV. */ #define BM_FTM_SWOCTRL_CH0OCV (0x00000100U) /*!< Bit mask for FTM_SWOCTRL_CH0OCV. */ #define BS_FTM_SWOCTRL_CH0OCV (1U) /*!< Bit field size in bits for FTM_SWOCTRL_CH0OCV. */ /*! @brief Read current value of the FTM_SWOCTRL_CH0OCV field. */ #define BR_FTM_SWOCTRL_CH0OCV(x) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH0OCV)) /*! @brief Format value for bitfield FTM_SWOCTRL_CH0OCV. */ #define BF_FTM_SWOCTRL_CH0OCV(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SWOCTRL_CH0OCV) & BM_FTM_SWOCTRL_CH0OCV) /*! @brief Set the CH0OCV field to a new value. */ #define BW_FTM_SWOCTRL_CH0OCV(x, v) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH0OCV) = (v)) /*@}*/ /*! * @name Register FTM_SWOCTRL, field CH1OCV[9] (RW) * * Values: * - 0 - The software output control forces 0 to the channel output. * - 1 - The software output control forces 1 to the channel output. */ /*@{*/ #define BP_FTM_SWOCTRL_CH1OCV (9U) /*!< Bit position for FTM_SWOCTRL_CH1OCV. */ #define BM_FTM_SWOCTRL_CH1OCV (0x00000200U) /*!< Bit mask for FTM_SWOCTRL_CH1OCV. */ #define BS_FTM_SWOCTRL_CH1OCV (1U) /*!< Bit field size in bits for FTM_SWOCTRL_CH1OCV. */ /*! @brief Read current value of the FTM_SWOCTRL_CH1OCV field. */ #define BR_FTM_SWOCTRL_CH1OCV(x) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH1OCV)) /*! @brief Format value for bitfield FTM_SWOCTRL_CH1OCV. */ #define BF_FTM_SWOCTRL_CH1OCV(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SWOCTRL_CH1OCV) & BM_FTM_SWOCTRL_CH1OCV) /*! @brief Set the CH1OCV field to a new value. */ #define BW_FTM_SWOCTRL_CH1OCV(x, v) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH1OCV) = (v)) /*@}*/ /*! * @name Register FTM_SWOCTRL, field CH2OCV[10] (RW) * * Values: * - 0 - The software output control forces 0 to the channel output. * - 1 - The software output control forces 1 to the channel output. */ /*@{*/ #define BP_FTM_SWOCTRL_CH2OCV (10U) /*!< Bit position for FTM_SWOCTRL_CH2OCV. */ #define BM_FTM_SWOCTRL_CH2OCV (0x00000400U) /*!< Bit mask for FTM_SWOCTRL_CH2OCV. */ #define BS_FTM_SWOCTRL_CH2OCV (1U) /*!< Bit field size in bits for FTM_SWOCTRL_CH2OCV. */ /*! @brief Read current value of the FTM_SWOCTRL_CH2OCV field. */ #define BR_FTM_SWOCTRL_CH2OCV(x) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH2OCV)) /*! @brief Format value for bitfield FTM_SWOCTRL_CH2OCV. */ #define BF_FTM_SWOCTRL_CH2OCV(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SWOCTRL_CH2OCV) & BM_FTM_SWOCTRL_CH2OCV) /*! @brief Set the CH2OCV field to a new value. */ #define BW_FTM_SWOCTRL_CH2OCV(x, v) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH2OCV) = (v)) /*@}*/ /*! * @name Register FTM_SWOCTRL, field CH3OCV[11] (RW) * * Values: * - 0 - The software output control forces 0 to the channel output. * - 1 - The software output control forces 1 to the channel output. */ /*@{*/ #define BP_FTM_SWOCTRL_CH3OCV (11U) /*!< Bit position for FTM_SWOCTRL_CH3OCV. */ #define BM_FTM_SWOCTRL_CH3OCV (0x00000800U) /*!< Bit mask for FTM_SWOCTRL_CH3OCV. */ #define BS_FTM_SWOCTRL_CH3OCV (1U) /*!< Bit field size in bits for FTM_SWOCTRL_CH3OCV. */ /*! @brief Read current value of the FTM_SWOCTRL_CH3OCV field. */ #define BR_FTM_SWOCTRL_CH3OCV(x) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH3OCV)) /*! @brief Format value for bitfield FTM_SWOCTRL_CH3OCV. */ #define BF_FTM_SWOCTRL_CH3OCV(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SWOCTRL_CH3OCV) & BM_FTM_SWOCTRL_CH3OCV) /*! @brief Set the CH3OCV field to a new value. */ #define BW_FTM_SWOCTRL_CH3OCV(x, v) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH3OCV) = (v)) /*@}*/ /*! * @name Register FTM_SWOCTRL, field CH4OCV[12] (RW) * * Values: * - 0 - The software output control forces 0 to the channel output. * - 1 - The software output control forces 1 to the channel output. */ /*@{*/ #define BP_FTM_SWOCTRL_CH4OCV (12U) /*!< Bit position for FTM_SWOCTRL_CH4OCV. */ #define BM_FTM_SWOCTRL_CH4OCV (0x00001000U) /*!< Bit mask for FTM_SWOCTRL_CH4OCV. */ #define BS_FTM_SWOCTRL_CH4OCV (1U) /*!< Bit field size in bits for FTM_SWOCTRL_CH4OCV. */ /*! @brief Read current value of the FTM_SWOCTRL_CH4OCV field. */ #define BR_FTM_SWOCTRL_CH4OCV(x) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH4OCV)) /*! @brief Format value for bitfield FTM_SWOCTRL_CH4OCV. */ #define BF_FTM_SWOCTRL_CH4OCV(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SWOCTRL_CH4OCV) & BM_FTM_SWOCTRL_CH4OCV) /*! @brief Set the CH4OCV field to a new value. */ #define BW_FTM_SWOCTRL_CH4OCV(x, v) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH4OCV) = (v)) /*@}*/ /*! * @name Register FTM_SWOCTRL, field CH5OCV[13] (RW) * * Values: * - 0 - The software output control forces 0 to the channel output. * - 1 - The software output control forces 1 to the channel output. */ /*@{*/ #define BP_FTM_SWOCTRL_CH5OCV (13U) /*!< Bit position for FTM_SWOCTRL_CH5OCV. */ #define BM_FTM_SWOCTRL_CH5OCV (0x00002000U) /*!< Bit mask for FTM_SWOCTRL_CH5OCV. */ #define BS_FTM_SWOCTRL_CH5OCV (1U) /*!< Bit field size in bits for FTM_SWOCTRL_CH5OCV. */ /*! @brief Read current value of the FTM_SWOCTRL_CH5OCV field. */ #define BR_FTM_SWOCTRL_CH5OCV(x) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH5OCV)) /*! @brief Format value for bitfield FTM_SWOCTRL_CH5OCV. */ #define BF_FTM_SWOCTRL_CH5OCV(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SWOCTRL_CH5OCV) & BM_FTM_SWOCTRL_CH5OCV) /*! @brief Set the CH5OCV field to a new value. */ #define BW_FTM_SWOCTRL_CH5OCV(x, v) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH5OCV) = (v)) /*@}*/ /*! * @name Register FTM_SWOCTRL, field CH6OCV[14] (RW) * * Values: * - 0 - The software output control forces 0 to the channel output. * - 1 - The software output control forces 1 to the channel output. */ /*@{*/ #define BP_FTM_SWOCTRL_CH6OCV (14U) /*!< Bit position for FTM_SWOCTRL_CH6OCV. */ #define BM_FTM_SWOCTRL_CH6OCV (0x00004000U) /*!< Bit mask for FTM_SWOCTRL_CH6OCV. */ #define BS_FTM_SWOCTRL_CH6OCV (1U) /*!< Bit field size in bits for FTM_SWOCTRL_CH6OCV. */ /*! @brief Read current value of the FTM_SWOCTRL_CH6OCV field. */ #define BR_FTM_SWOCTRL_CH6OCV(x) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH6OCV)) /*! @brief Format value for bitfield FTM_SWOCTRL_CH6OCV. */ #define BF_FTM_SWOCTRL_CH6OCV(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SWOCTRL_CH6OCV) & BM_FTM_SWOCTRL_CH6OCV) /*! @brief Set the CH6OCV field to a new value. */ #define BW_FTM_SWOCTRL_CH6OCV(x, v) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH6OCV) = (v)) /*@}*/ /*! * @name Register FTM_SWOCTRL, field CH7OCV[15] (RW) * * Values: * - 0 - The software output control forces 0 to the channel output. * - 1 - The software output control forces 1 to the channel output. */ /*@{*/ #define BP_FTM_SWOCTRL_CH7OCV (15U) /*!< Bit position for FTM_SWOCTRL_CH7OCV. */ #define BM_FTM_SWOCTRL_CH7OCV (0x00008000U) /*!< Bit mask for FTM_SWOCTRL_CH7OCV. */ #define BS_FTM_SWOCTRL_CH7OCV (1U) /*!< Bit field size in bits for FTM_SWOCTRL_CH7OCV. */ /*! @brief Read current value of the FTM_SWOCTRL_CH7OCV field. */ #define BR_FTM_SWOCTRL_CH7OCV(x) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH7OCV)) /*! @brief Format value for bitfield FTM_SWOCTRL_CH7OCV. */ #define BF_FTM_SWOCTRL_CH7OCV(v) ((uint32_t)((uint32_t)(v) << BP_FTM_SWOCTRL_CH7OCV) & BM_FTM_SWOCTRL_CH7OCV) /*! @brief Set the CH7OCV field to a new value. */ #define BW_FTM_SWOCTRL_CH7OCV(x, v) (BITBAND_ACCESS32(HW_FTM_SWOCTRL_ADDR(x), BP_FTM_SWOCTRL_CH7OCV) = (v)) /*@}*/ /******************************************************************************* * HW_FTM_PWMLOAD - FTM PWM Load ******************************************************************************/ /*! * @brief HW_FTM_PWMLOAD - FTM PWM Load (RW) * * Reset value: 0x00000000U * * Enables the loading of the MOD, CNTIN, C(n)V, and C(n+1)V registers with the * values of their write buffers when the FTM counter changes from the MOD * register value to its next value or when a channel (j) match occurs. A match occurs * for the channel (j) when FTM counter = C(j)V. */ typedef union _hw_ftm_pwmload { uint32_t U; struct _hw_ftm_pwmload_bitfields { uint32_t CH0SEL : 1; /*!< [0] Channel 0 Select */ uint32_t CH1SEL : 1; /*!< [1] Channel 1 Select */ uint32_t CH2SEL : 1; /*!< [2] Channel 2 Select */ uint32_t CH3SEL : 1; /*!< [3] Channel 3 Select */ uint32_t CH4SEL : 1; /*!< [4] Channel 4 Select */ uint32_t CH5SEL : 1; /*!< [5] Channel 5 Select */ uint32_t CH6SEL : 1; /*!< [6] Channel 6 Select */ uint32_t CH7SEL : 1; /*!< [7] Channel 7 Select */ uint32_t RESERVED0 : 1; /*!< [8] */ uint32_t LDOK : 1; /*!< [9] Load Enable */ uint32_t RESERVED1 : 22; /*!< [31:10] */ } B; } hw_ftm_pwmload_t; /*! * @name Constants and macros for entire FTM_PWMLOAD register */ /*@{*/ #define HW_FTM_PWMLOAD_ADDR(x) ((x) + 0x98U) #define HW_FTM_PWMLOAD(x) (*(__IO hw_ftm_pwmload_t *) HW_FTM_PWMLOAD_ADDR(x)) #define HW_FTM_PWMLOAD_RD(x) (HW_FTM_PWMLOAD(x).U) #define HW_FTM_PWMLOAD_WR(x, v) (HW_FTM_PWMLOAD(x).U = (v)) #define HW_FTM_PWMLOAD_SET(x, v) (HW_FTM_PWMLOAD_WR(x, HW_FTM_PWMLOAD_RD(x) | (v))) #define HW_FTM_PWMLOAD_CLR(x, v) (HW_FTM_PWMLOAD_WR(x, HW_FTM_PWMLOAD_RD(x) & ~(v))) #define HW_FTM_PWMLOAD_TOG(x, v) (HW_FTM_PWMLOAD_WR(x, HW_FTM_PWMLOAD_RD(x) ^ (v))) /*@}*/ /* * Constants & macros for individual FTM_PWMLOAD bitfields */ /*! * @name Register FTM_PWMLOAD, field CH0SEL[0] (RW) * * Values: * - 0 - Do not include the channel in the matching process. * - 1 - Include the channel in the matching process. */ /*@{*/ #define BP_FTM_PWMLOAD_CH0SEL (0U) /*!< Bit position for FTM_PWMLOAD_CH0SEL. */ #define BM_FTM_PWMLOAD_CH0SEL (0x00000001U) /*!< Bit mask for FTM_PWMLOAD_CH0SEL. */ #define BS_FTM_PWMLOAD_CH0SEL (1U) /*!< Bit field size in bits for FTM_PWMLOAD_CH0SEL. */ /*! @brief Read current value of the FTM_PWMLOAD_CH0SEL field. */ #define BR_FTM_PWMLOAD_CH0SEL(x) (BITBAND_ACCESS32(HW_FTM_PWMLOAD_ADDR(x), BP_FTM_PWMLOAD_CH0SEL)) /*! @brief Format value for bitfield FTM_PWMLOAD_CH0SEL. */ #define BF_FTM_PWMLOAD_CH0SEL(v) ((uint32_t)((uint32_t)(v) << BP_FTM_PWMLOAD_CH0SEL) & BM_FTM_PWMLOAD_CH0SEL) /*! @brief Set the CH0SEL field to a new value. */ #define BW_FTM_PWMLOAD_CH0SEL(x, v) (BITBAND_ACCESS32(HW_FTM_PWMLOAD_ADDR(x), BP_FTM_PWMLOAD_CH0SEL) = (v)) /*@}*/ /*! * @name Register FTM_PWMLOAD, field CH1SEL[1] (RW) * * Values: * - 0 - Do not include the channel in the matching process. * - 1 - Include the channel in the matching process. */ /*@{*/ #define BP_FTM_PWMLOAD_CH1SEL (1U) /*!< Bit position for FTM_PWMLOAD_CH1SEL. */ #define BM_FTM_PWMLOAD_CH1SEL (0x00000002U) /*!< Bit mask for FTM_PWMLOAD_CH1SEL. */ #define BS_FTM_PWMLOAD_CH1SEL (1U) /*!< Bit field size in bits for FTM_PWMLOAD_CH1SEL. */ /*! @brief Read current value of the FTM_PWMLOAD_CH1SEL field. */ #define BR_FTM_PWMLOAD_CH1SEL(x) (BITBAND_ACCESS32(HW_FTM_PWMLOAD_ADDR(x), BP_FTM_PWMLOAD_CH1SEL)) /*! @brief Format value for bitfield FTM_PWMLOAD_CH1SEL. */ #define BF_FTM_PWMLOAD_CH1SEL(v) ((uint32_t)((uint32_t)(v) << BP_FTM_PWMLOAD_CH1SEL) & BM_FTM_PWMLOAD_CH1SEL) /*! @brief Set the CH1SEL field to a new value. */ #define BW_FTM_PWMLOAD_CH1SEL(x, v) (BITBAND_ACCESS32(HW_FTM_PWMLOAD_ADDR(x), BP_FTM_PWMLOAD_CH1SEL) = (v)) /*@}*/ /*! * @name Register FTM_PWMLOAD, field CH2SEL[2] (RW) * * Values: * - 0 - Do not include the channel in the matching process. * - 1 - Include the channel in the matching process. */ /*@{*/ #define BP_FTM_PWMLOAD_CH2SEL (2U) /*!< Bit position for FTM_PWMLOAD_CH2SEL. */ #define BM_FTM_PWMLOAD_CH2SEL (0x00000004U) /*!< Bit mask for FTM_PWMLOAD_CH2SEL. */ #define BS_FTM_PWMLOAD_CH2SEL (1U) /*!< Bit field size in bits for FTM_PWMLOAD_CH2SEL. */ /*! @brief Read current value of the FTM_PWMLOAD_CH2SEL field. */ #define BR_FTM_PWMLOAD_CH2SEL(x) (BITBAND_ACCESS32(HW_FTM_PWMLOAD_ADDR(x), BP_FTM_PWMLOAD_CH2SEL)) /*! @brief Format value for bitfield FTM_PWMLOAD_CH2SEL. */ #define BF_FTM_PWMLOAD_CH2SEL(v) ((uint32_t)((uint32_t)(v) << BP_FTM_PWMLOAD_CH2SEL) & BM_FTM_PWMLOAD_CH2SEL) /*! @brief Set the CH2SEL field to a new value. */ #define BW_FTM_PWMLOAD_CH2SEL(x, v) (BITBAND_ACCESS32(HW_FTM_PWMLOAD_ADDR(x), BP_FTM_PWMLOAD_CH2SEL) = (v)) /*@}*/ /*! * @name Register FTM_PWMLOAD, field CH3SEL[3] (RW) * * Values: * - 0 - Do not include the channel in the matching process. * - 1 - Include the channel in the matching process. */ /*@{*/ #define BP_FTM_PWMLOAD_CH3SEL (3U) /*!< Bit position for FTM_PWMLOAD_CH3SEL. */ #define BM_FTM_PWMLOAD_CH3SEL (0x00000008U) /*!< Bit mask for FTM_PWMLOAD_CH3SEL. */ #define BS_FTM_PWMLOAD_CH3SEL (1U) /*!< Bit field size in bits for FTM_PWMLOAD_CH3SEL. */ /*! @brief Read current value of the FTM_PWMLOAD_CH3SEL field. */ #define BR_FTM_PWMLOAD_CH3SEL(x) (BITBAND_ACCESS32(HW_FTM_PWMLOAD_ADDR(x), BP_FTM_PWMLOAD_CH3SEL)) /*! @brief Format value for bitfield FTM_PWMLOAD_CH3SEL. */ #define BF_FTM_PWMLOAD_CH3SEL(v) ((uint32_t)((uint32_t)(v) << BP_FTM_PWMLOAD_CH3SEL) & BM_FTM_PWMLOAD_CH3SEL) /*! @brief Set the CH3SEL field to a new value. */ #define BW_FTM_PWMLOAD_CH3SEL(x, v) (BITBAND_ACCESS32(HW_FTM_PWMLOAD_ADDR(x), BP_FTM_PWMLOAD_CH3SEL) = (v)) /*@}*/ /*! * @name Register FTM_PWMLOAD, field CH4SEL[4] (RW) * * Values: * - 0 - Do not include the channel in the matching process. * - 1 - Include the channel in the matching process. */ /*@{*/ #define BP_FTM_PWMLOAD_CH4SEL (4U) /*!< Bit position for FTM_PWMLOAD_CH4SEL. */ #define BM_FTM_PWMLOAD_CH4SEL (0x00000010U) /*!< Bit mask for FTM_PWMLOAD_CH4SEL. */ #define BS_FTM_PWMLOAD_CH4SEL (1U) /*!< Bit field size in bits for FTM_PWMLOAD_CH4SEL. */ /*! @brief Read current value of the FTM_PWMLOAD_CH4SEL field. */ #define BR_FTM_PWMLOAD_CH4SEL(x) (BITBAND_ACCESS32(HW_FTM_PWMLOAD_ADDR(x), BP_FTM_PWMLOAD_CH4SEL)) /*! @brief Format value for bitfield FTM_PWMLOAD_CH4SEL. */ #define BF_FTM_PWMLOAD_CH4SEL(v) ((uint32_t)((uint32_t)(v) << BP_FTM_PWMLOAD_CH4SEL) & BM_FTM_PWMLOAD_CH4SEL) /*! @brief Set the CH4SEL field to a new value. */ #define BW_FTM_PWMLOAD_CH4SEL(x, v) (BITBAND_ACCESS32(HW_FTM_PWMLOAD_ADDR(x), BP_FTM_PWMLOAD_CH4SEL) = (v)) /*@}*/ /*! * @name Register FTM_PWMLOAD, field CH5SEL[5] (RW) * * Values: * - 0 - Do not include the channel in the matching process. * - 1 - Include the channel in the matching process. */ /*@{*/ #define BP_FTM_PWMLOAD_CH5SEL (5U) /*!< Bit position for FTM_PWMLOAD_CH5SEL. */ #define BM_FTM_PWMLOAD_CH5SEL (0x00000020U) /*!< Bit mask for FTM_PWMLOAD_CH5SEL. */ #define BS_FTM_PWMLOAD_CH5SEL (1U) /*!< Bit field size in bits for FTM_PWMLOAD_CH5SEL. */ /*! @brief Read current value of the FTM_PWMLOAD_CH5SEL field. */ #define BR_FTM_PWMLOAD_CH5SEL(x) (BITBAND_ACCESS32(HW_FTM_PWMLOAD_ADDR(x), BP_FTM_PWMLOAD_CH5SEL)) /*! @brief Format value for bitfield FTM_PWMLOAD_CH5SEL. */ #define BF_FTM_PWMLOAD_CH5SEL(v) ((uint32_t)((uint32_t)(v) << BP_FTM_PWMLOAD_CH5SEL) & BM_FTM_PWMLOAD_CH5SEL) /*! @brief Set the CH5SEL field to a new value. */ #define BW_FTM_PWMLOAD_CH5SEL(x, v) (BITBAND_ACCESS32(HW_FTM_PWMLOAD_ADDR(x), BP_FTM_PWMLOAD_CH5SEL) = (v)) /*@}*/ /*! * @name Register FTM_PWMLOAD, field CH6SEL[6] (RW) * * Values: * - 0 - Do not include the channel in the matching process. * - 1 - Include the channel in the matching process. */ /*@{*/ #define BP_FTM_PWMLOAD_CH6SEL (6U) /*!< Bit position for FTM_PWMLOAD_CH6SEL. */ #define BM_FTM_PWMLOAD_CH6SEL (0x00000040U) /*!< Bit mask for FTM_PWMLOAD_CH6SEL. */ #define BS_FTM_PWMLOAD_CH6SEL (1U) /*!< Bit field size in bits for FTM_PWMLOAD_CH6SEL. */ /*! @brief Read current value of the FTM_PWMLOAD_CH6SEL field. */ #define BR_FTM_PWMLOAD_CH6SEL(x) (BITBAND_ACCESS32(HW_FTM_PWMLOAD_ADDR(x), BP_FTM_PWMLOAD_CH6SEL)) /*! @brief Format value for bitfield FTM_PWMLOAD_CH6SEL. */ #define BF_FTM_PWMLOAD_CH6SEL(v) ((uint32_t)((uint32_t)(v) << BP_FTM_PWMLOAD_CH6SEL) & BM_FTM_PWMLOAD_CH6SEL) /*! @brief Set the CH6SEL field to a new value. */ #define BW_FTM_PWMLOAD_CH6SEL(x, v) (BITBAND_ACCESS32(HW_FTM_PWMLOAD_ADDR(x), BP_FTM_PWMLOAD_CH6SEL) = (v)) /*@}*/ /*! * @name Register FTM_PWMLOAD, field CH7SEL[7] (RW) * * Values: * - 0 - Do not include the channel in the matching process. * - 1 - Include the channel in the matching process. */ /*@{*/ #define BP_FTM_PWMLOAD_CH7SEL (7U) /*!< Bit position for FTM_PWMLOAD_CH7SEL. */ #define BM_FTM_PWMLOAD_CH7SEL (0x00000080U) /*!< Bit mask for FTM_PWMLOAD_CH7SEL. */ #define BS_FTM_PWMLOAD_CH7SEL (1U) /*!< Bit field size in bits for FTM_PWMLOAD_CH7SEL. */ /*! @brief Read current value of the FTM_PWMLOAD_CH7SEL field. */ #define BR_FTM_PWMLOAD_CH7SEL(x) (BITBAND_ACCESS32(HW_FTM_PWMLOAD_ADDR(x), BP_FTM_PWMLOAD_CH7SEL)) /*! @brief Format value for bitfield FTM_PWMLOAD_CH7SEL. */ #define BF_FTM_PWMLOAD_CH7SEL(v) ((uint32_t)((uint32_t)(v) << BP_FTM_PWMLOAD_CH7SEL) & BM_FTM_PWMLOAD_CH7SEL) /*! @brief Set the CH7SEL field to a new value. */ #define BW_FTM_PWMLOAD_CH7SEL(x, v) (BITBAND_ACCESS32(HW_FTM_PWMLOAD_ADDR(x), BP_FTM_PWMLOAD_CH7SEL) = (v)) /*@}*/ /*! * @name Register FTM_PWMLOAD, field LDOK[9] (RW) * * Enables the loading of the MOD, CNTIN, and CV registers with the values of * their write buffers. * * Values: * - 0 - Loading updated values is disabled. * - 1 - Loading updated values is enabled. */ /*@{*/ #define BP_FTM_PWMLOAD_LDOK (9U) /*!< Bit position for FTM_PWMLOAD_LDOK. */ #define BM_FTM_PWMLOAD_LDOK (0x00000200U) /*!< Bit mask for FTM_PWMLOAD_LDOK. */ #define BS_FTM_PWMLOAD_LDOK (1U) /*!< Bit field size in bits for FTM_PWMLOAD_LDOK. */ /*! @brief Read current value of the FTM_PWMLOAD_LDOK field. */ #define BR_FTM_PWMLOAD_LDOK(x) (BITBAND_ACCESS32(HW_FTM_PWMLOAD_ADDR(x), BP_FTM_PWMLOAD_LDOK)) /*! @brief Format value for bitfield FTM_PWMLOAD_LDOK. */ #define BF_FTM_PWMLOAD_LDOK(v) ((uint32_t)((uint32_t)(v) << BP_FTM_PWMLOAD_LDOK) & BM_FTM_PWMLOAD_LDOK) /*! @brief Set the LDOK field to a new value. */ #define BW_FTM_PWMLOAD_LDOK(x, v) (BITBAND_ACCESS32(HW_FTM_PWMLOAD_ADDR(x), BP_FTM_PWMLOAD_LDOK) = (v)) /*@}*/ /******************************************************************************* * hw_ftm_t - module struct ******************************************************************************/ /*! * @brief All FTM module registers. */ #pragma pack(1) typedef struct _hw_ftm { __IO hw_ftm_sc_t SC; /*!< [0x0] Status And Control */ __IO hw_ftm_cnt_t CNT; /*!< [0x4] Counter */ __IO hw_ftm_mod_t MOD; /*!< [0x8] Modulo */ struct { __IO hw_ftm_cnsc_t CnSC; /*!< [0xC] Channel (n) Status And Control */ __IO hw_ftm_cnv_t CnV; /*!< [0x10] Channel (n) Value */ } CONTROLS[8]; __IO hw_ftm_cntin_t CNTIN; /*!< [0x4C] Counter Initial Value */ __IO hw_ftm_status_t STATUS; /*!< [0x50] Capture And Compare Status */ __IO hw_ftm_mode_t MODE; /*!< [0x54] Features Mode Selection */ __IO hw_ftm_sync_t SYNC; /*!< [0x58] Synchronization */ __IO hw_ftm_outinit_t OUTINIT; /*!< [0x5C] Initial State For Channels Output */ __IO hw_ftm_outmask_t OUTMASK; /*!< [0x60] Output Mask */ __IO hw_ftm_combine_t COMBINE; /*!< [0x64] Function For Linked Channels */ __IO hw_ftm_deadtime_t DEADTIME; /*!< [0x68] Deadtime Insertion Control */ __IO hw_ftm_exttrig_t EXTTRIG; /*!< [0x6C] FTM External Trigger */ __IO hw_ftm_pol_t POL; /*!< [0x70] Channels Polarity */ __IO hw_ftm_fms_t FMS; /*!< [0x74] Fault Mode Status */ __IO hw_ftm_filter_t FILTER; /*!< [0x78] Input Capture Filter Control */ __IO hw_ftm_fltctrl_t FLTCTRL; /*!< [0x7C] Fault Control */ __IO hw_ftm_qdctrl_t QDCTRL; /*!< [0x80] Quadrature Decoder Control And Status */ __IO hw_ftm_conf_t CONF; /*!< [0x84] Configuration */ __IO hw_ftm_fltpol_t FLTPOL; /*!< [0x88] FTM Fault Input Polarity */ __IO hw_ftm_synconf_t SYNCONF; /*!< [0x8C] Synchronization Configuration */ __IO hw_ftm_invctrl_t INVCTRL; /*!< [0x90] FTM Inverting Control */ __IO hw_ftm_swoctrl_t SWOCTRL; /*!< [0x94] FTM Software Output Control */ __IO hw_ftm_pwmload_t PWMLOAD; /*!< [0x98] FTM PWM Load */ } hw_ftm_t; #pragma pack() /*! @brief Macro to access all FTM registers. */ /*! @param x FTM module instance base address. */ /*! @return Reference (not a pointer) to the registers struct. To get a pointer to the struct, * use the '&' operator, like &HW_FTM(FTM0_BASE). */ #define HW_FTM(x) (*(hw_ftm_t *)(x)) #endif /* __HW_FTM_REGISTERS_H__ */ /* EOF */