* Put something on screen * Use the 32bit watch_date_time repr to pass from JS * Implement periodic callbacks * Clear display on enabling * Hook up watch_set_led_color() to SVG (green-only) * Make debug output full-width * Remove default Emscripten canvas * Implement sleep and button clicks * Fix time zone conversion bug in beats-time app * Clean up warnings * Fix pin levels * Set time zone to browser value (if available) * Add basic backup data saving * Silence format specifier warnings in both targets * Remove unnecessary, copied files * Use RTC pointer to clear callbacks (if available) * Use preprocessor define to avoid hardcoding MOVEMENT_NUM_FACES * Change each face to const preprocessor definition * Remove Intl.DateTimeFormat usage * Update shell.html title, header * Add touch start/end event handlers on SVG buttons * Update shell.html * Update folder structure (shared, simulator, hardware under watch-library) * Tease out shared components from watch_slcd * Clean up simulator watch_slcd.c inline JS calls * Fix missing newlines at end of file * Add simulator warnings (except format, unused-paremter) * Implement remaining watch_rtc functions * Fix button bug on mouse down then drag out * Implement remaining watch_slcd functions * Link keyboard events to buttons (for keys A, L, M) * Rewrite event handling (mouse, touch, keyboard) in C * Set explicit text UTF-8 charset in shell.html * Address PR comments * Remove unused directories from include paths
		
			
				
	
	
		
			1234 lines
		
	
	
		
			40 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			1234 lines
		
	
	
		
			40 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /**
 | |
|  * \file
 | |
|  *
 | |
|  * \brief SAM OSC32KCTRL
 | |
|  *
 | |
|  * Copyright (c) 2017-2018 Microchip Technology Inc. and its subsidiaries.
 | |
|  *
 | |
|  * \asf_license_start
 | |
|  *
 | |
|  * \page License
 | |
|  *
 | |
|  * Subject to your compliance with these terms, you may use Microchip
 | |
|  * software and any derivatives exclusively with Microchip products.
 | |
|  * It is your responsibility to comply with third party license terms applicable
 | |
|  * to your use of third party software (including open source software) that
 | |
|  * may accompany Microchip software.
 | |
|  *
 | |
|  * THIS SOFTWARE IS SUPPLIED BY MICROCHIP "AS IS". NO WARRANTIES,
 | |
|  * WHETHER EXPRESS, IMPLIED OR STATUTORY, APPLY TO THIS SOFTWARE,
 | |
|  * INCLUDING ANY IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY,
 | |
|  * AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT WILL MICROCHIP BE
 | |
|  * LIABLE FOR ANY INDIRECT, SPECIAL, PUNITIVE, INCIDENTAL OR CONSEQUENTIAL
 | |
|  * LOSS, DAMAGE, COST OR EXPENSE OF ANY KIND WHATSOEVER RELATED TO THE
 | |
|  * SOFTWARE, HOWEVER CAUSED, EVEN IF MICROCHIP HAS BEEN ADVISED OF THE
 | |
|  * POSSIBILITY OR THE DAMAGES ARE FORESEEABLE.  TO THE FULLEST EXTENT
 | |
|  * ALLOWED BY LAW, MICROCHIP'S TOTAL LIABILITY ON ALL CLAIMS IN ANY WAY
 | |
|  * RELATED TO THIS SOFTWARE WILL NOT EXCEED THE AMOUNT OF FEES, IF ANY,
 | |
|  * THAT YOU HAVE PAID DIRECTLY TO MICROCHIP FOR THIS SOFTWARE.
 | |
|  *
 | |
|  * \asf_license_stop
 | |
|  *
 | |
|  */
 | |
| 
 | |
| #ifdef _SAML22_OSC32KCTRL_COMPONENT_
 | |
| #ifndef _HRI_OSC32KCTRL_L22_H_INCLUDED_
 | |
| #define _HRI_OSC32KCTRL_L22_H_INCLUDED_
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| extern "C" {
 | |
| #endif
 | |
| 
 | |
| #include <stdbool.h>
 | |
| #include <hal_atomic.h>
 | |
| 
 | |
| #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 uint16_t hri_osc32kctrl_xosc32k_reg_t;
 | |
| typedef uint32_t hri_osc32kctrl_intenset_reg_t;
 | |
| typedef uint32_t hri_osc32kctrl_intflag_reg_t;
 | |
| typedef uint32_t hri_osc32kctrl_osculp32k_reg_t;
 | |
| typedef uint32_t hri_osc32kctrl_status_reg_t;
 | |
| typedef uint8_t  hri_osc32kctrl_cfdctrl_reg_t;
 | |
| typedef uint8_t  hri_osc32kctrl_evctrl_reg_t;
 | |
| typedef uint8_t  hri_osc32kctrl_rtcctrl_reg_t;
 | |
| typedef uint8_t  hri_osc32kctrl_slcdctrl_reg_t;
 | |
| 
 | |
| 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_CLKFAIL_bit(const void *const hw)
 | |
| {
 | |
| 	return (((Osc32kctrl *)hw)->INTFLAG.reg & OSC32KCTRL_INTFLAG_CLKFAIL) >> OSC32KCTRL_INTFLAG_CLKFAIL_Pos;
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_clear_INTFLAG_CLKFAIL_bit(const void *const hw)
 | |
| {
 | |
| 	((Osc32kctrl *)hw)->INTFLAG.reg = OSC32KCTRL_INTFLAG_CLKFAIL;
 | |
| }
 | |
| 
 | |
| 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_CLKFAIL_bit(const void *const hw)
 | |
| {
 | |
| 	return (((Osc32kctrl *)hw)->INTFLAG.reg & OSC32KCTRL_INTFLAG_CLKFAIL) >> OSC32KCTRL_INTFLAG_CLKFAIL_Pos;
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_clear_interrupt_CLKFAIL_bit(const void *const hw)
 | |
| {
 | |
| 	((Osc32kctrl *)hw)->INTFLAG.reg = OSC32KCTRL_INTFLAG_CLKFAIL;
 | |
| }
 | |
| 
 | |
| 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_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_CLKFAIL_bit(const void *const hw)
 | |
| {
 | |
| 	((Osc32kctrl *)hw)->INTENSET.reg = OSC32KCTRL_INTENSET_CLKFAIL;
 | |
| }
 | |
| 
 | |
| static inline bool hri_osc32kctrl_get_INTEN_CLKFAIL_bit(const void *const hw)
 | |
| {
 | |
| 	return (((Osc32kctrl *)hw)->INTENSET.reg & OSC32KCTRL_INTENSET_CLKFAIL) >> OSC32KCTRL_INTENSET_CLKFAIL_Pos;
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_write_INTEN_CLKFAIL_bit(const void *const hw, bool value)
 | |
| {
 | |
| 	if (value == 0x0) {
 | |
| 		((Osc32kctrl *)hw)->INTENCLR.reg = OSC32KCTRL_INTENSET_CLKFAIL;
 | |
| 	} else {
 | |
| 		((Osc32kctrl *)hw)->INTENSET.reg = OSC32KCTRL_INTENSET_CLKFAIL;
 | |
| 	}
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_clear_INTEN_CLKFAIL_bit(const void *const hw)
 | |
| {
 | |
| 	((Osc32kctrl *)hw)->INTENCLR.reg = OSC32KCTRL_INTENSET_CLKFAIL;
 | |
| }
 | |
| 
 | |
| 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_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_CLKFAIL_bit(const void *const hw)
 | |
| {
 | |
| 	return (((Osc32kctrl *)hw)->STATUS.reg & OSC32KCTRL_STATUS_CLKFAIL) >> OSC32KCTRL_STATUS_CLKFAIL_Pos;
 | |
| }
 | |
| 
 | |
| static inline bool hri_osc32kctrl_get_STATUS_CLKSW_bit(const void *const hw)
 | |
| {
 | |
| 	return (((Osc32kctrl *)hw)->STATUS.reg & OSC32KCTRL_STATUS_CLKSW) >> OSC32KCTRL_STATUS_CLKSW_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;
 | |
| }
 | |
| 
 | |
| 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)
 | |
| {
 | |
| 	uint8_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)
 | |
| {
 | |
| 	uint8_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)
 | |
| {
 | |
| 	uint8_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)
 | |
| {
 | |
| 	uint8_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_SLCDCTRL_SLCDSEL_bit(const void *const hw)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->SLCDCTRL.reg |= OSC32KCTRL_SLCDCTRL_SLCDSEL;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline bool hri_osc32kctrl_get_SLCDCTRL_SLCDSEL_bit(const void *const hw)
 | |
| {
 | |
| 	uint8_t tmp;
 | |
| 	tmp = ((Osc32kctrl *)hw)->SLCDCTRL.reg;
 | |
| 	tmp = (tmp & OSC32KCTRL_SLCDCTRL_SLCDSEL) >> OSC32KCTRL_SLCDCTRL_SLCDSEL_Pos;
 | |
| 	return (bool)tmp;
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_write_SLCDCTRL_SLCDSEL_bit(const void *const hw, bool value)
 | |
| {
 | |
| 	uint8_t tmp;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	tmp = ((Osc32kctrl *)hw)->SLCDCTRL.reg;
 | |
| 	tmp &= ~OSC32KCTRL_SLCDCTRL_SLCDSEL;
 | |
| 	tmp |= value << OSC32KCTRL_SLCDCTRL_SLCDSEL_Pos;
 | |
| 	((Osc32kctrl *)hw)->SLCDCTRL.reg = tmp;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_clear_SLCDCTRL_SLCDSEL_bit(const void *const hw)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->SLCDCTRL.reg &= ~OSC32KCTRL_SLCDCTRL_SLCDSEL;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_toggle_SLCDCTRL_SLCDSEL_bit(const void *const hw)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->SLCDCTRL.reg ^= OSC32KCTRL_SLCDCTRL_SLCDSEL;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_set_SLCDCTRL_reg(const void *const hw, hri_osc32kctrl_slcdctrl_reg_t mask)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->SLCDCTRL.reg |= mask;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline hri_osc32kctrl_slcdctrl_reg_t hri_osc32kctrl_get_SLCDCTRL_reg(const void *const             hw,
 | |
|                                                                             hri_osc32kctrl_slcdctrl_reg_t mask)
 | |
| {
 | |
| 	uint8_t tmp;
 | |
| 	tmp = ((Osc32kctrl *)hw)->SLCDCTRL.reg;
 | |
| 	tmp &= mask;
 | |
| 	return tmp;
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_write_SLCDCTRL_reg(const void *const hw, hri_osc32kctrl_slcdctrl_reg_t data)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->SLCDCTRL.reg = data;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_clear_SLCDCTRL_reg(const void *const hw, hri_osc32kctrl_slcdctrl_reg_t mask)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->SLCDCTRL.reg &= ~mask;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_toggle_SLCDCTRL_reg(const void *const hw, hri_osc32kctrl_slcdctrl_reg_t mask)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->SLCDCTRL.reg ^= mask;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline hri_osc32kctrl_slcdctrl_reg_t hri_osc32kctrl_read_SLCDCTRL_reg(const void *const hw)
 | |
| {
 | |
| 	return ((Osc32kctrl *)hw)->SLCDCTRL.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)
 | |
| {
 | |
| 	uint16_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)
 | |
| {
 | |
| 	uint16_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)
 | |
| {
 | |
| 	uint16_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)
 | |
| {
 | |
| 	uint16_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)
 | |
| {
 | |
| 	uint16_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)
 | |
| {
 | |
| 	uint16_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)
 | |
| {
 | |
| 	uint16_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)
 | |
| {
 | |
| 	uint16_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)
 | |
| {
 | |
| 	uint16_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)
 | |
| {
 | |
| 	uint16_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)
 | |
| {
 | |
| 	uint16_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)
 | |
| {
 | |
| 	uint16_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)
 | |
| {
 | |
| 	uint16_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)
 | |
| {
 | |
| 	uint16_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)
 | |
| {
 | |
| 	uint16_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)
 | |
| {
 | |
| 	uint16_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)
 | |
| {
 | |
| 	uint16_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)
 | |
| {
 | |
| 	uint16_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_CFDCTRL_CFDEN_bit(const void *const hw)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->CFDCTRL.reg |= OSC32KCTRL_CFDCTRL_CFDEN;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline bool hri_osc32kctrl_get_CFDCTRL_CFDEN_bit(const void *const hw)
 | |
| {
 | |
| 	uint8_t tmp;
 | |
| 	tmp = ((Osc32kctrl *)hw)->CFDCTRL.reg;
 | |
| 	tmp = (tmp & OSC32KCTRL_CFDCTRL_CFDEN) >> OSC32KCTRL_CFDCTRL_CFDEN_Pos;
 | |
| 	return (bool)tmp;
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_write_CFDCTRL_CFDEN_bit(const void *const hw, bool value)
 | |
| {
 | |
| 	uint8_t tmp;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	tmp = ((Osc32kctrl *)hw)->CFDCTRL.reg;
 | |
| 	tmp &= ~OSC32KCTRL_CFDCTRL_CFDEN;
 | |
| 	tmp |= value << OSC32KCTRL_CFDCTRL_CFDEN_Pos;
 | |
| 	((Osc32kctrl *)hw)->CFDCTRL.reg = tmp;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_clear_CFDCTRL_CFDEN_bit(const void *const hw)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->CFDCTRL.reg &= ~OSC32KCTRL_CFDCTRL_CFDEN;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_toggle_CFDCTRL_CFDEN_bit(const void *const hw)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->CFDCTRL.reg ^= OSC32KCTRL_CFDCTRL_CFDEN;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_set_CFDCTRL_SWBACK_bit(const void *const hw)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->CFDCTRL.reg |= OSC32KCTRL_CFDCTRL_SWBACK;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline bool hri_osc32kctrl_get_CFDCTRL_SWBACK_bit(const void *const hw)
 | |
| {
 | |
| 	uint8_t tmp;
 | |
| 	tmp = ((Osc32kctrl *)hw)->CFDCTRL.reg;
 | |
| 	tmp = (tmp & OSC32KCTRL_CFDCTRL_SWBACK) >> OSC32KCTRL_CFDCTRL_SWBACK_Pos;
 | |
| 	return (bool)tmp;
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_write_CFDCTRL_SWBACK_bit(const void *const hw, bool value)
 | |
| {
 | |
| 	uint8_t tmp;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	tmp = ((Osc32kctrl *)hw)->CFDCTRL.reg;
 | |
| 	tmp &= ~OSC32KCTRL_CFDCTRL_SWBACK;
 | |
| 	tmp |= value << OSC32KCTRL_CFDCTRL_SWBACK_Pos;
 | |
| 	((Osc32kctrl *)hw)->CFDCTRL.reg = tmp;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_clear_CFDCTRL_SWBACK_bit(const void *const hw)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->CFDCTRL.reg &= ~OSC32KCTRL_CFDCTRL_SWBACK;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_toggle_CFDCTRL_SWBACK_bit(const void *const hw)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->CFDCTRL.reg ^= OSC32KCTRL_CFDCTRL_SWBACK;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_set_CFDCTRL_CFDPRESC_bit(const void *const hw)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->CFDCTRL.reg |= OSC32KCTRL_CFDCTRL_CFDPRESC;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline bool hri_osc32kctrl_get_CFDCTRL_CFDPRESC_bit(const void *const hw)
 | |
| {
 | |
| 	uint8_t tmp;
 | |
| 	tmp = ((Osc32kctrl *)hw)->CFDCTRL.reg;
 | |
| 	tmp = (tmp & OSC32KCTRL_CFDCTRL_CFDPRESC) >> OSC32KCTRL_CFDCTRL_CFDPRESC_Pos;
 | |
| 	return (bool)tmp;
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_write_CFDCTRL_CFDPRESC_bit(const void *const hw, bool value)
 | |
| {
 | |
| 	uint8_t tmp;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	tmp = ((Osc32kctrl *)hw)->CFDCTRL.reg;
 | |
| 	tmp &= ~OSC32KCTRL_CFDCTRL_CFDPRESC;
 | |
| 	tmp |= value << OSC32KCTRL_CFDCTRL_CFDPRESC_Pos;
 | |
| 	((Osc32kctrl *)hw)->CFDCTRL.reg = tmp;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_clear_CFDCTRL_CFDPRESC_bit(const void *const hw)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->CFDCTRL.reg &= ~OSC32KCTRL_CFDCTRL_CFDPRESC;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_toggle_CFDCTRL_CFDPRESC_bit(const void *const hw)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->CFDCTRL.reg ^= OSC32KCTRL_CFDCTRL_CFDPRESC;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_set_CFDCTRL_reg(const void *const hw, hri_osc32kctrl_cfdctrl_reg_t mask)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->CFDCTRL.reg |= mask;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline hri_osc32kctrl_cfdctrl_reg_t hri_osc32kctrl_get_CFDCTRL_reg(const void *const            hw,
 | |
|                                                                           hri_osc32kctrl_cfdctrl_reg_t mask)
 | |
| {
 | |
| 	uint8_t tmp;
 | |
| 	tmp = ((Osc32kctrl *)hw)->CFDCTRL.reg;
 | |
| 	tmp &= mask;
 | |
| 	return tmp;
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_write_CFDCTRL_reg(const void *const hw, hri_osc32kctrl_cfdctrl_reg_t data)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->CFDCTRL.reg = data;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_clear_CFDCTRL_reg(const void *const hw, hri_osc32kctrl_cfdctrl_reg_t mask)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->CFDCTRL.reg &= ~mask;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_toggle_CFDCTRL_reg(const void *const hw, hri_osc32kctrl_cfdctrl_reg_t mask)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->CFDCTRL.reg ^= mask;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline hri_osc32kctrl_cfdctrl_reg_t hri_osc32kctrl_read_CFDCTRL_reg(const void *const hw)
 | |
| {
 | |
| 	return ((Osc32kctrl *)hw)->CFDCTRL.reg;
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_set_EVCTRL_CFDEO_bit(const void *const hw)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->EVCTRL.reg |= OSC32KCTRL_EVCTRL_CFDEO;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline bool hri_osc32kctrl_get_EVCTRL_CFDEO_bit(const void *const hw)
 | |
| {
 | |
| 	uint8_t tmp;
 | |
| 	tmp = ((Osc32kctrl *)hw)->EVCTRL.reg;
 | |
| 	tmp = (tmp & OSC32KCTRL_EVCTRL_CFDEO) >> OSC32KCTRL_EVCTRL_CFDEO_Pos;
 | |
| 	return (bool)tmp;
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_write_EVCTRL_CFDEO_bit(const void *const hw, bool value)
 | |
| {
 | |
| 	uint8_t tmp;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	tmp = ((Osc32kctrl *)hw)->EVCTRL.reg;
 | |
| 	tmp &= ~OSC32KCTRL_EVCTRL_CFDEO;
 | |
| 	tmp |= value << OSC32KCTRL_EVCTRL_CFDEO_Pos;
 | |
| 	((Osc32kctrl *)hw)->EVCTRL.reg = tmp;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_clear_EVCTRL_CFDEO_bit(const void *const hw)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->EVCTRL.reg &= ~OSC32KCTRL_EVCTRL_CFDEO;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_toggle_EVCTRL_CFDEO_bit(const void *const hw)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->EVCTRL.reg ^= OSC32KCTRL_EVCTRL_CFDEO;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_set_EVCTRL_reg(const void *const hw, hri_osc32kctrl_evctrl_reg_t mask)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->EVCTRL.reg |= mask;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline hri_osc32kctrl_evctrl_reg_t hri_osc32kctrl_get_EVCTRL_reg(const void *const           hw,
 | |
|                                                                         hri_osc32kctrl_evctrl_reg_t mask)
 | |
| {
 | |
| 	uint8_t tmp;
 | |
| 	tmp = ((Osc32kctrl *)hw)->EVCTRL.reg;
 | |
| 	tmp &= mask;
 | |
| 	return tmp;
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_write_EVCTRL_reg(const void *const hw, hri_osc32kctrl_evctrl_reg_t data)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->EVCTRL.reg = data;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_clear_EVCTRL_reg(const void *const hw, hri_osc32kctrl_evctrl_reg_t mask)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->EVCTRL.reg &= ~mask;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_toggle_EVCTRL_reg(const void *const hw, hri_osc32kctrl_evctrl_reg_t mask)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->EVCTRL.reg ^= mask;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline hri_osc32kctrl_evctrl_reg_t hri_osc32kctrl_read_EVCTRL_reg(const void *const hw)
 | |
| {
 | |
| 	return ((Osc32kctrl *)hw)->EVCTRL.reg;
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_set_OSCULP32K_EN32K_bit(const void *const hw)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->OSCULP32K.reg |= OSC32KCTRL_OSCULP32K_EN32K;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline bool hri_osc32kctrl_get_OSCULP32K_EN32K_bit(const void *const hw)
 | |
| {
 | |
| 	uint32_t tmp;
 | |
| 	tmp = ((Osc32kctrl *)hw)->OSCULP32K.reg;
 | |
| 	tmp = (tmp & OSC32KCTRL_OSCULP32K_EN32K) >> OSC32KCTRL_OSCULP32K_EN32K_Pos;
 | |
| 	return (bool)tmp;
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_write_OSCULP32K_EN32K_bit(const void *const hw, bool value)
 | |
| {
 | |
| 	uint32_t tmp;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	tmp = ((Osc32kctrl *)hw)->OSCULP32K.reg;
 | |
| 	tmp &= ~OSC32KCTRL_OSCULP32K_EN32K;
 | |
| 	tmp |= value << OSC32KCTRL_OSCULP32K_EN32K_Pos;
 | |
| 	((Osc32kctrl *)hw)->OSCULP32K.reg = tmp;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_clear_OSCULP32K_EN32K_bit(const void *const hw)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->OSCULP32K.reg &= ~OSC32KCTRL_OSCULP32K_EN32K;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_toggle_OSCULP32K_EN32K_bit(const void *const hw)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->OSCULP32K.reg ^= OSC32KCTRL_OSCULP32K_EN32K;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_set_OSCULP32K_EN1K_bit(const void *const hw)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->OSCULP32K.reg |= OSC32KCTRL_OSCULP32K_EN1K;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline bool hri_osc32kctrl_get_OSCULP32K_EN1K_bit(const void *const hw)
 | |
| {
 | |
| 	uint32_t tmp;
 | |
| 	tmp = ((Osc32kctrl *)hw)->OSCULP32K.reg;
 | |
| 	tmp = (tmp & OSC32KCTRL_OSCULP32K_EN1K) >> OSC32KCTRL_OSCULP32K_EN1K_Pos;
 | |
| 	return (bool)tmp;
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_write_OSCULP32K_EN1K_bit(const void *const hw, bool value)
 | |
| {
 | |
| 	uint32_t tmp;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	tmp = ((Osc32kctrl *)hw)->OSCULP32K.reg;
 | |
| 	tmp &= ~OSC32KCTRL_OSCULP32K_EN1K;
 | |
| 	tmp |= value << OSC32KCTRL_OSCULP32K_EN1K_Pos;
 | |
| 	((Osc32kctrl *)hw)->OSCULP32K.reg = tmp;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_clear_OSCULP32K_EN1K_bit(const void *const hw)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->OSCULP32K.reg &= ~OSC32KCTRL_OSCULP32K_EN1K;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| static inline void hri_osc32kctrl_toggle_OSCULP32K_EN1K_bit(const void *const hw)
 | |
| {
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_ENTER();
 | |
| 	((Osc32kctrl *)hw)->OSCULP32K.reg ^= OSC32KCTRL_OSCULP32K_EN1K;
 | |
| 	OSC32KCTRL_CRITICAL_SECTION_LEAVE();
 | |
| }
 | |
| 
 | |
| 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;
 | |
| }
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif
 | |
| 
 | |
| #endif /* _HRI_OSC32KCTRL_L22_H_INCLUDED */
 | |
| #endif /* _SAML22_OSC32KCTRL_COMPONENT_ */
 |