/** * \file * * \brief SAM OSC32KCTRL * * Copyright (C) 2016 Atmel Corporation. All rights reserved. * * \asf_license_start * * \page License * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. 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. * * 3. The name of Atmel may not be used to endorse or promote products derived * from this software without specific prior written permission. * * 4. This software may only be redistributed and used in connection with an * Atmel microcontroller product. * * THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE * EXPRESSLY AND SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL 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. * * \asf_license_stop */ #ifdef _SAML21_OSC32KCTRL_COMPONENT_ #ifndef _HRI_OSC32KCTRL_L21_H_INCLUDED_ #define _HRI_OSC32KCTRL_L21_H_INCLUDED_ #ifdef __cplusplus extern "C" { #endif #include #include #if defined(ENABLE_OSC32KCTRL_CRITICAL_SECTIONS) #define OSC32KCTRL_CRITICAL_SECTION_ENTER() CRITICAL_SECTION_ENTER() #define OSC32KCTRL_CRITICAL_SECTION_LEAVE() CRITICAL_SECTION_LEAVE() #else #define OSC32KCTRL_CRITICAL_SECTION_ENTER() #define OSC32KCTRL_CRITICAL_SECTION_LEAVE() #endif typedef uint32_t hri_osc32kctrl_intenset_reg_t; typedef uint32_t hri_osc32kctrl_intflag_reg_t; typedef uint32_t hri_osc32kctrl_osc32k_reg_t; typedef uint32_t hri_osc32kctrl_osculp32k_reg_t; typedef uint32_t hri_osc32kctrl_rtcctrl_reg_t; typedef uint32_t hri_osc32kctrl_status_reg_t; typedef uint32_t hri_osc32kctrl_xosc32k_reg_t; static inline void hri_osc32kctrl_set_INTEN_XOSC32KRDY_bit(const void *const hw) { ((Osc32kctrl *)hw)->INTENSET.reg = OSC32KCTRL_INTENSET_XOSC32KRDY; } static inline bool hri_osc32kctrl_get_INTEN_XOSC32KRDY_bit(const void *const hw) { return (((Osc32kctrl *)hw)->INTENSET.reg & OSC32KCTRL_INTENSET_XOSC32KRDY) >> OSC32KCTRL_INTENSET_XOSC32KRDY_Pos; } static inline void hri_osc32kctrl_write_INTEN_XOSC32KRDY_bit(const void *const hw, bool value) { if (value == 0x0) { ((Osc32kctrl *)hw)->INTENCLR.reg = OSC32KCTRL_INTENSET_XOSC32KRDY; } else { ((Osc32kctrl *)hw)->INTENSET.reg = OSC32KCTRL_INTENSET_XOSC32KRDY; } } static inline void hri_osc32kctrl_clear_INTEN_XOSC32KRDY_bit(const void *const hw) { ((Osc32kctrl *)hw)->INTENCLR.reg = OSC32KCTRL_INTENSET_XOSC32KRDY; } static inline void hri_osc32kctrl_set_INTEN_OSC32KRDY_bit(const void *const hw) { ((Osc32kctrl *)hw)->INTENSET.reg = OSC32KCTRL_INTENSET_OSC32KRDY; } static inline bool hri_osc32kctrl_get_INTEN_OSC32KRDY_bit(const void *const hw) { return (((Osc32kctrl *)hw)->INTENSET.reg & OSC32KCTRL_INTENSET_OSC32KRDY) >> OSC32KCTRL_INTENSET_OSC32KRDY_Pos; } static inline void hri_osc32kctrl_write_INTEN_OSC32KRDY_bit(const void *const hw, bool value) { if (value == 0x0) { ((Osc32kctrl *)hw)->INTENCLR.reg = OSC32KCTRL_INTENSET_OSC32KRDY; } else { ((Osc32kctrl *)hw)->INTENSET.reg = OSC32KCTRL_INTENSET_OSC32KRDY; } } static inline void hri_osc32kctrl_clear_INTEN_OSC32KRDY_bit(const void *const hw) { ((Osc32kctrl *)hw)->INTENCLR.reg = OSC32KCTRL_INTENSET_OSC32KRDY; } static inline void hri_osc32kctrl_set_INTEN_reg(const void *const hw, hri_osc32kctrl_intenset_reg_t mask) { ((Osc32kctrl *)hw)->INTENSET.reg = mask; } static inline hri_osc32kctrl_intenset_reg_t hri_osc32kctrl_get_INTEN_reg(const void *const hw, hri_osc32kctrl_intenset_reg_t mask) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->INTENSET.reg; tmp &= mask; return tmp; } static inline hri_osc32kctrl_intenset_reg_t hri_osc32kctrl_read_INTEN_reg(const void *const hw) { return ((Osc32kctrl *)hw)->INTENSET.reg; } static inline void hri_osc32kctrl_write_INTEN_reg(const void *const hw, hri_osc32kctrl_intenset_reg_t data) { ((Osc32kctrl *)hw)->INTENSET.reg = data; ((Osc32kctrl *)hw)->INTENCLR.reg = ~data; } static inline void hri_osc32kctrl_clear_INTEN_reg(const void *const hw, hri_osc32kctrl_intenset_reg_t mask) { ((Osc32kctrl *)hw)->INTENCLR.reg = mask; } static inline bool hri_osc32kctrl_get_INTFLAG_XOSC32KRDY_bit(const void *const hw) { return (((Osc32kctrl *)hw)->INTFLAG.reg & OSC32KCTRL_INTFLAG_XOSC32KRDY) >> OSC32KCTRL_INTFLAG_XOSC32KRDY_Pos; } static inline void hri_osc32kctrl_clear_INTFLAG_XOSC32KRDY_bit(const void *const hw) { ((Osc32kctrl *)hw)->INTFLAG.reg = OSC32KCTRL_INTFLAG_XOSC32KRDY; } static inline bool hri_osc32kctrl_get_INTFLAG_OSC32KRDY_bit(const void *const hw) { return (((Osc32kctrl *)hw)->INTFLAG.reg & OSC32KCTRL_INTFLAG_OSC32KRDY) >> OSC32KCTRL_INTFLAG_OSC32KRDY_Pos; } static inline void hri_osc32kctrl_clear_INTFLAG_OSC32KRDY_bit(const void *const hw) { ((Osc32kctrl *)hw)->INTFLAG.reg = OSC32KCTRL_INTFLAG_OSC32KRDY; } static inline bool hri_osc32kctrl_get_interrupt_XOSC32KRDY_bit(const void *const hw) { return (((Osc32kctrl *)hw)->INTFLAG.reg & OSC32KCTRL_INTFLAG_XOSC32KRDY) >> OSC32KCTRL_INTFLAG_XOSC32KRDY_Pos; } static inline void hri_osc32kctrl_clear_interrupt_XOSC32KRDY_bit(const void *const hw) { ((Osc32kctrl *)hw)->INTFLAG.reg = OSC32KCTRL_INTFLAG_XOSC32KRDY; } static inline bool hri_osc32kctrl_get_interrupt_OSC32KRDY_bit(const void *const hw) { return (((Osc32kctrl *)hw)->INTFLAG.reg & OSC32KCTRL_INTFLAG_OSC32KRDY) >> OSC32KCTRL_INTFLAG_OSC32KRDY_Pos; } static inline void hri_osc32kctrl_clear_interrupt_OSC32KRDY_bit(const void *const hw) { ((Osc32kctrl *)hw)->INTFLAG.reg = OSC32KCTRL_INTFLAG_OSC32KRDY; } static inline hri_osc32kctrl_intflag_reg_t hri_osc32kctrl_get_INTFLAG_reg(const void *const hw, hri_osc32kctrl_intflag_reg_t mask) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->INTFLAG.reg; tmp &= mask; return tmp; } static inline hri_osc32kctrl_intflag_reg_t hri_osc32kctrl_read_INTFLAG_reg(const void *const hw) { return ((Osc32kctrl *)hw)->INTFLAG.reg; } static inline void hri_osc32kctrl_clear_INTFLAG_reg(const void *const hw, hri_osc32kctrl_intflag_reg_t mask) { ((Osc32kctrl *)hw)->INTFLAG.reg = mask; } static inline void hri_osc32kctrl_set_RTCCTRL_RTCSEL_bf(const void *const hw, hri_osc32kctrl_rtcctrl_reg_t mask) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->RTCCTRL.reg |= OSC32KCTRL_RTCCTRL_RTCSEL(mask); OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline hri_osc32kctrl_rtcctrl_reg_t hri_osc32kctrl_get_RTCCTRL_RTCSEL_bf(const void *const hw, hri_osc32kctrl_rtcctrl_reg_t mask) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->RTCCTRL.reg; tmp = (tmp & OSC32KCTRL_RTCCTRL_RTCSEL(mask)) >> OSC32KCTRL_RTCCTRL_RTCSEL_Pos; return tmp; } static inline void hri_osc32kctrl_write_RTCCTRL_RTCSEL_bf(const void *const hw, hri_osc32kctrl_rtcctrl_reg_t data) { uint32_t tmp; OSC32KCTRL_CRITICAL_SECTION_ENTER(); tmp = ((Osc32kctrl *)hw)->RTCCTRL.reg; tmp &= ~OSC32KCTRL_RTCCTRL_RTCSEL_Msk; tmp |= OSC32KCTRL_RTCCTRL_RTCSEL(data); ((Osc32kctrl *)hw)->RTCCTRL.reg = tmp; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_clear_RTCCTRL_RTCSEL_bf(const void *const hw, hri_osc32kctrl_rtcctrl_reg_t mask) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->RTCCTRL.reg &= ~OSC32KCTRL_RTCCTRL_RTCSEL(mask); OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_toggle_RTCCTRL_RTCSEL_bf(const void *const hw, hri_osc32kctrl_rtcctrl_reg_t mask) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->RTCCTRL.reg ^= OSC32KCTRL_RTCCTRL_RTCSEL(mask); OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline hri_osc32kctrl_rtcctrl_reg_t hri_osc32kctrl_read_RTCCTRL_RTCSEL_bf(const void *const hw) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->RTCCTRL.reg; tmp = (tmp & OSC32KCTRL_RTCCTRL_RTCSEL_Msk) >> OSC32KCTRL_RTCCTRL_RTCSEL_Pos; return tmp; } static inline void hri_osc32kctrl_set_RTCCTRL_reg(const void *const hw, hri_osc32kctrl_rtcctrl_reg_t mask) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->RTCCTRL.reg |= mask; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline hri_osc32kctrl_rtcctrl_reg_t hri_osc32kctrl_get_RTCCTRL_reg(const void *const hw, hri_osc32kctrl_rtcctrl_reg_t mask) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->RTCCTRL.reg; tmp &= mask; return tmp; } static inline void hri_osc32kctrl_write_RTCCTRL_reg(const void *const hw, hri_osc32kctrl_rtcctrl_reg_t data) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->RTCCTRL.reg = data; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_clear_RTCCTRL_reg(const void *const hw, hri_osc32kctrl_rtcctrl_reg_t mask) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->RTCCTRL.reg &= ~mask; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_toggle_RTCCTRL_reg(const void *const hw, hri_osc32kctrl_rtcctrl_reg_t mask) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->RTCCTRL.reg ^= mask; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline hri_osc32kctrl_rtcctrl_reg_t hri_osc32kctrl_read_RTCCTRL_reg(const void *const hw) { return ((Osc32kctrl *)hw)->RTCCTRL.reg; } static inline void hri_osc32kctrl_set_XOSC32K_ENABLE_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg |= OSC32KCTRL_XOSC32K_ENABLE; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline bool hri_osc32kctrl_get_XOSC32K_ENABLE_bit(const void *const hw) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->XOSC32K.reg; tmp = (tmp & OSC32KCTRL_XOSC32K_ENABLE) >> OSC32KCTRL_XOSC32K_ENABLE_Pos; return (bool)tmp; } static inline void hri_osc32kctrl_write_XOSC32K_ENABLE_bit(const void *const hw, bool value) { uint32_t tmp; OSC32KCTRL_CRITICAL_SECTION_ENTER(); tmp = ((Osc32kctrl *)hw)->XOSC32K.reg; tmp &= ~OSC32KCTRL_XOSC32K_ENABLE; tmp |= value << OSC32KCTRL_XOSC32K_ENABLE_Pos; ((Osc32kctrl *)hw)->XOSC32K.reg = tmp; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_clear_XOSC32K_ENABLE_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg &= ~OSC32KCTRL_XOSC32K_ENABLE; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_toggle_XOSC32K_ENABLE_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg ^= OSC32KCTRL_XOSC32K_ENABLE; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_set_XOSC32K_XTALEN_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg |= OSC32KCTRL_XOSC32K_XTALEN; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline bool hri_osc32kctrl_get_XOSC32K_XTALEN_bit(const void *const hw) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->XOSC32K.reg; tmp = (tmp & OSC32KCTRL_XOSC32K_XTALEN) >> OSC32KCTRL_XOSC32K_XTALEN_Pos; return (bool)tmp; } static inline void hri_osc32kctrl_write_XOSC32K_XTALEN_bit(const void *const hw, bool value) { uint32_t tmp; OSC32KCTRL_CRITICAL_SECTION_ENTER(); tmp = ((Osc32kctrl *)hw)->XOSC32K.reg; tmp &= ~OSC32KCTRL_XOSC32K_XTALEN; tmp |= value << OSC32KCTRL_XOSC32K_XTALEN_Pos; ((Osc32kctrl *)hw)->XOSC32K.reg = tmp; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_clear_XOSC32K_XTALEN_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg &= ~OSC32KCTRL_XOSC32K_XTALEN; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_toggle_XOSC32K_XTALEN_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg ^= OSC32KCTRL_XOSC32K_XTALEN; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_set_XOSC32K_EN32K_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg |= OSC32KCTRL_XOSC32K_EN32K; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline bool hri_osc32kctrl_get_XOSC32K_EN32K_bit(const void *const hw) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->XOSC32K.reg; tmp = (tmp & OSC32KCTRL_XOSC32K_EN32K) >> OSC32KCTRL_XOSC32K_EN32K_Pos; return (bool)tmp; } static inline void hri_osc32kctrl_write_XOSC32K_EN32K_bit(const void *const hw, bool value) { uint32_t tmp; OSC32KCTRL_CRITICAL_SECTION_ENTER(); tmp = ((Osc32kctrl *)hw)->XOSC32K.reg; tmp &= ~OSC32KCTRL_XOSC32K_EN32K; tmp |= value << OSC32KCTRL_XOSC32K_EN32K_Pos; ((Osc32kctrl *)hw)->XOSC32K.reg = tmp; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_clear_XOSC32K_EN32K_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg &= ~OSC32KCTRL_XOSC32K_EN32K; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_toggle_XOSC32K_EN32K_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg ^= OSC32KCTRL_XOSC32K_EN32K; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_set_XOSC32K_EN1K_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg |= OSC32KCTRL_XOSC32K_EN1K; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline bool hri_osc32kctrl_get_XOSC32K_EN1K_bit(const void *const hw) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->XOSC32K.reg; tmp = (tmp & OSC32KCTRL_XOSC32K_EN1K) >> OSC32KCTRL_XOSC32K_EN1K_Pos; return (bool)tmp; } static inline void hri_osc32kctrl_write_XOSC32K_EN1K_bit(const void *const hw, bool value) { uint32_t tmp; OSC32KCTRL_CRITICAL_SECTION_ENTER(); tmp = ((Osc32kctrl *)hw)->XOSC32K.reg; tmp &= ~OSC32KCTRL_XOSC32K_EN1K; tmp |= value << OSC32KCTRL_XOSC32K_EN1K_Pos; ((Osc32kctrl *)hw)->XOSC32K.reg = tmp; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_clear_XOSC32K_EN1K_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg &= ~OSC32KCTRL_XOSC32K_EN1K; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_toggle_XOSC32K_EN1K_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg ^= OSC32KCTRL_XOSC32K_EN1K; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_set_XOSC32K_RUNSTDBY_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg |= OSC32KCTRL_XOSC32K_RUNSTDBY; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline bool hri_osc32kctrl_get_XOSC32K_RUNSTDBY_bit(const void *const hw) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->XOSC32K.reg; tmp = (tmp & OSC32KCTRL_XOSC32K_RUNSTDBY) >> OSC32KCTRL_XOSC32K_RUNSTDBY_Pos; return (bool)tmp; } static inline void hri_osc32kctrl_write_XOSC32K_RUNSTDBY_bit(const void *const hw, bool value) { uint32_t tmp; OSC32KCTRL_CRITICAL_SECTION_ENTER(); tmp = ((Osc32kctrl *)hw)->XOSC32K.reg; tmp &= ~OSC32KCTRL_XOSC32K_RUNSTDBY; tmp |= value << OSC32KCTRL_XOSC32K_RUNSTDBY_Pos; ((Osc32kctrl *)hw)->XOSC32K.reg = tmp; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_clear_XOSC32K_RUNSTDBY_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg &= ~OSC32KCTRL_XOSC32K_RUNSTDBY; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_toggle_XOSC32K_RUNSTDBY_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg ^= OSC32KCTRL_XOSC32K_RUNSTDBY; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_set_XOSC32K_ONDEMAND_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg |= OSC32KCTRL_XOSC32K_ONDEMAND; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline bool hri_osc32kctrl_get_XOSC32K_ONDEMAND_bit(const void *const hw) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->XOSC32K.reg; tmp = (tmp & OSC32KCTRL_XOSC32K_ONDEMAND) >> OSC32KCTRL_XOSC32K_ONDEMAND_Pos; return (bool)tmp; } static inline void hri_osc32kctrl_write_XOSC32K_ONDEMAND_bit(const void *const hw, bool value) { uint32_t tmp; OSC32KCTRL_CRITICAL_SECTION_ENTER(); tmp = ((Osc32kctrl *)hw)->XOSC32K.reg; tmp &= ~OSC32KCTRL_XOSC32K_ONDEMAND; tmp |= value << OSC32KCTRL_XOSC32K_ONDEMAND_Pos; ((Osc32kctrl *)hw)->XOSC32K.reg = tmp; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_clear_XOSC32K_ONDEMAND_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg &= ~OSC32KCTRL_XOSC32K_ONDEMAND; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_toggle_XOSC32K_ONDEMAND_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg ^= OSC32KCTRL_XOSC32K_ONDEMAND; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_set_XOSC32K_WRTLOCK_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg |= OSC32KCTRL_XOSC32K_WRTLOCK; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline bool hri_osc32kctrl_get_XOSC32K_WRTLOCK_bit(const void *const hw) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->XOSC32K.reg; tmp = (tmp & OSC32KCTRL_XOSC32K_WRTLOCK) >> OSC32KCTRL_XOSC32K_WRTLOCK_Pos; return (bool)tmp; } static inline void hri_osc32kctrl_write_XOSC32K_WRTLOCK_bit(const void *const hw, bool value) { uint32_t tmp; OSC32KCTRL_CRITICAL_SECTION_ENTER(); tmp = ((Osc32kctrl *)hw)->XOSC32K.reg; tmp &= ~OSC32KCTRL_XOSC32K_WRTLOCK; tmp |= value << OSC32KCTRL_XOSC32K_WRTLOCK_Pos; ((Osc32kctrl *)hw)->XOSC32K.reg = tmp; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_clear_XOSC32K_WRTLOCK_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg &= ~OSC32KCTRL_XOSC32K_WRTLOCK; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_toggle_XOSC32K_WRTLOCK_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg ^= OSC32KCTRL_XOSC32K_WRTLOCK; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_set_XOSC32K_STARTUP_bf(const void *const hw, hri_osc32kctrl_xosc32k_reg_t mask) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg |= OSC32KCTRL_XOSC32K_STARTUP(mask); OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline hri_osc32kctrl_xosc32k_reg_t hri_osc32kctrl_get_XOSC32K_STARTUP_bf(const void *const hw, hri_osc32kctrl_xosc32k_reg_t mask) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->XOSC32K.reg; tmp = (tmp & OSC32KCTRL_XOSC32K_STARTUP(mask)) >> OSC32KCTRL_XOSC32K_STARTUP_Pos; return tmp; } static inline void hri_osc32kctrl_write_XOSC32K_STARTUP_bf(const void *const hw, hri_osc32kctrl_xosc32k_reg_t data) { uint32_t tmp; OSC32KCTRL_CRITICAL_SECTION_ENTER(); tmp = ((Osc32kctrl *)hw)->XOSC32K.reg; tmp &= ~OSC32KCTRL_XOSC32K_STARTUP_Msk; tmp |= OSC32KCTRL_XOSC32K_STARTUP(data); ((Osc32kctrl *)hw)->XOSC32K.reg = tmp; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_clear_XOSC32K_STARTUP_bf(const void *const hw, hri_osc32kctrl_xosc32k_reg_t mask) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg &= ~OSC32KCTRL_XOSC32K_STARTUP(mask); OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_toggle_XOSC32K_STARTUP_bf(const void *const hw, hri_osc32kctrl_xosc32k_reg_t mask) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg ^= OSC32KCTRL_XOSC32K_STARTUP(mask); OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline hri_osc32kctrl_xosc32k_reg_t hri_osc32kctrl_read_XOSC32K_STARTUP_bf(const void *const hw) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->XOSC32K.reg; tmp = (tmp & OSC32KCTRL_XOSC32K_STARTUP_Msk) >> OSC32KCTRL_XOSC32K_STARTUP_Pos; return tmp; } static inline void hri_osc32kctrl_set_XOSC32K_reg(const void *const hw, hri_osc32kctrl_xosc32k_reg_t mask) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg |= mask; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline hri_osc32kctrl_xosc32k_reg_t hri_osc32kctrl_get_XOSC32K_reg(const void *const hw, hri_osc32kctrl_xosc32k_reg_t mask) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->XOSC32K.reg; tmp &= mask; return tmp; } static inline void hri_osc32kctrl_write_XOSC32K_reg(const void *const hw, hri_osc32kctrl_xosc32k_reg_t data) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg = data; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_clear_XOSC32K_reg(const void *const hw, hri_osc32kctrl_xosc32k_reg_t mask) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg &= ~mask; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_toggle_XOSC32K_reg(const void *const hw, hri_osc32kctrl_xosc32k_reg_t mask) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->XOSC32K.reg ^= mask; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline hri_osc32kctrl_xosc32k_reg_t hri_osc32kctrl_read_XOSC32K_reg(const void *const hw) { return ((Osc32kctrl *)hw)->XOSC32K.reg; } static inline void hri_osc32kctrl_set_OSC32K_ENABLE_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg |= OSC32KCTRL_OSC32K_ENABLE; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline bool hri_osc32kctrl_get_OSC32K_ENABLE_bit(const void *const hw) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->OSC32K.reg; tmp = (tmp & OSC32KCTRL_OSC32K_ENABLE) >> OSC32KCTRL_OSC32K_ENABLE_Pos; return (bool)tmp; } static inline void hri_osc32kctrl_write_OSC32K_ENABLE_bit(const void *const hw, bool value) { uint32_t tmp; OSC32KCTRL_CRITICAL_SECTION_ENTER(); tmp = ((Osc32kctrl *)hw)->OSC32K.reg; tmp &= ~OSC32KCTRL_OSC32K_ENABLE; tmp |= value << OSC32KCTRL_OSC32K_ENABLE_Pos; ((Osc32kctrl *)hw)->OSC32K.reg = tmp; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_clear_OSC32K_ENABLE_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg &= ~OSC32KCTRL_OSC32K_ENABLE; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_toggle_OSC32K_ENABLE_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg ^= OSC32KCTRL_OSC32K_ENABLE; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_set_OSC32K_EN32K_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg |= OSC32KCTRL_OSC32K_EN32K; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline bool hri_osc32kctrl_get_OSC32K_EN32K_bit(const void *const hw) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->OSC32K.reg; tmp = (tmp & OSC32KCTRL_OSC32K_EN32K) >> OSC32KCTRL_OSC32K_EN32K_Pos; return (bool)tmp; } static inline void hri_osc32kctrl_write_OSC32K_EN32K_bit(const void *const hw, bool value) { uint32_t tmp; OSC32KCTRL_CRITICAL_SECTION_ENTER(); tmp = ((Osc32kctrl *)hw)->OSC32K.reg; tmp &= ~OSC32KCTRL_OSC32K_EN32K; tmp |= value << OSC32KCTRL_OSC32K_EN32K_Pos; ((Osc32kctrl *)hw)->OSC32K.reg = tmp; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_clear_OSC32K_EN32K_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg &= ~OSC32KCTRL_OSC32K_EN32K; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_toggle_OSC32K_EN32K_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg ^= OSC32KCTRL_OSC32K_EN32K; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_set_OSC32K_EN1K_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg |= OSC32KCTRL_OSC32K_EN1K; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline bool hri_osc32kctrl_get_OSC32K_EN1K_bit(const void *const hw) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->OSC32K.reg; tmp = (tmp & OSC32KCTRL_OSC32K_EN1K) >> OSC32KCTRL_OSC32K_EN1K_Pos; return (bool)tmp; } static inline void hri_osc32kctrl_write_OSC32K_EN1K_bit(const void *const hw, bool value) { uint32_t tmp; OSC32KCTRL_CRITICAL_SECTION_ENTER(); tmp = ((Osc32kctrl *)hw)->OSC32K.reg; tmp &= ~OSC32KCTRL_OSC32K_EN1K; tmp |= value << OSC32KCTRL_OSC32K_EN1K_Pos; ((Osc32kctrl *)hw)->OSC32K.reg = tmp; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_clear_OSC32K_EN1K_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg &= ~OSC32KCTRL_OSC32K_EN1K; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_toggle_OSC32K_EN1K_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg ^= OSC32KCTRL_OSC32K_EN1K; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_set_OSC32K_RUNSTDBY_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg |= OSC32KCTRL_OSC32K_RUNSTDBY; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline bool hri_osc32kctrl_get_OSC32K_RUNSTDBY_bit(const void *const hw) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->OSC32K.reg; tmp = (tmp & OSC32KCTRL_OSC32K_RUNSTDBY) >> OSC32KCTRL_OSC32K_RUNSTDBY_Pos; return (bool)tmp; } static inline void hri_osc32kctrl_write_OSC32K_RUNSTDBY_bit(const void *const hw, bool value) { uint32_t tmp; OSC32KCTRL_CRITICAL_SECTION_ENTER(); tmp = ((Osc32kctrl *)hw)->OSC32K.reg; tmp &= ~OSC32KCTRL_OSC32K_RUNSTDBY; tmp |= value << OSC32KCTRL_OSC32K_RUNSTDBY_Pos; ((Osc32kctrl *)hw)->OSC32K.reg = tmp; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_clear_OSC32K_RUNSTDBY_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg &= ~OSC32KCTRL_OSC32K_RUNSTDBY; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_toggle_OSC32K_RUNSTDBY_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg ^= OSC32KCTRL_OSC32K_RUNSTDBY; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_set_OSC32K_ONDEMAND_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg |= OSC32KCTRL_OSC32K_ONDEMAND; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline bool hri_osc32kctrl_get_OSC32K_ONDEMAND_bit(const void *const hw) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->OSC32K.reg; tmp = (tmp & OSC32KCTRL_OSC32K_ONDEMAND) >> OSC32KCTRL_OSC32K_ONDEMAND_Pos; return (bool)tmp; } static inline void hri_osc32kctrl_write_OSC32K_ONDEMAND_bit(const void *const hw, bool value) { uint32_t tmp; OSC32KCTRL_CRITICAL_SECTION_ENTER(); tmp = ((Osc32kctrl *)hw)->OSC32K.reg; tmp &= ~OSC32KCTRL_OSC32K_ONDEMAND; tmp |= value << OSC32KCTRL_OSC32K_ONDEMAND_Pos; ((Osc32kctrl *)hw)->OSC32K.reg = tmp; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_clear_OSC32K_ONDEMAND_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg &= ~OSC32KCTRL_OSC32K_ONDEMAND; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_toggle_OSC32K_ONDEMAND_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg ^= OSC32KCTRL_OSC32K_ONDEMAND; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_set_OSC32K_WRTLOCK_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg |= OSC32KCTRL_OSC32K_WRTLOCK; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline bool hri_osc32kctrl_get_OSC32K_WRTLOCK_bit(const void *const hw) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->OSC32K.reg; tmp = (tmp & OSC32KCTRL_OSC32K_WRTLOCK) >> OSC32KCTRL_OSC32K_WRTLOCK_Pos; return (bool)tmp; } static inline void hri_osc32kctrl_write_OSC32K_WRTLOCK_bit(const void *const hw, bool value) { uint32_t tmp; OSC32KCTRL_CRITICAL_SECTION_ENTER(); tmp = ((Osc32kctrl *)hw)->OSC32K.reg; tmp &= ~OSC32KCTRL_OSC32K_WRTLOCK; tmp |= value << OSC32KCTRL_OSC32K_WRTLOCK_Pos; ((Osc32kctrl *)hw)->OSC32K.reg = tmp; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_clear_OSC32K_WRTLOCK_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg &= ~OSC32KCTRL_OSC32K_WRTLOCK; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_toggle_OSC32K_WRTLOCK_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg ^= OSC32KCTRL_OSC32K_WRTLOCK; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_set_OSC32K_STARTUP_bf(const void *const hw, hri_osc32kctrl_osc32k_reg_t mask) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg |= OSC32KCTRL_OSC32K_STARTUP(mask); OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline hri_osc32kctrl_osc32k_reg_t hri_osc32kctrl_get_OSC32K_STARTUP_bf(const void *const hw, hri_osc32kctrl_osc32k_reg_t mask) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->OSC32K.reg; tmp = (tmp & OSC32KCTRL_OSC32K_STARTUP(mask)) >> OSC32KCTRL_OSC32K_STARTUP_Pos; return tmp; } static inline void hri_osc32kctrl_write_OSC32K_STARTUP_bf(const void *const hw, hri_osc32kctrl_osc32k_reg_t data) { uint32_t tmp; OSC32KCTRL_CRITICAL_SECTION_ENTER(); tmp = ((Osc32kctrl *)hw)->OSC32K.reg; tmp &= ~OSC32KCTRL_OSC32K_STARTUP_Msk; tmp |= OSC32KCTRL_OSC32K_STARTUP(data); ((Osc32kctrl *)hw)->OSC32K.reg = tmp; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_clear_OSC32K_STARTUP_bf(const void *const hw, hri_osc32kctrl_osc32k_reg_t mask) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg &= ~OSC32KCTRL_OSC32K_STARTUP(mask); OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_toggle_OSC32K_STARTUP_bf(const void *const hw, hri_osc32kctrl_osc32k_reg_t mask) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg ^= OSC32KCTRL_OSC32K_STARTUP(mask); OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline hri_osc32kctrl_osc32k_reg_t hri_osc32kctrl_read_OSC32K_STARTUP_bf(const void *const hw) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->OSC32K.reg; tmp = (tmp & OSC32KCTRL_OSC32K_STARTUP_Msk) >> OSC32KCTRL_OSC32K_STARTUP_Pos; return tmp; } static inline void hri_osc32kctrl_set_OSC32K_CALIB_bf(const void *const hw, hri_osc32kctrl_osc32k_reg_t mask) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg |= OSC32KCTRL_OSC32K_CALIB(mask); OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline hri_osc32kctrl_osc32k_reg_t hri_osc32kctrl_get_OSC32K_CALIB_bf(const void *const hw, hri_osc32kctrl_osc32k_reg_t mask) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->OSC32K.reg; tmp = (tmp & OSC32KCTRL_OSC32K_CALIB(mask)) >> OSC32KCTRL_OSC32K_CALIB_Pos; return tmp; } static inline void hri_osc32kctrl_write_OSC32K_CALIB_bf(const void *const hw, hri_osc32kctrl_osc32k_reg_t data) { uint32_t tmp; OSC32KCTRL_CRITICAL_SECTION_ENTER(); tmp = ((Osc32kctrl *)hw)->OSC32K.reg; tmp &= ~OSC32KCTRL_OSC32K_CALIB_Msk; tmp |= OSC32KCTRL_OSC32K_CALIB(data); ((Osc32kctrl *)hw)->OSC32K.reg = tmp; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_clear_OSC32K_CALIB_bf(const void *const hw, hri_osc32kctrl_osc32k_reg_t mask) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg &= ~OSC32KCTRL_OSC32K_CALIB(mask); OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_toggle_OSC32K_CALIB_bf(const void *const hw, hri_osc32kctrl_osc32k_reg_t mask) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg ^= OSC32KCTRL_OSC32K_CALIB(mask); OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline hri_osc32kctrl_osc32k_reg_t hri_osc32kctrl_read_OSC32K_CALIB_bf(const void *const hw) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->OSC32K.reg; tmp = (tmp & OSC32KCTRL_OSC32K_CALIB_Msk) >> OSC32KCTRL_OSC32K_CALIB_Pos; return tmp; } static inline void hri_osc32kctrl_set_OSC32K_reg(const void *const hw, hri_osc32kctrl_osc32k_reg_t mask) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg |= mask; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline hri_osc32kctrl_osc32k_reg_t hri_osc32kctrl_get_OSC32K_reg(const void *const hw, hri_osc32kctrl_osc32k_reg_t mask) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->OSC32K.reg; tmp &= mask; return tmp; } static inline void hri_osc32kctrl_write_OSC32K_reg(const void *const hw, hri_osc32kctrl_osc32k_reg_t data) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg = data; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_clear_OSC32K_reg(const void *const hw, hri_osc32kctrl_osc32k_reg_t mask) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg &= ~mask; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_toggle_OSC32K_reg(const void *const hw, hri_osc32kctrl_osc32k_reg_t mask) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSC32K.reg ^= mask; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline hri_osc32kctrl_osc32k_reg_t hri_osc32kctrl_read_OSC32K_reg(const void *const hw) { return ((Osc32kctrl *)hw)->OSC32K.reg; } static inline void hri_osc32kctrl_set_OSCULP32K_WRTLOCK_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSCULP32K.reg |= OSC32KCTRL_OSCULP32K_WRTLOCK; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline bool hri_osc32kctrl_get_OSCULP32K_WRTLOCK_bit(const void *const hw) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->OSCULP32K.reg; tmp = (tmp & OSC32KCTRL_OSCULP32K_WRTLOCK) >> OSC32KCTRL_OSCULP32K_WRTLOCK_Pos; return (bool)tmp; } static inline void hri_osc32kctrl_write_OSCULP32K_WRTLOCK_bit(const void *const hw, bool value) { uint32_t tmp; OSC32KCTRL_CRITICAL_SECTION_ENTER(); tmp = ((Osc32kctrl *)hw)->OSCULP32K.reg; tmp &= ~OSC32KCTRL_OSCULP32K_WRTLOCK; tmp |= value << OSC32KCTRL_OSCULP32K_WRTLOCK_Pos; ((Osc32kctrl *)hw)->OSCULP32K.reg = tmp; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_clear_OSCULP32K_WRTLOCK_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSCULP32K.reg &= ~OSC32KCTRL_OSCULP32K_WRTLOCK; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_toggle_OSCULP32K_WRTLOCK_bit(const void *const hw) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSCULP32K.reg ^= OSC32KCTRL_OSCULP32K_WRTLOCK; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_set_OSCULP32K_CALIB_bf(const void *const hw, hri_osc32kctrl_osculp32k_reg_t mask) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSCULP32K.reg |= OSC32KCTRL_OSCULP32K_CALIB(mask); OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline hri_osc32kctrl_osculp32k_reg_t hri_osc32kctrl_get_OSCULP32K_CALIB_bf(const void *const hw, hri_osc32kctrl_osculp32k_reg_t mask) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->OSCULP32K.reg; tmp = (tmp & OSC32KCTRL_OSCULP32K_CALIB(mask)) >> OSC32KCTRL_OSCULP32K_CALIB_Pos; return tmp; } static inline void hri_osc32kctrl_write_OSCULP32K_CALIB_bf(const void *const hw, hri_osc32kctrl_osculp32k_reg_t data) { uint32_t tmp; OSC32KCTRL_CRITICAL_SECTION_ENTER(); tmp = ((Osc32kctrl *)hw)->OSCULP32K.reg; tmp &= ~OSC32KCTRL_OSCULP32K_CALIB_Msk; tmp |= OSC32KCTRL_OSCULP32K_CALIB(data); ((Osc32kctrl *)hw)->OSCULP32K.reg = tmp; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_clear_OSCULP32K_CALIB_bf(const void *const hw, hri_osc32kctrl_osculp32k_reg_t mask) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSCULP32K.reg &= ~OSC32KCTRL_OSCULP32K_CALIB(mask); OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_toggle_OSCULP32K_CALIB_bf(const void *const hw, hri_osc32kctrl_osculp32k_reg_t mask) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSCULP32K.reg ^= OSC32KCTRL_OSCULP32K_CALIB(mask); OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline hri_osc32kctrl_osculp32k_reg_t hri_osc32kctrl_read_OSCULP32K_CALIB_bf(const void *const hw) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->OSCULP32K.reg; tmp = (tmp & OSC32KCTRL_OSCULP32K_CALIB_Msk) >> OSC32KCTRL_OSCULP32K_CALIB_Pos; return tmp; } static inline void hri_osc32kctrl_set_OSCULP32K_reg(const void *const hw, hri_osc32kctrl_osculp32k_reg_t mask) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSCULP32K.reg |= mask; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline hri_osc32kctrl_osculp32k_reg_t hri_osc32kctrl_get_OSCULP32K_reg(const void *const hw, hri_osc32kctrl_osculp32k_reg_t mask) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->OSCULP32K.reg; tmp &= mask; return tmp; } static inline void hri_osc32kctrl_write_OSCULP32K_reg(const void *const hw, hri_osc32kctrl_osculp32k_reg_t data) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSCULP32K.reg = data; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_clear_OSCULP32K_reg(const void *const hw, hri_osc32kctrl_osculp32k_reg_t mask) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSCULP32K.reg &= ~mask; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline void hri_osc32kctrl_toggle_OSCULP32K_reg(const void *const hw, hri_osc32kctrl_osculp32k_reg_t mask) { OSC32KCTRL_CRITICAL_SECTION_ENTER(); ((Osc32kctrl *)hw)->OSCULP32K.reg ^= mask; OSC32KCTRL_CRITICAL_SECTION_LEAVE(); } static inline hri_osc32kctrl_osculp32k_reg_t hri_osc32kctrl_read_OSCULP32K_reg(const void *const hw) { return ((Osc32kctrl *)hw)->OSCULP32K.reg; } static inline bool hri_osc32kctrl_get_STATUS_XOSC32KRDY_bit(const void *const hw) { return (((Osc32kctrl *)hw)->STATUS.reg & OSC32KCTRL_STATUS_XOSC32KRDY) >> OSC32KCTRL_STATUS_XOSC32KRDY_Pos; } static inline bool hri_osc32kctrl_get_STATUS_OSC32KRDY_bit(const void *const hw) { return (((Osc32kctrl *)hw)->STATUS.reg & OSC32KCTRL_STATUS_OSC32KRDY) >> OSC32KCTRL_STATUS_OSC32KRDY_Pos; } static inline hri_osc32kctrl_status_reg_t hri_osc32kctrl_get_STATUS_reg(const void *const hw, hri_osc32kctrl_status_reg_t mask) { uint32_t tmp; tmp = ((Osc32kctrl *)hw)->STATUS.reg; tmp &= mask; return tmp; } static inline hri_osc32kctrl_status_reg_t hri_osc32kctrl_read_STATUS_reg(const void *const hw) { return ((Osc32kctrl *)hw)->STATUS.reg; } #ifdef __cplusplus } #endif #endif /* _HRI_OSC32KCTRL_L21_H_INCLUDED */ #endif /* _SAML21_OSC32KCTRL_COMPONENT_ */