/** * @file gcfr_regs.h * @brief Registers, Bit Masks and Bit Positions for the GCFR Peripheral Module. * @note This file is @generated. * @ingroup gcfr_registers */ /****************************************************************************** * * Copyright (C) 2022-2023 Maxim Integrated Products, Inc. (now owned by * Analog Devices, Inc.), * Copyright (C) 2023-2024 Analog Devices, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ******************************************************************************/ #ifndef LIBRARIES_CMSIS_DEVICE_MAXIM_MAX32690_INCLUDE_GCFR_REGS_H_ #define LIBRARIES_CMSIS_DEVICE_MAXIM_MAX32690_INCLUDE_GCFR_REGS_H_ /* **** Includes **** */ #include #ifdef __cplusplus extern "C" { #endif #if defined (__ICCARM__) #pragma system_include #endif #if defined (__CC_ARM) #pragma anon_unions #endif /// @cond /* If types are not defined elsewhere (CMSIS) define them here */ #ifndef __IO #define __IO volatile #endif #ifndef __I #define __I volatile const #endif #ifndef __O #define __O volatile #endif #ifndef __R #define __R volatile const #endif /// @endcond /* **** Definitions **** */ /** * @ingroup gcfr * @defgroup gcfr_registers GCFR_Registers * @brief Registers, Bit Masks and Bit Positions for the GCFR Peripheral Module. * @details Global Control Function Register. */ /** * @ingroup gcfr_registers * Structure type to access the GCFR Registers. */ typedef struct { __IO uint32_t reg0; /**< \b 0x00: GCFR REG0 Register */ } mxc_gcfr_regs_t; /* Register offsets for module GCFR */ /** * @ingroup gcfr_registers * @defgroup GCFR_Register_Offsets Register Offsets * @brief GCFR Peripheral Register Offsets from the GCFR Base Peripheral Address. * @{ */ #define MXC_R_GCFR_REG0 ((uint32_t)0x00000000UL) /**< Offset from GCFR Base Address: 0x0000 */ /**@} end of group gcfr_registers */ /** * @ingroup gcfr_registers * @defgroup GCFR_REG0 GCFR_REG0 * @brief Register 0. * @{ */ #define MXC_F_GCFR_REG0_CKPDRV_POS 0 /**< REG0_CKPDRV Position */ #define MXC_F_GCFR_REG0_CKPDRV ((uint32_t)(0xFUL << MXC_F_GCFR_REG0_CKPDRV_POS)) /**< REG0_CKPDRV Mask */ #define MXC_F_GCFR_REG0_CKNDRV_POS 4 /**< REG0_CKNDRV Position */ #define MXC_F_GCFR_REG0_CKNDRV ((uint32_t)(0xFUL << MXC_F_GCFR_REG0_CKNDRV_POS)) /**< REG0_CKNDRV Mask */ #define MXC_F_GCFR_REG0_RDSDLL_EN_POS 8 /**< REG0_RDSDLL_EN Position */ #define MXC_F_GCFR_REG0_RDSDLL_EN ((uint32_t)(0x1UL << MXC_F_GCFR_REG0_RDSDLL_EN_POS)) /**< REG0_RDSDLL_EN Mask */ /**@} end of group GCFR_REG0_Register */ #ifdef __cplusplus } #endif #endif // LIBRARIES_CMSIS_DEVICE_MAXIM_MAX32690_INCLUDE_GCFR_REGS_H_