* 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
2533 lines
69 KiB
C
2533 lines
69 KiB
C
/**
|
|
* \file
|
|
*
|
|
* \brief SAM SUPC
|
|
*
|
|
* 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_SUPC_COMPONENT_
|
|
#ifndef _HRI_SUPC_L22_H_INCLUDED_
|
|
#define _HRI_SUPC_L22_H_INCLUDED_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdbool.h>
|
|
#include <hal_atomic.h>
|
|
|
|
#if defined(ENABLE_SUPC_CRITICAL_SECTIONS)
|
|
#define SUPC_CRITICAL_SECTION_ENTER() CRITICAL_SECTION_ENTER()
|
|
#define SUPC_CRITICAL_SECTION_LEAVE() CRITICAL_SECTION_LEAVE()
|
|
#else
|
|
#define SUPC_CRITICAL_SECTION_ENTER()
|
|
#define SUPC_CRITICAL_SECTION_LEAVE()
|
|
#endif
|
|
|
|
typedef uint32_t hri_supc_bbps_reg_t;
|
|
typedef uint32_t hri_supc_bkin_reg_t;
|
|
typedef uint32_t hri_supc_bkout_reg_t;
|
|
typedef uint32_t hri_supc_bod12_reg_t;
|
|
typedef uint32_t hri_supc_bod33_reg_t;
|
|
typedef uint32_t hri_supc_intenset_reg_t;
|
|
typedef uint32_t hri_supc_intflag_reg_t;
|
|
typedef uint32_t hri_supc_status_reg_t;
|
|
typedef uint32_t hri_supc_vref_reg_t;
|
|
typedef uint32_t hri_supc_vreg_reg_t;
|
|
|
|
static inline bool hri_supc_get_INTFLAG_BOD33RDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->INTFLAG.reg & SUPC_INTFLAG_BOD33RDY) >> SUPC_INTFLAG_BOD33RDY_Pos;
|
|
}
|
|
|
|
static inline void hri_supc_clear_INTFLAG_BOD33RDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTFLAG.reg = SUPC_INTFLAG_BOD33RDY;
|
|
}
|
|
|
|
static inline bool hri_supc_get_INTFLAG_BOD33DET_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->INTFLAG.reg & SUPC_INTFLAG_BOD33DET) >> SUPC_INTFLAG_BOD33DET_Pos;
|
|
}
|
|
|
|
static inline void hri_supc_clear_INTFLAG_BOD33DET_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTFLAG.reg = SUPC_INTFLAG_BOD33DET;
|
|
}
|
|
|
|
static inline bool hri_supc_get_INTFLAG_B33SRDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->INTFLAG.reg & SUPC_INTFLAG_B33SRDY) >> SUPC_INTFLAG_B33SRDY_Pos;
|
|
}
|
|
|
|
static inline void hri_supc_clear_INTFLAG_B33SRDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTFLAG.reg = SUPC_INTFLAG_B33SRDY;
|
|
}
|
|
|
|
static inline bool hri_supc_get_INTFLAG_BOD12RDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->INTFLAG.reg & SUPC_INTFLAG_BOD12RDY) >> SUPC_INTFLAG_BOD12RDY_Pos;
|
|
}
|
|
|
|
static inline void hri_supc_clear_INTFLAG_BOD12RDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTFLAG.reg = SUPC_INTFLAG_BOD12RDY;
|
|
}
|
|
|
|
static inline bool hri_supc_get_INTFLAG_BOD12DET_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->INTFLAG.reg & SUPC_INTFLAG_BOD12DET) >> SUPC_INTFLAG_BOD12DET_Pos;
|
|
}
|
|
|
|
static inline void hri_supc_clear_INTFLAG_BOD12DET_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTFLAG.reg = SUPC_INTFLAG_BOD12DET;
|
|
}
|
|
|
|
static inline bool hri_supc_get_INTFLAG_B12SRDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->INTFLAG.reg & SUPC_INTFLAG_B12SRDY) >> SUPC_INTFLAG_B12SRDY_Pos;
|
|
}
|
|
|
|
static inline void hri_supc_clear_INTFLAG_B12SRDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTFLAG.reg = SUPC_INTFLAG_B12SRDY;
|
|
}
|
|
|
|
static inline bool hri_supc_get_INTFLAG_VREGRDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->INTFLAG.reg & SUPC_INTFLAG_VREGRDY) >> SUPC_INTFLAG_VREGRDY_Pos;
|
|
}
|
|
|
|
static inline void hri_supc_clear_INTFLAG_VREGRDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTFLAG.reg = SUPC_INTFLAG_VREGRDY;
|
|
}
|
|
|
|
static inline bool hri_supc_get_INTFLAG_APWSRDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->INTFLAG.reg & SUPC_INTFLAG_APWSRDY) >> SUPC_INTFLAG_APWSRDY_Pos;
|
|
}
|
|
|
|
static inline void hri_supc_clear_INTFLAG_APWSRDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTFLAG.reg = SUPC_INTFLAG_APWSRDY;
|
|
}
|
|
|
|
static inline bool hri_supc_get_INTFLAG_VCORERDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->INTFLAG.reg & SUPC_INTFLAG_VCORERDY) >> SUPC_INTFLAG_VCORERDY_Pos;
|
|
}
|
|
|
|
static inline void hri_supc_clear_INTFLAG_VCORERDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTFLAG.reg = SUPC_INTFLAG_VCORERDY;
|
|
}
|
|
|
|
static inline bool hri_supc_get_interrupt_BOD33RDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->INTFLAG.reg & SUPC_INTFLAG_BOD33RDY) >> SUPC_INTFLAG_BOD33RDY_Pos;
|
|
}
|
|
|
|
static inline void hri_supc_clear_interrupt_BOD33RDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTFLAG.reg = SUPC_INTFLAG_BOD33RDY;
|
|
}
|
|
|
|
static inline bool hri_supc_get_interrupt_BOD33DET_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->INTFLAG.reg & SUPC_INTFLAG_BOD33DET) >> SUPC_INTFLAG_BOD33DET_Pos;
|
|
}
|
|
|
|
static inline void hri_supc_clear_interrupt_BOD33DET_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTFLAG.reg = SUPC_INTFLAG_BOD33DET;
|
|
}
|
|
|
|
static inline bool hri_supc_get_interrupt_B33SRDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->INTFLAG.reg & SUPC_INTFLAG_B33SRDY) >> SUPC_INTFLAG_B33SRDY_Pos;
|
|
}
|
|
|
|
static inline void hri_supc_clear_interrupt_B33SRDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTFLAG.reg = SUPC_INTFLAG_B33SRDY;
|
|
}
|
|
|
|
static inline bool hri_supc_get_interrupt_BOD12RDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->INTFLAG.reg & SUPC_INTFLAG_BOD12RDY) >> SUPC_INTFLAG_BOD12RDY_Pos;
|
|
}
|
|
|
|
static inline void hri_supc_clear_interrupt_BOD12RDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTFLAG.reg = SUPC_INTFLAG_BOD12RDY;
|
|
}
|
|
|
|
static inline bool hri_supc_get_interrupt_BOD12DET_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->INTFLAG.reg & SUPC_INTFLAG_BOD12DET) >> SUPC_INTFLAG_BOD12DET_Pos;
|
|
}
|
|
|
|
static inline void hri_supc_clear_interrupt_BOD12DET_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTFLAG.reg = SUPC_INTFLAG_BOD12DET;
|
|
}
|
|
|
|
static inline bool hri_supc_get_interrupt_B12SRDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->INTFLAG.reg & SUPC_INTFLAG_B12SRDY) >> SUPC_INTFLAG_B12SRDY_Pos;
|
|
}
|
|
|
|
static inline void hri_supc_clear_interrupt_B12SRDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTFLAG.reg = SUPC_INTFLAG_B12SRDY;
|
|
}
|
|
|
|
static inline bool hri_supc_get_interrupt_VREGRDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->INTFLAG.reg & SUPC_INTFLAG_VREGRDY) >> SUPC_INTFLAG_VREGRDY_Pos;
|
|
}
|
|
|
|
static inline void hri_supc_clear_interrupt_VREGRDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTFLAG.reg = SUPC_INTFLAG_VREGRDY;
|
|
}
|
|
|
|
static inline bool hri_supc_get_interrupt_APWSRDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->INTFLAG.reg & SUPC_INTFLAG_APWSRDY) >> SUPC_INTFLAG_APWSRDY_Pos;
|
|
}
|
|
|
|
static inline void hri_supc_clear_interrupt_APWSRDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTFLAG.reg = SUPC_INTFLAG_APWSRDY;
|
|
}
|
|
|
|
static inline bool hri_supc_get_interrupt_VCORERDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->INTFLAG.reg & SUPC_INTFLAG_VCORERDY) >> SUPC_INTFLAG_VCORERDY_Pos;
|
|
}
|
|
|
|
static inline void hri_supc_clear_interrupt_VCORERDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTFLAG.reg = SUPC_INTFLAG_VCORERDY;
|
|
}
|
|
|
|
static inline hri_supc_intflag_reg_t hri_supc_get_INTFLAG_reg(const void *const hw, hri_supc_intflag_reg_t mask)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->INTFLAG.reg;
|
|
tmp &= mask;
|
|
return tmp;
|
|
}
|
|
|
|
static inline hri_supc_intflag_reg_t hri_supc_read_INTFLAG_reg(const void *const hw)
|
|
{
|
|
return ((Supc *)hw)->INTFLAG.reg;
|
|
}
|
|
|
|
static inline void hri_supc_clear_INTFLAG_reg(const void *const hw, hri_supc_intflag_reg_t mask)
|
|
{
|
|
((Supc *)hw)->INTFLAG.reg = mask;
|
|
}
|
|
|
|
static inline void hri_supc_set_INTEN_BOD33RDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTENSET.reg = SUPC_INTENSET_BOD33RDY;
|
|
}
|
|
|
|
static inline bool hri_supc_get_INTEN_BOD33RDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->INTENSET.reg & SUPC_INTENSET_BOD33RDY) >> SUPC_INTENSET_BOD33RDY_Pos;
|
|
}
|
|
|
|
static inline void hri_supc_write_INTEN_BOD33RDY_bit(const void *const hw, bool value)
|
|
{
|
|
if (value == 0x0) {
|
|
((Supc *)hw)->INTENCLR.reg = SUPC_INTENSET_BOD33RDY;
|
|
} else {
|
|
((Supc *)hw)->INTENSET.reg = SUPC_INTENSET_BOD33RDY;
|
|
}
|
|
}
|
|
|
|
static inline void hri_supc_clear_INTEN_BOD33RDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTENCLR.reg = SUPC_INTENSET_BOD33RDY;
|
|
}
|
|
|
|
static inline void hri_supc_set_INTEN_BOD33DET_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTENSET.reg = SUPC_INTENSET_BOD33DET;
|
|
}
|
|
|
|
static inline bool hri_supc_get_INTEN_BOD33DET_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->INTENSET.reg & SUPC_INTENSET_BOD33DET) >> SUPC_INTENSET_BOD33DET_Pos;
|
|
}
|
|
|
|
static inline void hri_supc_write_INTEN_BOD33DET_bit(const void *const hw, bool value)
|
|
{
|
|
if (value == 0x0) {
|
|
((Supc *)hw)->INTENCLR.reg = SUPC_INTENSET_BOD33DET;
|
|
} else {
|
|
((Supc *)hw)->INTENSET.reg = SUPC_INTENSET_BOD33DET;
|
|
}
|
|
}
|
|
|
|
static inline void hri_supc_clear_INTEN_BOD33DET_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTENCLR.reg = SUPC_INTENSET_BOD33DET;
|
|
}
|
|
|
|
static inline void hri_supc_set_INTEN_B33SRDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTENSET.reg = SUPC_INTENSET_B33SRDY;
|
|
}
|
|
|
|
static inline bool hri_supc_get_INTEN_B33SRDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->INTENSET.reg & SUPC_INTENSET_B33SRDY) >> SUPC_INTENSET_B33SRDY_Pos;
|
|
}
|
|
|
|
static inline void hri_supc_write_INTEN_B33SRDY_bit(const void *const hw, bool value)
|
|
{
|
|
if (value == 0x0) {
|
|
((Supc *)hw)->INTENCLR.reg = SUPC_INTENSET_B33SRDY;
|
|
} else {
|
|
((Supc *)hw)->INTENSET.reg = SUPC_INTENSET_B33SRDY;
|
|
}
|
|
}
|
|
|
|
static inline void hri_supc_clear_INTEN_B33SRDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTENCLR.reg = SUPC_INTENSET_B33SRDY;
|
|
}
|
|
|
|
static inline void hri_supc_set_INTEN_BOD12RDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTENSET.reg = SUPC_INTENSET_BOD12RDY;
|
|
}
|
|
|
|
static inline bool hri_supc_get_INTEN_BOD12RDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->INTENSET.reg & SUPC_INTENSET_BOD12RDY) >> SUPC_INTENSET_BOD12RDY_Pos;
|
|
}
|
|
|
|
static inline void hri_supc_write_INTEN_BOD12RDY_bit(const void *const hw, bool value)
|
|
{
|
|
if (value == 0x0) {
|
|
((Supc *)hw)->INTENCLR.reg = SUPC_INTENSET_BOD12RDY;
|
|
} else {
|
|
((Supc *)hw)->INTENSET.reg = SUPC_INTENSET_BOD12RDY;
|
|
}
|
|
}
|
|
|
|
static inline void hri_supc_clear_INTEN_BOD12RDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTENCLR.reg = SUPC_INTENSET_BOD12RDY;
|
|
}
|
|
|
|
static inline void hri_supc_set_INTEN_BOD12DET_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTENSET.reg = SUPC_INTENSET_BOD12DET;
|
|
}
|
|
|
|
static inline bool hri_supc_get_INTEN_BOD12DET_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->INTENSET.reg & SUPC_INTENSET_BOD12DET) >> SUPC_INTENSET_BOD12DET_Pos;
|
|
}
|
|
|
|
static inline void hri_supc_write_INTEN_BOD12DET_bit(const void *const hw, bool value)
|
|
{
|
|
if (value == 0x0) {
|
|
((Supc *)hw)->INTENCLR.reg = SUPC_INTENSET_BOD12DET;
|
|
} else {
|
|
((Supc *)hw)->INTENSET.reg = SUPC_INTENSET_BOD12DET;
|
|
}
|
|
}
|
|
|
|
static inline void hri_supc_clear_INTEN_BOD12DET_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTENCLR.reg = SUPC_INTENSET_BOD12DET;
|
|
}
|
|
|
|
static inline void hri_supc_set_INTEN_B12SRDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTENSET.reg = SUPC_INTENSET_B12SRDY;
|
|
}
|
|
|
|
static inline bool hri_supc_get_INTEN_B12SRDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->INTENSET.reg & SUPC_INTENSET_B12SRDY) >> SUPC_INTENSET_B12SRDY_Pos;
|
|
}
|
|
|
|
static inline void hri_supc_write_INTEN_B12SRDY_bit(const void *const hw, bool value)
|
|
{
|
|
if (value == 0x0) {
|
|
((Supc *)hw)->INTENCLR.reg = SUPC_INTENSET_B12SRDY;
|
|
} else {
|
|
((Supc *)hw)->INTENSET.reg = SUPC_INTENSET_B12SRDY;
|
|
}
|
|
}
|
|
|
|
static inline void hri_supc_clear_INTEN_B12SRDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTENCLR.reg = SUPC_INTENSET_B12SRDY;
|
|
}
|
|
|
|
static inline void hri_supc_set_INTEN_VREGRDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTENSET.reg = SUPC_INTENSET_VREGRDY;
|
|
}
|
|
|
|
static inline bool hri_supc_get_INTEN_VREGRDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->INTENSET.reg & SUPC_INTENSET_VREGRDY) >> SUPC_INTENSET_VREGRDY_Pos;
|
|
}
|
|
|
|
static inline void hri_supc_write_INTEN_VREGRDY_bit(const void *const hw, bool value)
|
|
{
|
|
if (value == 0x0) {
|
|
((Supc *)hw)->INTENCLR.reg = SUPC_INTENSET_VREGRDY;
|
|
} else {
|
|
((Supc *)hw)->INTENSET.reg = SUPC_INTENSET_VREGRDY;
|
|
}
|
|
}
|
|
|
|
static inline void hri_supc_clear_INTEN_VREGRDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTENCLR.reg = SUPC_INTENSET_VREGRDY;
|
|
}
|
|
|
|
static inline void hri_supc_set_INTEN_APWSRDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTENSET.reg = SUPC_INTENSET_APWSRDY;
|
|
}
|
|
|
|
static inline bool hri_supc_get_INTEN_APWSRDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->INTENSET.reg & SUPC_INTENSET_APWSRDY) >> SUPC_INTENSET_APWSRDY_Pos;
|
|
}
|
|
|
|
static inline void hri_supc_write_INTEN_APWSRDY_bit(const void *const hw, bool value)
|
|
{
|
|
if (value == 0x0) {
|
|
((Supc *)hw)->INTENCLR.reg = SUPC_INTENSET_APWSRDY;
|
|
} else {
|
|
((Supc *)hw)->INTENSET.reg = SUPC_INTENSET_APWSRDY;
|
|
}
|
|
}
|
|
|
|
static inline void hri_supc_clear_INTEN_APWSRDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTENCLR.reg = SUPC_INTENSET_APWSRDY;
|
|
}
|
|
|
|
static inline void hri_supc_set_INTEN_VCORERDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTENSET.reg = SUPC_INTENSET_VCORERDY;
|
|
}
|
|
|
|
static inline bool hri_supc_get_INTEN_VCORERDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->INTENSET.reg & SUPC_INTENSET_VCORERDY) >> SUPC_INTENSET_VCORERDY_Pos;
|
|
}
|
|
|
|
static inline void hri_supc_write_INTEN_VCORERDY_bit(const void *const hw, bool value)
|
|
{
|
|
if (value == 0x0) {
|
|
((Supc *)hw)->INTENCLR.reg = SUPC_INTENSET_VCORERDY;
|
|
} else {
|
|
((Supc *)hw)->INTENSET.reg = SUPC_INTENSET_VCORERDY;
|
|
}
|
|
}
|
|
|
|
static inline void hri_supc_clear_INTEN_VCORERDY_bit(const void *const hw)
|
|
{
|
|
((Supc *)hw)->INTENCLR.reg = SUPC_INTENSET_VCORERDY;
|
|
}
|
|
|
|
static inline void hri_supc_set_INTEN_reg(const void *const hw, hri_supc_intenset_reg_t mask)
|
|
{
|
|
((Supc *)hw)->INTENSET.reg = mask;
|
|
}
|
|
|
|
static inline hri_supc_intenset_reg_t hri_supc_get_INTEN_reg(const void *const hw, hri_supc_intenset_reg_t mask)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->INTENSET.reg;
|
|
tmp &= mask;
|
|
return tmp;
|
|
}
|
|
|
|
static inline hri_supc_intenset_reg_t hri_supc_read_INTEN_reg(const void *const hw)
|
|
{
|
|
return ((Supc *)hw)->INTENSET.reg;
|
|
}
|
|
|
|
static inline void hri_supc_write_INTEN_reg(const void *const hw, hri_supc_intenset_reg_t data)
|
|
{
|
|
((Supc *)hw)->INTENSET.reg = data;
|
|
((Supc *)hw)->INTENCLR.reg = ~data;
|
|
}
|
|
|
|
static inline void hri_supc_clear_INTEN_reg(const void *const hw, hri_supc_intenset_reg_t mask)
|
|
{
|
|
((Supc *)hw)->INTENCLR.reg = mask;
|
|
}
|
|
|
|
static inline bool hri_supc_get_STATUS_BOD33RDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->STATUS.reg & SUPC_STATUS_BOD33RDY) >> SUPC_STATUS_BOD33RDY_Pos;
|
|
}
|
|
|
|
static inline bool hri_supc_get_STATUS_BOD33DET_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->STATUS.reg & SUPC_STATUS_BOD33DET) >> SUPC_STATUS_BOD33DET_Pos;
|
|
}
|
|
|
|
static inline bool hri_supc_get_STATUS_B33SRDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->STATUS.reg & SUPC_STATUS_B33SRDY) >> SUPC_STATUS_B33SRDY_Pos;
|
|
}
|
|
|
|
static inline bool hri_supc_get_STATUS_BOD12RDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->STATUS.reg & SUPC_STATUS_BOD12RDY) >> SUPC_STATUS_BOD12RDY_Pos;
|
|
}
|
|
|
|
static inline bool hri_supc_get_STATUS_BOD12DET_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->STATUS.reg & SUPC_STATUS_BOD12DET) >> SUPC_STATUS_BOD12DET_Pos;
|
|
}
|
|
|
|
static inline bool hri_supc_get_STATUS_B12SRDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->STATUS.reg & SUPC_STATUS_B12SRDY) >> SUPC_STATUS_B12SRDY_Pos;
|
|
}
|
|
|
|
static inline bool hri_supc_get_STATUS_VREGRDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->STATUS.reg & SUPC_STATUS_VREGRDY) >> SUPC_STATUS_VREGRDY_Pos;
|
|
}
|
|
|
|
static inline bool hri_supc_get_STATUS_APWSRDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->STATUS.reg & SUPC_STATUS_APWSRDY) >> SUPC_STATUS_APWSRDY_Pos;
|
|
}
|
|
|
|
static inline bool hri_supc_get_STATUS_VCORERDY_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->STATUS.reg & SUPC_STATUS_VCORERDY) >> SUPC_STATUS_VCORERDY_Pos;
|
|
}
|
|
|
|
static inline bool hri_supc_get_STATUS_BBPS_bit(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->STATUS.reg & SUPC_STATUS_BBPS) >> SUPC_STATUS_BBPS_Pos;
|
|
}
|
|
|
|
static inline hri_supc_status_reg_t hri_supc_get_STATUS_reg(const void *const hw, hri_supc_status_reg_t mask)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->STATUS.reg;
|
|
tmp &= mask;
|
|
return tmp;
|
|
}
|
|
|
|
static inline hri_supc_status_reg_t hri_supc_read_STATUS_reg(const void *const hw)
|
|
{
|
|
return ((Supc *)hw)->STATUS.reg;
|
|
}
|
|
|
|
static inline hri_supc_bkin_reg_t hri_supc_get_BKIN_BKIN_bf(const void *const hw, hri_supc_bkin_reg_t mask)
|
|
{
|
|
return (((Supc *)hw)->BKIN.reg & SUPC_BKIN_BKIN(mask)) >> SUPC_BKIN_BKIN_Pos;
|
|
}
|
|
|
|
static inline hri_supc_bkin_reg_t hri_supc_read_BKIN_BKIN_bf(const void *const hw)
|
|
{
|
|
return (((Supc *)hw)->BKIN.reg & SUPC_BKIN_BKIN_Msk) >> SUPC_BKIN_BKIN_Pos;
|
|
}
|
|
|
|
static inline hri_supc_bkin_reg_t hri_supc_get_BKIN_reg(const void *const hw, hri_supc_bkin_reg_t mask)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BKIN.reg;
|
|
tmp &= mask;
|
|
return tmp;
|
|
}
|
|
|
|
static inline hri_supc_bkin_reg_t hri_supc_read_BKIN_reg(const void *const hw)
|
|
{
|
|
return ((Supc *)hw)->BKIN.reg;
|
|
}
|
|
|
|
static inline void hri_supc_set_BOD33_ENABLE_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg |= SUPC_BOD33_ENABLE;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline bool hri_supc_get_BOD33_ENABLE_bit(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD33.reg;
|
|
tmp = (tmp & SUPC_BOD33_ENABLE) >> SUPC_BOD33_ENABLE_Pos;
|
|
return (bool)tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BOD33_ENABLE_bit(const void *const hw, bool value)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->BOD33.reg;
|
|
tmp &= ~SUPC_BOD33_ENABLE;
|
|
tmp |= value << SUPC_BOD33_ENABLE_Pos;
|
|
((Supc *)hw)->BOD33.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BOD33_ENABLE_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg &= ~SUPC_BOD33_ENABLE;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BOD33_ENABLE_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg ^= SUPC_BOD33_ENABLE;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_set_BOD33_HYST_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg |= SUPC_BOD33_HYST;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline bool hri_supc_get_BOD33_HYST_bit(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD33.reg;
|
|
tmp = (tmp & SUPC_BOD33_HYST) >> SUPC_BOD33_HYST_Pos;
|
|
return (bool)tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BOD33_HYST_bit(const void *const hw, bool value)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->BOD33.reg;
|
|
tmp &= ~SUPC_BOD33_HYST;
|
|
tmp |= value << SUPC_BOD33_HYST_Pos;
|
|
((Supc *)hw)->BOD33.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BOD33_HYST_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg &= ~SUPC_BOD33_HYST;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BOD33_HYST_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg ^= SUPC_BOD33_HYST;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_set_BOD33_STDBYCFG_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg |= SUPC_BOD33_STDBYCFG;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline bool hri_supc_get_BOD33_STDBYCFG_bit(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD33.reg;
|
|
tmp = (tmp & SUPC_BOD33_STDBYCFG) >> SUPC_BOD33_STDBYCFG_Pos;
|
|
return (bool)tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BOD33_STDBYCFG_bit(const void *const hw, bool value)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->BOD33.reg;
|
|
tmp &= ~SUPC_BOD33_STDBYCFG;
|
|
tmp |= value << SUPC_BOD33_STDBYCFG_Pos;
|
|
((Supc *)hw)->BOD33.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BOD33_STDBYCFG_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg &= ~SUPC_BOD33_STDBYCFG;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BOD33_STDBYCFG_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg ^= SUPC_BOD33_STDBYCFG;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_set_BOD33_RUNSTDBY_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg |= SUPC_BOD33_RUNSTDBY;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline bool hri_supc_get_BOD33_RUNSTDBY_bit(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD33.reg;
|
|
tmp = (tmp & SUPC_BOD33_RUNSTDBY) >> SUPC_BOD33_RUNSTDBY_Pos;
|
|
return (bool)tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BOD33_RUNSTDBY_bit(const void *const hw, bool value)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->BOD33.reg;
|
|
tmp &= ~SUPC_BOD33_RUNSTDBY;
|
|
tmp |= value << SUPC_BOD33_RUNSTDBY_Pos;
|
|
((Supc *)hw)->BOD33.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BOD33_RUNSTDBY_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg &= ~SUPC_BOD33_RUNSTDBY;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BOD33_RUNSTDBY_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg ^= SUPC_BOD33_RUNSTDBY;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_set_BOD33_RUNBKUP_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg |= SUPC_BOD33_RUNBKUP;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline bool hri_supc_get_BOD33_RUNBKUP_bit(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD33.reg;
|
|
tmp = (tmp & SUPC_BOD33_RUNBKUP) >> SUPC_BOD33_RUNBKUP_Pos;
|
|
return (bool)tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BOD33_RUNBKUP_bit(const void *const hw, bool value)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->BOD33.reg;
|
|
tmp &= ~SUPC_BOD33_RUNBKUP;
|
|
tmp |= value << SUPC_BOD33_RUNBKUP_Pos;
|
|
((Supc *)hw)->BOD33.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BOD33_RUNBKUP_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg &= ~SUPC_BOD33_RUNBKUP;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BOD33_RUNBKUP_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg ^= SUPC_BOD33_RUNBKUP;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_set_BOD33_ACTCFG_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg |= SUPC_BOD33_ACTCFG;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline bool hri_supc_get_BOD33_ACTCFG_bit(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD33.reg;
|
|
tmp = (tmp & SUPC_BOD33_ACTCFG) >> SUPC_BOD33_ACTCFG_Pos;
|
|
return (bool)tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BOD33_ACTCFG_bit(const void *const hw, bool value)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->BOD33.reg;
|
|
tmp &= ~SUPC_BOD33_ACTCFG;
|
|
tmp |= value << SUPC_BOD33_ACTCFG_Pos;
|
|
((Supc *)hw)->BOD33.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BOD33_ACTCFG_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg &= ~SUPC_BOD33_ACTCFG;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BOD33_ACTCFG_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg ^= SUPC_BOD33_ACTCFG;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_set_BOD33_VMON_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg |= SUPC_BOD33_VMON;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline bool hri_supc_get_BOD33_VMON_bit(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD33.reg;
|
|
tmp = (tmp & SUPC_BOD33_VMON) >> SUPC_BOD33_VMON_Pos;
|
|
return (bool)tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BOD33_VMON_bit(const void *const hw, bool value)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->BOD33.reg;
|
|
tmp &= ~SUPC_BOD33_VMON;
|
|
tmp |= value << SUPC_BOD33_VMON_Pos;
|
|
((Supc *)hw)->BOD33.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BOD33_VMON_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg &= ~SUPC_BOD33_VMON;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BOD33_VMON_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg ^= SUPC_BOD33_VMON;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_set_BOD33_ACTION_bf(const void *const hw, hri_supc_bod33_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg |= SUPC_BOD33_ACTION(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bod33_reg_t hri_supc_get_BOD33_ACTION_bf(const void *const hw, hri_supc_bod33_reg_t mask)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD33.reg;
|
|
tmp = (tmp & SUPC_BOD33_ACTION(mask)) >> SUPC_BOD33_ACTION_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BOD33_ACTION_bf(const void *const hw, hri_supc_bod33_reg_t data)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->BOD33.reg;
|
|
tmp &= ~SUPC_BOD33_ACTION_Msk;
|
|
tmp |= SUPC_BOD33_ACTION(data);
|
|
((Supc *)hw)->BOD33.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BOD33_ACTION_bf(const void *const hw, hri_supc_bod33_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg &= ~SUPC_BOD33_ACTION(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BOD33_ACTION_bf(const void *const hw, hri_supc_bod33_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg ^= SUPC_BOD33_ACTION(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bod33_reg_t hri_supc_read_BOD33_ACTION_bf(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD33.reg;
|
|
tmp = (tmp & SUPC_BOD33_ACTION_Msk) >> SUPC_BOD33_ACTION_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_set_BOD33_PSEL_bf(const void *const hw, hri_supc_bod33_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg |= SUPC_BOD33_PSEL(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bod33_reg_t hri_supc_get_BOD33_PSEL_bf(const void *const hw, hri_supc_bod33_reg_t mask)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD33.reg;
|
|
tmp = (tmp & SUPC_BOD33_PSEL(mask)) >> SUPC_BOD33_PSEL_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BOD33_PSEL_bf(const void *const hw, hri_supc_bod33_reg_t data)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->BOD33.reg;
|
|
tmp &= ~SUPC_BOD33_PSEL_Msk;
|
|
tmp |= SUPC_BOD33_PSEL(data);
|
|
((Supc *)hw)->BOD33.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BOD33_PSEL_bf(const void *const hw, hri_supc_bod33_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg &= ~SUPC_BOD33_PSEL(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BOD33_PSEL_bf(const void *const hw, hri_supc_bod33_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg ^= SUPC_BOD33_PSEL(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bod33_reg_t hri_supc_read_BOD33_PSEL_bf(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD33.reg;
|
|
tmp = (tmp & SUPC_BOD33_PSEL_Msk) >> SUPC_BOD33_PSEL_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_set_BOD33_LEVEL_bf(const void *const hw, hri_supc_bod33_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg |= SUPC_BOD33_LEVEL(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bod33_reg_t hri_supc_get_BOD33_LEVEL_bf(const void *const hw, hri_supc_bod33_reg_t mask)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD33.reg;
|
|
tmp = (tmp & SUPC_BOD33_LEVEL(mask)) >> SUPC_BOD33_LEVEL_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BOD33_LEVEL_bf(const void *const hw, hri_supc_bod33_reg_t data)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->BOD33.reg;
|
|
tmp &= ~SUPC_BOD33_LEVEL_Msk;
|
|
tmp |= SUPC_BOD33_LEVEL(data);
|
|
((Supc *)hw)->BOD33.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BOD33_LEVEL_bf(const void *const hw, hri_supc_bod33_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg &= ~SUPC_BOD33_LEVEL(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BOD33_LEVEL_bf(const void *const hw, hri_supc_bod33_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg ^= SUPC_BOD33_LEVEL(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bod33_reg_t hri_supc_read_BOD33_LEVEL_bf(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD33.reg;
|
|
tmp = (tmp & SUPC_BOD33_LEVEL_Msk) >> SUPC_BOD33_LEVEL_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_set_BOD33_BKUPLEVEL_bf(const void *const hw, hri_supc_bod33_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg |= SUPC_BOD33_BKUPLEVEL(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bod33_reg_t hri_supc_get_BOD33_BKUPLEVEL_bf(const void *const hw, hri_supc_bod33_reg_t mask)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD33.reg;
|
|
tmp = (tmp & SUPC_BOD33_BKUPLEVEL(mask)) >> SUPC_BOD33_BKUPLEVEL_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BOD33_BKUPLEVEL_bf(const void *const hw, hri_supc_bod33_reg_t data)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->BOD33.reg;
|
|
tmp &= ~SUPC_BOD33_BKUPLEVEL_Msk;
|
|
tmp |= SUPC_BOD33_BKUPLEVEL(data);
|
|
((Supc *)hw)->BOD33.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BOD33_BKUPLEVEL_bf(const void *const hw, hri_supc_bod33_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg &= ~SUPC_BOD33_BKUPLEVEL(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BOD33_BKUPLEVEL_bf(const void *const hw, hri_supc_bod33_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg ^= SUPC_BOD33_BKUPLEVEL(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bod33_reg_t hri_supc_read_BOD33_BKUPLEVEL_bf(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD33.reg;
|
|
tmp = (tmp & SUPC_BOD33_BKUPLEVEL_Msk) >> SUPC_BOD33_BKUPLEVEL_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_set_BOD33_reg(const void *const hw, hri_supc_bod33_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg |= mask;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bod33_reg_t hri_supc_get_BOD33_reg(const void *const hw, hri_supc_bod33_reg_t mask)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD33.reg;
|
|
tmp &= mask;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BOD33_reg(const void *const hw, hri_supc_bod33_reg_t data)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg = data;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BOD33_reg(const void *const hw, hri_supc_bod33_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg &= ~mask;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BOD33_reg(const void *const hw, hri_supc_bod33_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD33.reg ^= mask;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bod33_reg_t hri_supc_read_BOD33_reg(const void *const hw)
|
|
{
|
|
return ((Supc *)hw)->BOD33.reg;
|
|
}
|
|
|
|
static inline void hri_supc_set_BOD12_ENABLE_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg |= SUPC_BOD12_ENABLE;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline bool hri_supc_get_BOD12_ENABLE_bit(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD12.reg;
|
|
tmp = (tmp & SUPC_BOD12_ENABLE) >> SUPC_BOD12_ENABLE_Pos;
|
|
return (bool)tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BOD12_ENABLE_bit(const void *const hw, bool value)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->BOD12.reg;
|
|
tmp &= ~SUPC_BOD12_ENABLE;
|
|
tmp |= value << SUPC_BOD12_ENABLE_Pos;
|
|
((Supc *)hw)->BOD12.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BOD12_ENABLE_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg &= ~SUPC_BOD12_ENABLE;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BOD12_ENABLE_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg ^= SUPC_BOD12_ENABLE;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_set_BOD12_HYST_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg |= SUPC_BOD12_HYST;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline bool hri_supc_get_BOD12_HYST_bit(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD12.reg;
|
|
tmp = (tmp & SUPC_BOD12_HYST) >> SUPC_BOD12_HYST_Pos;
|
|
return (bool)tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BOD12_HYST_bit(const void *const hw, bool value)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->BOD12.reg;
|
|
tmp &= ~SUPC_BOD12_HYST;
|
|
tmp |= value << SUPC_BOD12_HYST_Pos;
|
|
((Supc *)hw)->BOD12.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BOD12_HYST_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg &= ~SUPC_BOD12_HYST;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BOD12_HYST_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg ^= SUPC_BOD12_HYST;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_set_BOD12_STDBYCFG_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg |= SUPC_BOD12_STDBYCFG;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline bool hri_supc_get_BOD12_STDBYCFG_bit(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD12.reg;
|
|
tmp = (tmp & SUPC_BOD12_STDBYCFG) >> SUPC_BOD12_STDBYCFG_Pos;
|
|
return (bool)tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BOD12_STDBYCFG_bit(const void *const hw, bool value)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->BOD12.reg;
|
|
tmp &= ~SUPC_BOD12_STDBYCFG;
|
|
tmp |= value << SUPC_BOD12_STDBYCFG_Pos;
|
|
((Supc *)hw)->BOD12.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BOD12_STDBYCFG_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg &= ~SUPC_BOD12_STDBYCFG;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BOD12_STDBYCFG_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg ^= SUPC_BOD12_STDBYCFG;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_set_BOD12_RUNSTDBY_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg |= SUPC_BOD12_RUNSTDBY;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline bool hri_supc_get_BOD12_RUNSTDBY_bit(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD12.reg;
|
|
tmp = (tmp & SUPC_BOD12_RUNSTDBY) >> SUPC_BOD12_RUNSTDBY_Pos;
|
|
return (bool)tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BOD12_RUNSTDBY_bit(const void *const hw, bool value)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->BOD12.reg;
|
|
tmp &= ~SUPC_BOD12_RUNSTDBY;
|
|
tmp |= value << SUPC_BOD12_RUNSTDBY_Pos;
|
|
((Supc *)hw)->BOD12.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BOD12_RUNSTDBY_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg &= ~SUPC_BOD12_RUNSTDBY;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BOD12_RUNSTDBY_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg ^= SUPC_BOD12_RUNSTDBY;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_set_BOD12_ACTCFG_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg |= SUPC_BOD12_ACTCFG;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline bool hri_supc_get_BOD12_ACTCFG_bit(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD12.reg;
|
|
tmp = (tmp & SUPC_BOD12_ACTCFG) >> SUPC_BOD12_ACTCFG_Pos;
|
|
return (bool)tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BOD12_ACTCFG_bit(const void *const hw, bool value)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->BOD12.reg;
|
|
tmp &= ~SUPC_BOD12_ACTCFG;
|
|
tmp |= value << SUPC_BOD12_ACTCFG_Pos;
|
|
((Supc *)hw)->BOD12.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BOD12_ACTCFG_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg &= ~SUPC_BOD12_ACTCFG;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BOD12_ACTCFG_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg ^= SUPC_BOD12_ACTCFG;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_set_BOD12_ACTION_bf(const void *const hw, hri_supc_bod12_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg |= SUPC_BOD12_ACTION(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bod12_reg_t hri_supc_get_BOD12_ACTION_bf(const void *const hw, hri_supc_bod12_reg_t mask)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD12.reg;
|
|
tmp = (tmp & SUPC_BOD12_ACTION(mask)) >> SUPC_BOD12_ACTION_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BOD12_ACTION_bf(const void *const hw, hri_supc_bod12_reg_t data)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->BOD12.reg;
|
|
tmp &= ~SUPC_BOD12_ACTION_Msk;
|
|
tmp |= SUPC_BOD12_ACTION(data);
|
|
((Supc *)hw)->BOD12.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BOD12_ACTION_bf(const void *const hw, hri_supc_bod12_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg &= ~SUPC_BOD12_ACTION(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BOD12_ACTION_bf(const void *const hw, hri_supc_bod12_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg ^= SUPC_BOD12_ACTION(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bod12_reg_t hri_supc_read_BOD12_ACTION_bf(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD12.reg;
|
|
tmp = (tmp & SUPC_BOD12_ACTION_Msk) >> SUPC_BOD12_ACTION_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_set_BOD12_PSEL_bf(const void *const hw, hri_supc_bod12_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg |= SUPC_BOD12_PSEL(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bod12_reg_t hri_supc_get_BOD12_PSEL_bf(const void *const hw, hri_supc_bod12_reg_t mask)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD12.reg;
|
|
tmp = (tmp & SUPC_BOD12_PSEL(mask)) >> SUPC_BOD12_PSEL_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BOD12_PSEL_bf(const void *const hw, hri_supc_bod12_reg_t data)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->BOD12.reg;
|
|
tmp &= ~SUPC_BOD12_PSEL_Msk;
|
|
tmp |= SUPC_BOD12_PSEL(data);
|
|
((Supc *)hw)->BOD12.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BOD12_PSEL_bf(const void *const hw, hri_supc_bod12_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg &= ~SUPC_BOD12_PSEL(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BOD12_PSEL_bf(const void *const hw, hri_supc_bod12_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg ^= SUPC_BOD12_PSEL(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bod12_reg_t hri_supc_read_BOD12_PSEL_bf(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD12.reg;
|
|
tmp = (tmp & SUPC_BOD12_PSEL_Msk) >> SUPC_BOD12_PSEL_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_set_BOD12_LEVEL_bf(const void *const hw, hri_supc_bod12_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg |= SUPC_BOD12_LEVEL(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bod12_reg_t hri_supc_get_BOD12_LEVEL_bf(const void *const hw, hri_supc_bod12_reg_t mask)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD12.reg;
|
|
tmp = (tmp & SUPC_BOD12_LEVEL(mask)) >> SUPC_BOD12_LEVEL_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BOD12_LEVEL_bf(const void *const hw, hri_supc_bod12_reg_t data)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->BOD12.reg;
|
|
tmp &= ~SUPC_BOD12_LEVEL_Msk;
|
|
tmp |= SUPC_BOD12_LEVEL(data);
|
|
((Supc *)hw)->BOD12.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BOD12_LEVEL_bf(const void *const hw, hri_supc_bod12_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg &= ~SUPC_BOD12_LEVEL(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BOD12_LEVEL_bf(const void *const hw, hri_supc_bod12_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg ^= SUPC_BOD12_LEVEL(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bod12_reg_t hri_supc_read_BOD12_LEVEL_bf(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD12.reg;
|
|
tmp = (tmp & SUPC_BOD12_LEVEL_Msk) >> SUPC_BOD12_LEVEL_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_set_BOD12_reg(const void *const hw, hri_supc_bod12_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg |= mask;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bod12_reg_t hri_supc_get_BOD12_reg(const void *const hw, hri_supc_bod12_reg_t mask)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BOD12.reg;
|
|
tmp &= mask;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BOD12_reg(const void *const hw, hri_supc_bod12_reg_t data)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg = data;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BOD12_reg(const void *const hw, hri_supc_bod12_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg &= ~mask;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BOD12_reg(const void *const hw, hri_supc_bod12_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BOD12.reg ^= mask;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bod12_reg_t hri_supc_read_BOD12_reg(const void *const hw)
|
|
{
|
|
return ((Supc *)hw)->BOD12.reg;
|
|
}
|
|
|
|
static inline void hri_supc_set_VREG_ENABLE_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREG.reg |= SUPC_VREG_ENABLE;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline bool hri_supc_get_VREG_ENABLE_bit(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->VREG.reg;
|
|
tmp = (tmp & SUPC_VREG_ENABLE) >> SUPC_VREG_ENABLE_Pos;
|
|
return (bool)tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_VREG_ENABLE_bit(const void *const hw, bool value)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->VREG.reg;
|
|
tmp &= ~SUPC_VREG_ENABLE;
|
|
tmp |= value << SUPC_VREG_ENABLE_Pos;
|
|
((Supc *)hw)->VREG.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_VREG_ENABLE_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREG.reg &= ~SUPC_VREG_ENABLE;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_VREG_ENABLE_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREG.reg ^= SUPC_VREG_ENABLE;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_set_VREG_STDBYPL0_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREG.reg |= SUPC_VREG_STDBYPL0;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline bool hri_supc_get_VREG_STDBYPL0_bit(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->VREG.reg;
|
|
tmp = (tmp & SUPC_VREG_STDBYPL0) >> SUPC_VREG_STDBYPL0_Pos;
|
|
return (bool)tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_VREG_STDBYPL0_bit(const void *const hw, bool value)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->VREG.reg;
|
|
tmp &= ~SUPC_VREG_STDBYPL0;
|
|
tmp |= value << SUPC_VREG_STDBYPL0_Pos;
|
|
((Supc *)hw)->VREG.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_VREG_STDBYPL0_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREG.reg &= ~SUPC_VREG_STDBYPL0;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_VREG_STDBYPL0_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREG.reg ^= SUPC_VREG_STDBYPL0;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_set_VREG_RUNSTDBY_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREG.reg |= SUPC_VREG_RUNSTDBY;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline bool hri_supc_get_VREG_RUNSTDBY_bit(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->VREG.reg;
|
|
tmp = (tmp & SUPC_VREG_RUNSTDBY) >> SUPC_VREG_RUNSTDBY_Pos;
|
|
return (bool)tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_VREG_RUNSTDBY_bit(const void *const hw, bool value)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->VREG.reg;
|
|
tmp &= ~SUPC_VREG_RUNSTDBY;
|
|
tmp |= value << SUPC_VREG_RUNSTDBY_Pos;
|
|
((Supc *)hw)->VREG.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_VREG_RUNSTDBY_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREG.reg &= ~SUPC_VREG_RUNSTDBY;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_VREG_RUNSTDBY_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREG.reg ^= SUPC_VREG_RUNSTDBY;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_set_VREG_LPEFF_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREG.reg |= SUPC_VREG_LPEFF;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline bool hri_supc_get_VREG_LPEFF_bit(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->VREG.reg;
|
|
tmp = (tmp & SUPC_VREG_LPEFF) >> SUPC_VREG_LPEFF_Pos;
|
|
return (bool)tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_VREG_LPEFF_bit(const void *const hw, bool value)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->VREG.reg;
|
|
tmp &= ~SUPC_VREG_LPEFF;
|
|
tmp |= value << SUPC_VREG_LPEFF_Pos;
|
|
((Supc *)hw)->VREG.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_VREG_LPEFF_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREG.reg &= ~SUPC_VREG_LPEFF;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_VREG_LPEFF_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREG.reg ^= SUPC_VREG_LPEFF;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_set_VREG_SEL_bf(const void *const hw, hri_supc_vreg_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREG.reg |= SUPC_VREG_SEL(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_vreg_reg_t hri_supc_get_VREG_SEL_bf(const void *const hw, hri_supc_vreg_reg_t mask)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->VREG.reg;
|
|
tmp = (tmp & SUPC_VREG_SEL(mask)) >> SUPC_VREG_SEL_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_VREG_SEL_bf(const void *const hw, hri_supc_vreg_reg_t data)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->VREG.reg;
|
|
tmp &= ~SUPC_VREG_SEL_Msk;
|
|
tmp |= SUPC_VREG_SEL(data);
|
|
((Supc *)hw)->VREG.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_VREG_SEL_bf(const void *const hw, hri_supc_vreg_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREG.reg &= ~SUPC_VREG_SEL(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_VREG_SEL_bf(const void *const hw, hri_supc_vreg_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREG.reg ^= SUPC_VREG_SEL(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_vreg_reg_t hri_supc_read_VREG_SEL_bf(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->VREG.reg;
|
|
tmp = (tmp & SUPC_VREG_SEL_Msk) >> SUPC_VREG_SEL_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_set_VREG_VSVSTEP_bf(const void *const hw, hri_supc_vreg_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREG.reg |= SUPC_VREG_VSVSTEP(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_vreg_reg_t hri_supc_get_VREG_VSVSTEP_bf(const void *const hw, hri_supc_vreg_reg_t mask)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->VREG.reg;
|
|
tmp = (tmp & SUPC_VREG_VSVSTEP(mask)) >> SUPC_VREG_VSVSTEP_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_VREG_VSVSTEP_bf(const void *const hw, hri_supc_vreg_reg_t data)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->VREG.reg;
|
|
tmp &= ~SUPC_VREG_VSVSTEP_Msk;
|
|
tmp |= SUPC_VREG_VSVSTEP(data);
|
|
((Supc *)hw)->VREG.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_VREG_VSVSTEP_bf(const void *const hw, hri_supc_vreg_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREG.reg &= ~SUPC_VREG_VSVSTEP(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_VREG_VSVSTEP_bf(const void *const hw, hri_supc_vreg_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREG.reg ^= SUPC_VREG_VSVSTEP(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_vreg_reg_t hri_supc_read_VREG_VSVSTEP_bf(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->VREG.reg;
|
|
tmp = (tmp & SUPC_VREG_VSVSTEP_Msk) >> SUPC_VREG_VSVSTEP_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_set_VREG_VSPER_bf(const void *const hw, hri_supc_vreg_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREG.reg |= SUPC_VREG_VSPER(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_vreg_reg_t hri_supc_get_VREG_VSPER_bf(const void *const hw, hri_supc_vreg_reg_t mask)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->VREG.reg;
|
|
tmp = (tmp & SUPC_VREG_VSPER(mask)) >> SUPC_VREG_VSPER_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_VREG_VSPER_bf(const void *const hw, hri_supc_vreg_reg_t data)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->VREG.reg;
|
|
tmp &= ~SUPC_VREG_VSPER_Msk;
|
|
tmp |= SUPC_VREG_VSPER(data);
|
|
((Supc *)hw)->VREG.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_VREG_VSPER_bf(const void *const hw, hri_supc_vreg_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREG.reg &= ~SUPC_VREG_VSPER(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_VREG_VSPER_bf(const void *const hw, hri_supc_vreg_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREG.reg ^= SUPC_VREG_VSPER(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_vreg_reg_t hri_supc_read_VREG_VSPER_bf(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->VREG.reg;
|
|
tmp = (tmp & SUPC_VREG_VSPER_Msk) >> SUPC_VREG_VSPER_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_set_VREG_reg(const void *const hw, hri_supc_vreg_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREG.reg |= mask;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_vreg_reg_t hri_supc_get_VREG_reg(const void *const hw, hri_supc_vreg_reg_t mask)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->VREG.reg;
|
|
tmp &= mask;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_VREG_reg(const void *const hw, hri_supc_vreg_reg_t data)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREG.reg = data;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_VREG_reg(const void *const hw, hri_supc_vreg_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREG.reg &= ~mask;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_VREG_reg(const void *const hw, hri_supc_vreg_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREG.reg ^= mask;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_vreg_reg_t hri_supc_read_VREG_reg(const void *const hw)
|
|
{
|
|
return ((Supc *)hw)->VREG.reg;
|
|
}
|
|
|
|
static inline void hri_supc_set_VREF_TSEN_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREF.reg |= SUPC_VREF_TSEN;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline bool hri_supc_get_VREF_TSEN_bit(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->VREF.reg;
|
|
tmp = (tmp & SUPC_VREF_TSEN) >> SUPC_VREF_TSEN_Pos;
|
|
return (bool)tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_VREF_TSEN_bit(const void *const hw, bool value)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->VREF.reg;
|
|
tmp &= ~SUPC_VREF_TSEN;
|
|
tmp |= value << SUPC_VREF_TSEN_Pos;
|
|
((Supc *)hw)->VREF.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_VREF_TSEN_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREF.reg &= ~SUPC_VREF_TSEN;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_VREF_TSEN_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREF.reg ^= SUPC_VREF_TSEN;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_set_VREF_VREFOE_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREF.reg |= SUPC_VREF_VREFOE;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline bool hri_supc_get_VREF_VREFOE_bit(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->VREF.reg;
|
|
tmp = (tmp & SUPC_VREF_VREFOE) >> SUPC_VREF_VREFOE_Pos;
|
|
return (bool)tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_VREF_VREFOE_bit(const void *const hw, bool value)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->VREF.reg;
|
|
tmp &= ~SUPC_VREF_VREFOE;
|
|
tmp |= value << SUPC_VREF_VREFOE_Pos;
|
|
((Supc *)hw)->VREF.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_VREF_VREFOE_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREF.reg &= ~SUPC_VREF_VREFOE;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_VREF_VREFOE_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREF.reg ^= SUPC_VREF_VREFOE;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_set_VREF_TSSEL_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREF.reg |= SUPC_VREF_TSSEL;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline bool hri_supc_get_VREF_TSSEL_bit(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->VREF.reg;
|
|
tmp = (tmp & SUPC_VREF_TSSEL) >> SUPC_VREF_TSSEL_Pos;
|
|
return (bool)tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_VREF_TSSEL_bit(const void *const hw, bool value)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->VREF.reg;
|
|
tmp &= ~SUPC_VREF_TSSEL;
|
|
tmp |= value << SUPC_VREF_TSSEL_Pos;
|
|
((Supc *)hw)->VREF.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_VREF_TSSEL_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREF.reg &= ~SUPC_VREF_TSSEL;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_VREF_TSSEL_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREF.reg ^= SUPC_VREF_TSSEL;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_set_VREF_RUNSTDBY_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREF.reg |= SUPC_VREF_RUNSTDBY;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline bool hri_supc_get_VREF_RUNSTDBY_bit(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->VREF.reg;
|
|
tmp = (tmp & SUPC_VREF_RUNSTDBY) >> SUPC_VREF_RUNSTDBY_Pos;
|
|
return (bool)tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_VREF_RUNSTDBY_bit(const void *const hw, bool value)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->VREF.reg;
|
|
tmp &= ~SUPC_VREF_RUNSTDBY;
|
|
tmp |= value << SUPC_VREF_RUNSTDBY_Pos;
|
|
((Supc *)hw)->VREF.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_VREF_RUNSTDBY_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREF.reg &= ~SUPC_VREF_RUNSTDBY;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_VREF_RUNSTDBY_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREF.reg ^= SUPC_VREF_RUNSTDBY;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_set_VREF_ONDEMAND_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREF.reg |= SUPC_VREF_ONDEMAND;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline bool hri_supc_get_VREF_ONDEMAND_bit(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->VREF.reg;
|
|
tmp = (tmp & SUPC_VREF_ONDEMAND) >> SUPC_VREF_ONDEMAND_Pos;
|
|
return (bool)tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_VREF_ONDEMAND_bit(const void *const hw, bool value)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->VREF.reg;
|
|
tmp &= ~SUPC_VREF_ONDEMAND;
|
|
tmp |= value << SUPC_VREF_ONDEMAND_Pos;
|
|
((Supc *)hw)->VREF.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_VREF_ONDEMAND_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREF.reg &= ~SUPC_VREF_ONDEMAND;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_VREF_ONDEMAND_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREF.reg ^= SUPC_VREF_ONDEMAND;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_set_VREF_SEL_bf(const void *const hw, hri_supc_vref_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREF.reg |= SUPC_VREF_SEL(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_vref_reg_t hri_supc_get_VREF_SEL_bf(const void *const hw, hri_supc_vref_reg_t mask)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->VREF.reg;
|
|
tmp = (tmp & SUPC_VREF_SEL(mask)) >> SUPC_VREF_SEL_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_VREF_SEL_bf(const void *const hw, hri_supc_vref_reg_t data)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->VREF.reg;
|
|
tmp &= ~SUPC_VREF_SEL_Msk;
|
|
tmp |= SUPC_VREF_SEL(data);
|
|
((Supc *)hw)->VREF.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_VREF_SEL_bf(const void *const hw, hri_supc_vref_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREF.reg &= ~SUPC_VREF_SEL(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_VREF_SEL_bf(const void *const hw, hri_supc_vref_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREF.reg ^= SUPC_VREF_SEL(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_vref_reg_t hri_supc_read_VREF_SEL_bf(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->VREF.reg;
|
|
tmp = (tmp & SUPC_VREF_SEL_Msk) >> SUPC_VREF_SEL_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_set_VREF_reg(const void *const hw, hri_supc_vref_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREF.reg |= mask;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_vref_reg_t hri_supc_get_VREF_reg(const void *const hw, hri_supc_vref_reg_t mask)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->VREF.reg;
|
|
tmp &= mask;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_VREF_reg(const void *const hw, hri_supc_vref_reg_t data)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREF.reg = data;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_VREF_reg(const void *const hw, hri_supc_vref_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREF.reg &= ~mask;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_VREF_reg(const void *const hw, hri_supc_vref_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->VREF.reg ^= mask;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_vref_reg_t hri_supc_read_VREF_reg(const void *const hw)
|
|
{
|
|
return ((Supc *)hw)->VREF.reg;
|
|
}
|
|
|
|
static inline void hri_supc_set_BBPS_WAKEEN_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BBPS.reg |= SUPC_BBPS_WAKEEN;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline bool hri_supc_get_BBPS_WAKEEN_bit(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BBPS.reg;
|
|
tmp = (tmp & SUPC_BBPS_WAKEEN) >> SUPC_BBPS_WAKEEN_Pos;
|
|
return (bool)tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BBPS_WAKEEN_bit(const void *const hw, bool value)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->BBPS.reg;
|
|
tmp &= ~SUPC_BBPS_WAKEEN;
|
|
tmp |= value << SUPC_BBPS_WAKEEN_Pos;
|
|
((Supc *)hw)->BBPS.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BBPS_WAKEEN_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BBPS.reg &= ~SUPC_BBPS_WAKEEN;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BBPS_WAKEEN_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BBPS.reg ^= SUPC_BBPS_WAKEEN;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_set_BBPS_PSOKEN_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BBPS.reg |= SUPC_BBPS_PSOKEN;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline bool hri_supc_get_BBPS_PSOKEN_bit(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BBPS.reg;
|
|
tmp = (tmp & SUPC_BBPS_PSOKEN) >> SUPC_BBPS_PSOKEN_Pos;
|
|
return (bool)tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BBPS_PSOKEN_bit(const void *const hw, bool value)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->BBPS.reg;
|
|
tmp &= ~SUPC_BBPS_PSOKEN;
|
|
tmp |= value << SUPC_BBPS_PSOKEN_Pos;
|
|
((Supc *)hw)->BBPS.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BBPS_PSOKEN_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BBPS.reg &= ~SUPC_BBPS_PSOKEN;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BBPS_PSOKEN_bit(const void *const hw)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BBPS.reg ^= SUPC_BBPS_PSOKEN;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_set_BBPS_CONF_bf(const void *const hw, hri_supc_bbps_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BBPS.reg |= SUPC_BBPS_CONF(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bbps_reg_t hri_supc_get_BBPS_CONF_bf(const void *const hw, hri_supc_bbps_reg_t mask)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BBPS.reg;
|
|
tmp = (tmp & SUPC_BBPS_CONF(mask)) >> SUPC_BBPS_CONF_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BBPS_CONF_bf(const void *const hw, hri_supc_bbps_reg_t data)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->BBPS.reg;
|
|
tmp &= ~SUPC_BBPS_CONF_Msk;
|
|
tmp |= SUPC_BBPS_CONF(data);
|
|
((Supc *)hw)->BBPS.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BBPS_CONF_bf(const void *const hw, hri_supc_bbps_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BBPS.reg &= ~SUPC_BBPS_CONF(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BBPS_CONF_bf(const void *const hw, hri_supc_bbps_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BBPS.reg ^= SUPC_BBPS_CONF(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bbps_reg_t hri_supc_read_BBPS_CONF_bf(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BBPS.reg;
|
|
tmp = (tmp & SUPC_BBPS_CONF_Msk) >> SUPC_BBPS_CONF_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_set_BBPS_reg(const void *const hw, hri_supc_bbps_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BBPS.reg |= mask;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bbps_reg_t hri_supc_get_BBPS_reg(const void *const hw, hri_supc_bbps_reg_t mask)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BBPS.reg;
|
|
tmp &= mask;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BBPS_reg(const void *const hw, hri_supc_bbps_reg_t data)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BBPS.reg = data;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BBPS_reg(const void *const hw, hri_supc_bbps_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BBPS.reg &= ~mask;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BBPS_reg(const void *const hw, hri_supc_bbps_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BBPS.reg ^= mask;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bbps_reg_t hri_supc_read_BBPS_reg(const void *const hw)
|
|
{
|
|
return ((Supc *)hw)->BBPS.reg;
|
|
}
|
|
|
|
static inline void hri_supc_set_BKOUT_EN_bf(const void *const hw, hri_supc_bkout_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BKOUT.reg |= SUPC_BKOUT_EN(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bkout_reg_t hri_supc_get_BKOUT_EN_bf(const void *const hw, hri_supc_bkout_reg_t mask)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BKOUT.reg;
|
|
tmp = (tmp & SUPC_BKOUT_EN(mask)) >> SUPC_BKOUT_EN_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BKOUT_EN_bf(const void *const hw, hri_supc_bkout_reg_t data)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->BKOUT.reg;
|
|
tmp &= ~SUPC_BKOUT_EN_Msk;
|
|
tmp |= SUPC_BKOUT_EN(data);
|
|
((Supc *)hw)->BKOUT.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BKOUT_EN_bf(const void *const hw, hri_supc_bkout_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BKOUT.reg &= ~SUPC_BKOUT_EN(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BKOUT_EN_bf(const void *const hw, hri_supc_bkout_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BKOUT.reg ^= SUPC_BKOUT_EN(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bkout_reg_t hri_supc_read_BKOUT_EN_bf(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BKOUT.reg;
|
|
tmp = (tmp & SUPC_BKOUT_EN_Msk) >> SUPC_BKOUT_EN_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_set_BKOUT_CLR_bf(const void *const hw, hri_supc_bkout_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BKOUT.reg |= SUPC_BKOUT_CLR(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bkout_reg_t hri_supc_get_BKOUT_CLR_bf(const void *const hw, hri_supc_bkout_reg_t mask)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BKOUT.reg;
|
|
tmp = (tmp & SUPC_BKOUT_CLR(mask)) >> SUPC_BKOUT_CLR_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BKOUT_CLR_bf(const void *const hw, hri_supc_bkout_reg_t data)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->BKOUT.reg;
|
|
tmp &= ~SUPC_BKOUT_CLR_Msk;
|
|
tmp |= SUPC_BKOUT_CLR(data);
|
|
((Supc *)hw)->BKOUT.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BKOUT_CLR_bf(const void *const hw, hri_supc_bkout_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BKOUT.reg &= ~SUPC_BKOUT_CLR(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BKOUT_CLR_bf(const void *const hw, hri_supc_bkout_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BKOUT.reg ^= SUPC_BKOUT_CLR(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bkout_reg_t hri_supc_read_BKOUT_CLR_bf(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BKOUT.reg;
|
|
tmp = (tmp & SUPC_BKOUT_CLR_Msk) >> SUPC_BKOUT_CLR_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_set_BKOUT_SET_bf(const void *const hw, hri_supc_bkout_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BKOUT.reg |= SUPC_BKOUT_SET(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bkout_reg_t hri_supc_get_BKOUT_SET_bf(const void *const hw, hri_supc_bkout_reg_t mask)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BKOUT.reg;
|
|
tmp = (tmp & SUPC_BKOUT_SET(mask)) >> SUPC_BKOUT_SET_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BKOUT_SET_bf(const void *const hw, hri_supc_bkout_reg_t data)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->BKOUT.reg;
|
|
tmp &= ~SUPC_BKOUT_SET_Msk;
|
|
tmp |= SUPC_BKOUT_SET(data);
|
|
((Supc *)hw)->BKOUT.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BKOUT_SET_bf(const void *const hw, hri_supc_bkout_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BKOUT.reg &= ~SUPC_BKOUT_SET(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BKOUT_SET_bf(const void *const hw, hri_supc_bkout_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BKOUT.reg ^= SUPC_BKOUT_SET(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bkout_reg_t hri_supc_read_BKOUT_SET_bf(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BKOUT.reg;
|
|
tmp = (tmp & SUPC_BKOUT_SET_Msk) >> SUPC_BKOUT_SET_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_set_BKOUT_RTCTGL_bf(const void *const hw, hri_supc_bkout_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BKOUT.reg |= SUPC_BKOUT_RTCTGL(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bkout_reg_t hri_supc_get_BKOUT_RTCTGL_bf(const void *const hw, hri_supc_bkout_reg_t mask)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BKOUT.reg;
|
|
tmp = (tmp & SUPC_BKOUT_RTCTGL(mask)) >> SUPC_BKOUT_RTCTGL_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BKOUT_RTCTGL_bf(const void *const hw, hri_supc_bkout_reg_t data)
|
|
{
|
|
uint32_t tmp;
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
tmp = ((Supc *)hw)->BKOUT.reg;
|
|
tmp &= ~SUPC_BKOUT_RTCTGL_Msk;
|
|
tmp |= SUPC_BKOUT_RTCTGL(data);
|
|
((Supc *)hw)->BKOUT.reg = tmp;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BKOUT_RTCTGL_bf(const void *const hw, hri_supc_bkout_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BKOUT.reg &= ~SUPC_BKOUT_RTCTGL(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BKOUT_RTCTGL_bf(const void *const hw, hri_supc_bkout_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BKOUT.reg ^= SUPC_BKOUT_RTCTGL(mask);
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bkout_reg_t hri_supc_read_BKOUT_RTCTGL_bf(const void *const hw)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BKOUT.reg;
|
|
tmp = (tmp & SUPC_BKOUT_RTCTGL_Msk) >> SUPC_BKOUT_RTCTGL_Pos;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_set_BKOUT_reg(const void *const hw, hri_supc_bkout_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BKOUT.reg |= mask;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bkout_reg_t hri_supc_get_BKOUT_reg(const void *const hw, hri_supc_bkout_reg_t mask)
|
|
{
|
|
uint32_t tmp;
|
|
tmp = ((Supc *)hw)->BKOUT.reg;
|
|
tmp &= mask;
|
|
return tmp;
|
|
}
|
|
|
|
static inline void hri_supc_write_BKOUT_reg(const void *const hw, hri_supc_bkout_reg_t data)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BKOUT.reg = data;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_clear_BKOUT_reg(const void *const hw, hri_supc_bkout_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BKOUT.reg &= ~mask;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline void hri_supc_toggle_BKOUT_reg(const void *const hw, hri_supc_bkout_reg_t mask)
|
|
{
|
|
SUPC_CRITICAL_SECTION_ENTER();
|
|
((Supc *)hw)->BKOUT.reg ^= mask;
|
|
SUPC_CRITICAL_SECTION_LEAVE();
|
|
}
|
|
|
|
static inline hri_supc_bkout_reg_t hri_supc_read_BKOUT_reg(const void *const hw)
|
|
{
|
|
return ((Supc *)hw)->BKOUT.reg;
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _HRI_SUPC_L22_H_INCLUDED */
|
|
#endif /* _SAML22_SUPC_COMPONENT_ */
|