You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

2543 lines
71 KiB
C

/**
* \file
*
* \brief SAM ADC
*
* 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 _SAMD21_ADC_COMPONENT_
#ifndef _HRI_ADC_D21_H_INCLUDED_
#define _HRI_ADC_D21_H_INCLUDED_
#ifdef __cplusplus
extern "C" {
#endif
#include <stdbool.h>
#include <hal_atomic.h>
#if defined(ENABLE_ADC_CRITICAL_SECTIONS)
#define ADC_CRITICAL_SECTION_ENTER() CRITICAL_SECTION_ENTER()
#define ADC_CRITICAL_SECTION_LEAVE() CRITICAL_SECTION_LEAVE()
#else
#define ADC_CRITICAL_SECTION_ENTER()
#define ADC_CRITICAL_SECTION_LEAVE()
#endif
typedef uint16_t hri_adc_calib_reg_t;
typedef uint16_t hri_adc_ctrlb_reg_t;
typedef uint16_t hri_adc_gaincorr_reg_t;
typedef uint16_t hri_adc_offsetcorr_reg_t;
typedef uint16_t hri_adc_result_reg_t;
typedef uint16_t hri_adc_winlt_reg_t;
typedef uint16_t hri_adc_winut_reg_t;
typedef uint32_t hri_adc_inputctrl_reg_t;
typedef uint8_t hri_adc_avgctrl_reg_t;
typedef uint8_t hri_adc_ctrla_reg_t;
typedef uint8_t hri_adc_dbgctrl_reg_t;
typedef uint8_t hri_adc_evctrl_reg_t;
typedef uint8_t hri_adc_intenset_reg_t;
typedef uint8_t hri_adc_intflag_reg_t;
typedef uint8_t hri_adc_refctrl_reg_t;
typedef uint8_t hri_adc_sampctrl_reg_t;
typedef uint8_t hri_adc_status_reg_t;
typedef uint8_t hri_adc_swtrig_reg_t;
typedef uint8_t hri_adc_winctrl_reg_t;
static inline void hri_adc_wait_for_sync(const void *const hw)
{
while (((const Adc *)hw)->STATUS.bit.SYNCBUSY)
;
}
static inline bool hri_adc_is_syncing(const void *const hw)
{
return ((const Adc *)hw)->STATUS.bit.SYNCBUSY;
}
static inline bool hri_adc_get_INTFLAG_RESRDY_bit(const void *const hw)
{
return (((Adc *)hw)->INTFLAG.reg & ADC_INTFLAG_RESRDY) >> ADC_INTFLAG_RESRDY_Pos;
}
static inline void hri_adc_clear_INTFLAG_RESRDY_bit(const void *const hw)
{
((Adc *)hw)->INTFLAG.reg = ADC_INTFLAG_RESRDY;
}
static inline bool hri_adc_get_INTFLAG_OVERRUN_bit(const void *const hw)
{
return (((Adc *)hw)->INTFLAG.reg & ADC_INTFLAG_OVERRUN) >> ADC_INTFLAG_OVERRUN_Pos;
}
static inline void hri_adc_clear_INTFLAG_OVERRUN_bit(const void *const hw)
{
((Adc *)hw)->INTFLAG.reg = ADC_INTFLAG_OVERRUN;
}
static inline bool hri_adc_get_INTFLAG_WINMON_bit(const void *const hw)
{
return (((Adc *)hw)->INTFLAG.reg & ADC_INTFLAG_WINMON) >> ADC_INTFLAG_WINMON_Pos;
}
static inline void hri_adc_clear_INTFLAG_WINMON_bit(const void *const hw)
{
((Adc *)hw)->INTFLAG.reg = ADC_INTFLAG_WINMON;
}
static inline bool hri_adc_get_INTFLAG_SYNCRDY_bit(const void *const hw)
{
return (((Adc *)hw)->INTFLAG.reg & ADC_INTFLAG_SYNCRDY) >> ADC_INTFLAG_SYNCRDY_Pos;
}
static inline void hri_adc_clear_INTFLAG_SYNCRDY_bit(const void *const hw)
{
((Adc *)hw)->INTFLAG.reg = ADC_INTFLAG_SYNCRDY;
}
static inline bool hri_adc_get_interrupt_RESRDY_bit(const void *const hw)
{
return (((Adc *)hw)->INTFLAG.reg & ADC_INTFLAG_RESRDY) >> ADC_INTFLAG_RESRDY_Pos;
}
static inline void hri_adc_clear_interrupt_RESRDY_bit(const void *const hw)
{
((Adc *)hw)->INTFLAG.reg = ADC_INTFLAG_RESRDY;
}
static inline bool hri_adc_get_interrupt_OVERRUN_bit(const void *const hw)
{
return (((Adc *)hw)->INTFLAG.reg & ADC_INTFLAG_OVERRUN) >> ADC_INTFLAG_OVERRUN_Pos;
}
static inline void hri_adc_clear_interrupt_OVERRUN_bit(const void *const hw)
{
((Adc *)hw)->INTFLAG.reg = ADC_INTFLAG_OVERRUN;
}
static inline bool hri_adc_get_interrupt_WINMON_bit(const void *const hw)
{
return (((Adc *)hw)->INTFLAG.reg & ADC_INTFLAG_WINMON) >> ADC_INTFLAG_WINMON_Pos;
}
static inline void hri_adc_clear_interrupt_WINMON_bit(const void *const hw)
{
((Adc *)hw)->INTFLAG.reg = ADC_INTFLAG_WINMON;
}
static inline bool hri_adc_get_interrupt_SYNCRDY_bit(const void *const hw)
{
return (((Adc *)hw)->INTFLAG.reg & ADC_INTFLAG_SYNCRDY) >> ADC_INTFLAG_SYNCRDY_Pos;
}
static inline void hri_adc_clear_interrupt_SYNCRDY_bit(const void *const hw)
{
((Adc *)hw)->INTFLAG.reg = ADC_INTFLAG_SYNCRDY;
}
static inline hri_adc_intflag_reg_t hri_adc_get_INTFLAG_reg(const void *const hw, hri_adc_intflag_reg_t mask)
{
uint8_t tmp;
tmp = ((Adc *)hw)->INTFLAG.reg;
tmp &= mask;
return tmp;
}
static inline hri_adc_intflag_reg_t hri_adc_read_INTFLAG_reg(const void *const hw)
{
return ((Adc *)hw)->INTFLAG.reg;
}
static inline void hri_adc_clear_INTFLAG_reg(const void *const hw, hri_adc_intflag_reg_t mask)
{
((Adc *)hw)->INTFLAG.reg = mask;
}
static inline void hri_adc_set_INTEN_RESRDY_bit(const void *const hw)
{
((Adc *)hw)->INTENSET.reg = ADC_INTENSET_RESRDY;
}
static inline bool hri_adc_get_INTEN_RESRDY_bit(const void *const hw)
{
return (((Adc *)hw)->INTENSET.reg & ADC_INTENSET_RESRDY) >> ADC_INTENSET_RESRDY_Pos;
}
static inline void hri_adc_write_INTEN_RESRDY_bit(const void *const hw, bool value)
{
if (value == 0x0) {
((Adc *)hw)->INTENCLR.reg = ADC_INTENSET_RESRDY;
} else {
((Adc *)hw)->INTENSET.reg = ADC_INTENSET_RESRDY;
}
}
static inline void hri_adc_clear_INTEN_RESRDY_bit(const void *const hw)
{
((Adc *)hw)->INTENCLR.reg = ADC_INTENSET_RESRDY;
}
static inline void hri_adc_set_INTEN_OVERRUN_bit(const void *const hw)
{
((Adc *)hw)->INTENSET.reg = ADC_INTENSET_OVERRUN;
}
static inline bool hri_adc_get_INTEN_OVERRUN_bit(const void *const hw)
{
return (((Adc *)hw)->INTENSET.reg & ADC_INTENSET_OVERRUN) >> ADC_INTENSET_OVERRUN_Pos;
}
static inline void hri_adc_write_INTEN_OVERRUN_bit(const void *const hw, bool value)
{
if (value == 0x0) {
((Adc *)hw)->INTENCLR.reg = ADC_INTENSET_OVERRUN;
} else {
((Adc *)hw)->INTENSET.reg = ADC_INTENSET_OVERRUN;
}
}
static inline void hri_adc_clear_INTEN_OVERRUN_bit(const void *const hw)
{
((Adc *)hw)->INTENCLR.reg = ADC_INTENSET_OVERRUN;
}
static inline void hri_adc_set_INTEN_WINMON_bit(const void *const hw)
{
((Adc *)hw)->INTENSET.reg = ADC_INTENSET_WINMON;
}
static inline bool hri_adc_get_INTEN_WINMON_bit(const void *const hw)
{
return (((Adc *)hw)->INTENSET.reg & ADC_INTENSET_WINMON) >> ADC_INTENSET_WINMON_Pos;
}
static inline void hri_adc_write_INTEN_WINMON_bit(const void *const hw, bool value)
{
if (value == 0x0) {
((Adc *)hw)->INTENCLR.reg = ADC_INTENSET_WINMON;
} else {
((Adc *)hw)->INTENSET.reg = ADC_INTENSET_WINMON;
}
}
static inline void hri_adc_clear_INTEN_WINMON_bit(const void *const hw)
{
((Adc *)hw)->INTENCLR.reg = ADC_INTENSET_WINMON;
}
static inline void hri_adc_set_INTEN_SYNCRDY_bit(const void *const hw)
{
((Adc *)hw)->INTENSET.reg = ADC_INTENSET_SYNCRDY;
}
static inline bool hri_adc_get_INTEN_SYNCRDY_bit(const void *const hw)
{
return (((Adc *)hw)->INTENSET.reg & ADC_INTENSET_SYNCRDY) >> ADC_INTENSET_SYNCRDY_Pos;
}
static inline void hri_adc_write_INTEN_SYNCRDY_bit(const void *const hw, bool value)
{
if (value == 0x0) {
((Adc *)hw)->INTENCLR.reg = ADC_INTENSET_SYNCRDY;
} else {
((Adc *)hw)->INTENSET.reg = ADC_INTENSET_SYNCRDY;
}
}
static inline void hri_adc_clear_INTEN_SYNCRDY_bit(const void *const hw)
{
((Adc *)hw)->INTENCLR.reg = ADC_INTENSET_SYNCRDY;
}
static inline void hri_adc_set_INTEN_reg(const void *const hw, hri_adc_intenset_reg_t mask)
{
((Adc *)hw)->INTENSET.reg = mask;
}
static inline hri_adc_intenset_reg_t hri_adc_get_INTEN_reg(const void *const hw, hri_adc_intenset_reg_t mask)
{
uint8_t tmp;
tmp = ((Adc *)hw)->INTENSET.reg;
tmp &= mask;
return tmp;
}
static inline hri_adc_intenset_reg_t hri_adc_read_INTEN_reg(const void *const hw)
{
return ((Adc *)hw)->INTENSET.reg;
}
static inline void hri_adc_write_INTEN_reg(const void *const hw, hri_adc_intenset_reg_t data)
{
((Adc *)hw)->INTENSET.reg = data;
((Adc *)hw)->INTENCLR.reg = ~data;
}
static inline void hri_adc_clear_INTEN_reg(const void *const hw, hri_adc_intenset_reg_t mask)
{
((Adc *)hw)->INTENCLR.reg = mask;
}
static inline bool hri_adc_get_STATUS_SYNCBUSY_bit(const void *const hw)
{
return (((Adc *)hw)->STATUS.reg & ADC_STATUS_SYNCBUSY) >> ADC_STATUS_SYNCBUSY_Pos;
}
static inline hri_adc_status_reg_t hri_adc_get_STATUS_reg(const void *const hw, hri_adc_status_reg_t mask)
{
uint8_t tmp;
tmp = ((Adc *)hw)->STATUS.reg;
tmp &= mask;
return tmp;
}
static inline hri_adc_status_reg_t hri_adc_read_STATUS_reg(const void *const hw)
{
return ((Adc *)hw)->STATUS.reg;
}
static inline hri_adc_result_reg_t hri_adc_get_RESULT_RESULT_bf(const void *const hw, hri_adc_result_reg_t mask)
{
hri_adc_wait_for_sync(hw);
return (((Adc *)hw)->RESULT.reg & ADC_RESULT_RESULT(mask)) >> ADC_RESULT_RESULT_Pos;
}
static inline hri_adc_result_reg_t hri_adc_read_RESULT_RESULT_bf(const void *const hw)
{
hri_adc_wait_for_sync(hw);
return (((Adc *)hw)->RESULT.reg & ADC_RESULT_RESULT_Msk) >> ADC_RESULT_RESULT_Pos;
}
static inline hri_adc_result_reg_t hri_adc_get_RESULT_reg(const void *const hw, hri_adc_result_reg_t mask)
{
uint16_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->RESULT.reg;
tmp &= mask;
return tmp;
}
static inline hri_adc_result_reg_t hri_adc_read_RESULT_reg(const void *const hw)
{
hri_adc_wait_for_sync(hw);
return ((Adc *)hw)->RESULT.reg;
}
static inline void hri_adc_set_CTRLA_SWRST_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLA.reg |= ADC_CTRLA_SWRST;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline bool hri_adc_get_CTRLA_SWRST_bit(const void *const hw)
{
uint8_t tmp;
tmp = ((Adc *)hw)->CTRLA.reg;
tmp = (tmp & ADC_CTRLA_SWRST) >> ADC_CTRLA_SWRST_Pos;
return (bool)tmp;
}
static inline void hri_adc_set_CTRLA_ENABLE_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLA.reg |= ADC_CTRLA_ENABLE;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline bool hri_adc_get_CTRLA_ENABLE_bit(const void *const hw)
{
uint8_t tmp;
tmp = ((Adc *)hw)->CTRLA.reg;
tmp = (tmp & ADC_CTRLA_ENABLE) >> ADC_CTRLA_ENABLE_Pos;
return (bool)tmp;
}
static inline void hri_adc_write_CTRLA_ENABLE_bit(const void *const hw, bool value)
{
uint8_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->CTRLA.reg;
tmp &= ~ADC_CTRLA_ENABLE;
tmp |= value << ADC_CTRLA_ENABLE_Pos;
((Adc *)hw)->CTRLA.reg = tmp;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_CTRLA_ENABLE_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLA.reg &= ~ADC_CTRLA_ENABLE;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_CTRLA_ENABLE_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLA.reg ^= ADC_CTRLA_ENABLE;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_set_CTRLA_RUNSTDBY_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLA.reg |= ADC_CTRLA_RUNSTDBY;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline bool hri_adc_get_CTRLA_RUNSTDBY_bit(const void *const hw)
{
uint8_t tmp;
tmp = ((Adc *)hw)->CTRLA.reg;
tmp = (tmp & ADC_CTRLA_RUNSTDBY) >> ADC_CTRLA_RUNSTDBY_Pos;
return (bool)tmp;
}
static inline void hri_adc_write_CTRLA_RUNSTDBY_bit(const void *const hw, bool value)
{
uint8_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->CTRLA.reg;
tmp &= ~ADC_CTRLA_RUNSTDBY;
tmp |= value << ADC_CTRLA_RUNSTDBY_Pos;
((Adc *)hw)->CTRLA.reg = tmp;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_CTRLA_RUNSTDBY_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLA.reg &= ~ADC_CTRLA_RUNSTDBY;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_CTRLA_RUNSTDBY_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLA.reg ^= ADC_CTRLA_RUNSTDBY;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_set_CTRLA_reg(const void *const hw, hri_adc_ctrla_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLA.reg |= mask;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_ctrla_reg_t hri_adc_get_CTRLA_reg(const void *const hw, hri_adc_ctrla_reg_t mask)
{
uint8_t tmp;
tmp = ((Adc *)hw)->CTRLA.reg;
tmp &= mask;
return tmp;
}
static inline void hri_adc_write_CTRLA_reg(const void *const hw, hri_adc_ctrla_reg_t data)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLA.reg = data;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_CTRLA_reg(const void *const hw, hri_adc_ctrla_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLA.reg &= ~mask;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_CTRLA_reg(const void *const hw, hri_adc_ctrla_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLA.reg ^= mask;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_ctrla_reg_t hri_adc_read_CTRLA_reg(const void *const hw)
{
return ((Adc *)hw)->CTRLA.reg;
}
static inline void hri_adc_set_REFCTRL_REFCOMP_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->REFCTRL.reg |= ADC_REFCTRL_REFCOMP;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline bool hri_adc_get_REFCTRL_REFCOMP_bit(const void *const hw)
{
uint8_t tmp;
tmp = ((Adc *)hw)->REFCTRL.reg;
tmp = (tmp & ADC_REFCTRL_REFCOMP) >> ADC_REFCTRL_REFCOMP_Pos;
return (bool)tmp;
}
static inline void hri_adc_write_REFCTRL_REFCOMP_bit(const void *const hw, bool value)
{
uint8_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->REFCTRL.reg;
tmp &= ~ADC_REFCTRL_REFCOMP;
tmp |= value << ADC_REFCTRL_REFCOMP_Pos;
((Adc *)hw)->REFCTRL.reg = tmp;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_REFCTRL_REFCOMP_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->REFCTRL.reg &= ~ADC_REFCTRL_REFCOMP;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_REFCTRL_REFCOMP_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->REFCTRL.reg ^= ADC_REFCTRL_REFCOMP;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_set_REFCTRL_REFSEL_bf(const void *const hw, hri_adc_refctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->REFCTRL.reg |= ADC_REFCTRL_REFSEL(mask);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_refctrl_reg_t hri_adc_get_REFCTRL_REFSEL_bf(const void *const hw, hri_adc_refctrl_reg_t mask)
{
uint8_t tmp;
tmp = ((Adc *)hw)->REFCTRL.reg;
tmp = (tmp & ADC_REFCTRL_REFSEL(mask)) >> ADC_REFCTRL_REFSEL_Pos;
return tmp;
}
static inline void hri_adc_write_REFCTRL_REFSEL_bf(const void *const hw, hri_adc_refctrl_reg_t data)
{
uint8_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->REFCTRL.reg;
tmp &= ~ADC_REFCTRL_REFSEL_Msk;
tmp |= ADC_REFCTRL_REFSEL(data);
((Adc *)hw)->REFCTRL.reg = tmp;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_REFCTRL_REFSEL_bf(const void *const hw, hri_adc_refctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->REFCTRL.reg &= ~ADC_REFCTRL_REFSEL(mask);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_REFCTRL_REFSEL_bf(const void *const hw, hri_adc_refctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->REFCTRL.reg ^= ADC_REFCTRL_REFSEL(mask);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_refctrl_reg_t hri_adc_read_REFCTRL_REFSEL_bf(const void *const hw)
{
uint8_t tmp;
tmp = ((Adc *)hw)->REFCTRL.reg;
tmp = (tmp & ADC_REFCTRL_REFSEL_Msk) >> ADC_REFCTRL_REFSEL_Pos;
return tmp;
}
static inline void hri_adc_set_REFCTRL_reg(const void *const hw, hri_adc_refctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->REFCTRL.reg |= mask;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_refctrl_reg_t hri_adc_get_REFCTRL_reg(const void *const hw, hri_adc_refctrl_reg_t mask)
{
uint8_t tmp;
tmp = ((Adc *)hw)->REFCTRL.reg;
tmp &= mask;
return tmp;
}
static inline void hri_adc_write_REFCTRL_reg(const void *const hw, hri_adc_refctrl_reg_t data)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->REFCTRL.reg = data;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_REFCTRL_reg(const void *const hw, hri_adc_refctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->REFCTRL.reg &= ~mask;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_REFCTRL_reg(const void *const hw, hri_adc_refctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->REFCTRL.reg ^= mask;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_refctrl_reg_t hri_adc_read_REFCTRL_reg(const void *const hw)
{
return ((Adc *)hw)->REFCTRL.reg;
}
static inline void hri_adc_set_AVGCTRL_SAMPLENUM_bf(const void *const hw, hri_adc_avgctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->AVGCTRL.reg |= ADC_AVGCTRL_SAMPLENUM(mask);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_avgctrl_reg_t hri_adc_get_AVGCTRL_SAMPLENUM_bf(const void *const hw, hri_adc_avgctrl_reg_t mask)
{
uint8_t tmp;
tmp = ((Adc *)hw)->AVGCTRL.reg;
tmp = (tmp & ADC_AVGCTRL_SAMPLENUM(mask)) >> ADC_AVGCTRL_SAMPLENUM_Pos;
return tmp;
}
static inline void hri_adc_write_AVGCTRL_SAMPLENUM_bf(const void *const hw, hri_adc_avgctrl_reg_t data)
{
uint8_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->AVGCTRL.reg;
tmp &= ~ADC_AVGCTRL_SAMPLENUM_Msk;
tmp |= ADC_AVGCTRL_SAMPLENUM(data);
((Adc *)hw)->AVGCTRL.reg = tmp;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_AVGCTRL_SAMPLENUM_bf(const void *const hw, hri_adc_avgctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->AVGCTRL.reg &= ~ADC_AVGCTRL_SAMPLENUM(mask);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_AVGCTRL_SAMPLENUM_bf(const void *const hw, hri_adc_avgctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->AVGCTRL.reg ^= ADC_AVGCTRL_SAMPLENUM(mask);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_avgctrl_reg_t hri_adc_read_AVGCTRL_SAMPLENUM_bf(const void *const hw)
{
uint8_t tmp;
tmp = ((Adc *)hw)->AVGCTRL.reg;
tmp = (tmp & ADC_AVGCTRL_SAMPLENUM_Msk) >> ADC_AVGCTRL_SAMPLENUM_Pos;
return tmp;
}
static inline void hri_adc_set_AVGCTRL_ADJRES_bf(const void *const hw, hri_adc_avgctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->AVGCTRL.reg |= ADC_AVGCTRL_ADJRES(mask);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_avgctrl_reg_t hri_adc_get_AVGCTRL_ADJRES_bf(const void *const hw, hri_adc_avgctrl_reg_t mask)
{
uint8_t tmp;
tmp = ((Adc *)hw)->AVGCTRL.reg;
tmp = (tmp & ADC_AVGCTRL_ADJRES(mask)) >> ADC_AVGCTRL_ADJRES_Pos;
return tmp;
}
static inline void hri_adc_write_AVGCTRL_ADJRES_bf(const void *const hw, hri_adc_avgctrl_reg_t data)
{
uint8_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->AVGCTRL.reg;
tmp &= ~ADC_AVGCTRL_ADJRES_Msk;
tmp |= ADC_AVGCTRL_ADJRES(data);
((Adc *)hw)->AVGCTRL.reg = tmp;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_AVGCTRL_ADJRES_bf(const void *const hw, hri_adc_avgctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->AVGCTRL.reg &= ~ADC_AVGCTRL_ADJRES(mask);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_AVGCTRL_ADJRES_bf(const void *const hw, hri_adc_avgctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->AVGCTRL.reg ^= ADC_AVGCTRL_ADJRES(mask);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_avgctrl_reg_t hri_adc_read_AVGCTRL_ADJRES_bf(const void *const hw)
{
uint8_t tmp;
tmp = ((Adc *)hw)->AVGCTRL.reg;
tmp = (tmp & ADC_AVGCTRL_ADJRES_Msk) >> ADC_AVGCTRL_ADJRES_Pos;
return tmp;
}
static inline void hri_adc_set_AVGCTRL_reg(const void *const hw, hri_adc_avgctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->AVGCTRL.reg |= mask;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_avgctrl_reg_t hri_adc_get_AVGCTRL_reg(const void *const hw, hri_adc_avgctrl_reg_t mask)
{
uint8_t tmp;
tmp = ((Adc *)hw)->AVGCTRL.reg;
tmp &= mask;
return tmp;
}
static inline void hri_adc_write_AVGCTRL_reg(const void *const hw, hri_adc_avgctrl_reg_t data)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->AVGCTRL.reg = data;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_AVGCTRL_reg(const void *const hw, hri_adc_avgctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->AVGCTRL.reg &= ~mask;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_AVGCTRL_reg(const void *const hw, hri_adc_avgctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->AVGCTRL.reg ^= mask;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_avgctrl_reg_t hri_adc_read_AVGCTRL_reg(const void *const hw)
{
return ((Adc *)hw)->AVGCTRL.reg;
}
static inline void hri_adc_set_SAMPCTRL_SAMPLEN_bf(const void *const hw, hri_adc_sampctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->SAMPCTRL.reg |= ADC_SAMPCTRL_SAMPLEN(mask);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_sampctrl_reg_t hri_adc_get_SAMPCTRL_SAMPLEN_bf(const void *const hw, hri_adc_sampctrl_reg_t mask)
{
uint8_t tmp;
tmp = ((Adc *)hw)->SAMPCTRL.reg;
tmp = (tmp & ADC_SAMPCTRL_SAMPLEN(mask)) >> ADC_SAMPCTRL_SAMPLEN_Pos;
return tmp;
}
static inline void hri_adc_write_SAMPCTRL_SAMPLEN_bf(const void *const hw, hri_adc_sampctrl_reg_t data)
{
uint8_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->SAMPCTRL.reg;
tmp &= ~ADC_SAMPCTRL_SAMPLEN_Msk;
tmp |= ADC_SAMPCTRL_SAMPLEN(data);
((Adc *)hw)->SAMPCTRL.reg = tmp;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_SAMPCTRL_SAMPLEN_bf(const void *const hw, hri_adc_sampctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->SAMPCTRL.reg &= ~ADC_SAMPCTRL_SAMPLEN(mask);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_SAMPCTRL_SAMPLEN_bf(const void *const hw, hri_adc_sampctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->SAMPCTRL.reg ^= ADC_SAMPCTRL_SAMPLEN(mask);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_sampctrl_reg_t hri_adc_read_SAMPCTRL_SAMPLEN_bf(const void *const hw)
{
uint8_t tmp;
tmp = ((Adc *)hw)->SAMPCTRL.reg;
tmp = (tmp & ADC_SAMPCTRL_SAMPLEN_Msk) >> ADC_SAMPCTRL_SAMPLEN_Pos;
return tmp;
}
static inline void hri_adc_set_SAMPCTRL_reg(const void *const hw, hri_adc_sampctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->SAMPCTRL.reg |= mask;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_sampctrl_reg_t hri_adc_get_SAMPCTRL_reg(const void *const hw, hri_adc_sampctrl_reg_t mask)
{
uint8_t tmp;
tmp = ((Adc *)hw)->SAMPCTRL.reg;
tmp &= mask;
return tmp;
}
static inline void hri_adc_write_SAMPCTRL_reg(const void *const hw, hri_adc_sampctrl_reg_t data)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->SAMPCTRL.reg = data;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_SAMPCTRL_reg(const void *const hw, hri_adc_sampctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->SAMPCTRL.reg &= ~mask;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_SAMPCTRL_reg(const void *const hw, hri_adc_sampctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->SAMPCTRL.reg ^= mask;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_sampctrl_reg_t hri_adc_read_SAMPCTRL_reg(const void *const hw)
{
return ((Adc *)hw)->SAMPCTRL.reg;
}
static inline void hri_adc_set_CTRLB_DIFFMODE_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLB.reg |= ADC_CTRLB_DIFFMODE;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline bool hri_adc_get_CTRLB_DIFFMODE_bit(const void *const hw)
{
uint16_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->CTRLB.reg;
tmp = (tmp & ADC_CTRLB_DIFFMODE) >> ADC_CTRLB_DIFFMODE_Pos;
return (bool)tmp;
}
static inline void hri_adc_write_CTRLB_DIFFMODE_bit(const void *const hw, bool value)
{
uint16_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->CTRLB.reg;
tmp &= ~ADC_CTRLB_DIFFMODE;
tmp |= value << ADC_CTRLB_DIFFMODE_Pos;
((Adc *)hw)->CTRLB.reg = tmp;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_CTRLB_DIFFMODE_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLB.reg &= ~ADC_CTRLB_DIFFMODE;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_CTRLB_DIFFMODE_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLB.reg ^= ADC_CTRLB_DIFFMODE;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_set_CTRLB_LEFTADJ_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLB.reg |= ADC_CTRLB_LEFTADJ;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline bool hri_adc_get_CTRLB_LEFTADJ_bit(const void *const hw)
{
uint16_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->CTRLB.reg;
tmp = (tmp & ADC_CTRLB_LEFTADJ) >> ADC_CTRLB_LEFTADJ_Pos;
return (bool)tmp;
}
static inline void hri_adc_write_CTRLB_LEFTADJ_bit(const void *const hw, bool value)
{
uint16_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->CTRLB.reg;
tmp &= ~ADC_CTRLB_LEFTADJ;
tmp |= value << ADC_CTRLB_LEFTADJ_Pos;
((Adc *)hw)->CTRLB.reg = tmp;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_CTRLB_LEFTADJ_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLB.reg &= ~ADC_CTRLB_LEFTADJ;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_CTRLB_LEFTADJ_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLB.reg ^= ADC_CTRLB_LEFTADJ;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_set_CTRLB_FREERUN_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLB.reg |= ADC_CTRLB_FREERUN;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline bool hri_adc_get_CTRLB_FREERUN_bit(const void *const hw)
{
uint16_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->CTRLB.reg;
tmp = (tmp & ADC_CTRLB_FREERUN) >> ADC_CTRLB_FREERUN_Pos;
return (bool)tmp;
}
static inline void hri_adc_write_CTRLB_FREERUN_bit(const void *const hw, bool value)
{
uint16_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->CTRLB.reg;
tmp &= ~ADC_CTRLB_FREERUN;
tmp |= value << ADC_CTRLB_FREERUN_Pos;
((Adc *)hw)->CTRLB.reg = tmp;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_CTRLB_FREERUN_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLB.reg &= ~ADC_CTRLB_FREERUN;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_CTRLB_FREERUN_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLB.reg ^= ADC_CTRLB_FREERUN;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_set_CTRLB_CORREN_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLB.reg |= ADC_CTRLB_CORREN;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline bool hri_adc_get_CTRLB_CORREN_bit(const void *const hw)
{
uint16_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->CTRLB.reg;
tmp = (tmp & ADC_CTRLB_CORREN) >> ADC_CTRLB_CORREN_Pos;
return (bool)tmp;
}
static inline void hri_adc_write_CTRLB_CORREN_bit(const void *const hw, bool value)
{
uint16_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->CTRLB.reg;
tmp &= ~ADC_CTRLB_CORREN;
tmp |= value << ADC_CTRLB_CORREN_Pos;
((Adc *)hw)->CTRLB.reg = tmp;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_CTRLB_CORREN_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLB.reg &= ~ADC_CTRLB_CORREN;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_CTRLB_CORREN_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLB.reg ^= ADC_CTRLB_CORREN;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_set_CTRLB_RESSEL_bf(const void *const hw, hri_adc_ctrlb_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLB.reg |= ADC_CTRLB_RESSEL(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_ctrlb_reg_t hri_adc_get_CTRLB_RESSEL_bf(const void *const hw, hri_adc_ctrlb_reg_t mask)
{
uint16_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->CTRLB.reg;
tmp = (tmp & ADC_CTRLB_RESSEL(mask)) >> ADC_CTRLB_RESSEL_Pos;
return tmp;
}
static inline void hri_adc_write_CTRLB_RESSEL_bf(const void *const hw, hri_adc_ctrlb_reg_t data)
{
uint16_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->CTRLB.reg;
tmp &= ~ADC_CTRLB_RESSEL_Msk;
tmp |= ADC_CTRLB_RESSEL(data);
((Adc *)hw)->CTRLB.reg = tmp;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_CTRLB_RESSEL_bf(const void *const hw, hri_adc_ctrlb_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLB.reg &= ~ADC_CTRLB_RESSEL(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_CTRLB_RESSEL_bf(const void *const hw, hri_adc_ctrlb_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLB.reg ^= ADC_CTRLB_RESSEL(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_ctrlb_reg_t hri_adc_read_CTRLB_RESSEL_bf(const void *const hw)
{
uint16_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->CTRLB.reg;
tmp = (tmp & ADC_CTRLB_RESSEL_Msk) >> ADC_CTRLB_RESSEL_Pos;
return tmp;
}
static inline void hri_adc_set_CTRLB_PRESCALER_bf(const void *const hw, hri_adc_ctrlb_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLB.reg |= ADC_CTRLB_PRESCALER(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_ctrlb_reg_t hri_adc_get_CTRLB_PRESCALER_bf(const void *const hw, hri_adc_ctrlb_reg_t mask)
{
uint16_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->CTRLB.reg;
tmp = (tmp & ADC_CTRLB_PRESCALER(mask)) >> ADC_CTRLB_PRESCALER_Pos;
return tmp;
}
static inline void hri_adc_write_CTRLB_PRESCALER_bf(const void *const hw, hri_adc_ctrlb_reg_t data)
{
uint16_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->CTRLB.reg;
tmp &= ~ADC_CTRLB_PRESCALER_Msk;
tmp |= ADC_CTRLB_PRESCALER(data);
((Adc *)hw)->CTRLB.reg = tmp;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_CTRLB_PRESCALER_bf(const void *const hw, hri_adc_ctrlb_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLB.reg &= ~ADC_CTRLB_PRESCALER(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_CTRLB_PRESCALER_bf(const void *const hw, hri_adc_ctrlb_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLB.reg ^= ADC_CTRLB_PRESCALER(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_ctrlb_reg_t hri_adc_read_CTRLB_PRESCALER_bf(const void *const hw)
{
uint16_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->CTRLB.reg;
tmp = (tmp & ADC_CTRLB_PRESCALER_Msk) >> ADC_CTRLB_PRESCALER_Pos;
return tmp;
}
static inline void hri_adc_set_CTRLB_reg(const void *const hw, hri_adc_ctrlb_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLB.reg |= mask;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_ctrlb_reg_t hri_adc_get_CTRLB_reg(const void *const hw, hri_adc_ctrlb_reg_t mask)
{
uint16_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->CTRLB.reg;
tmp &= mask;
return tmp;
}
static inline void hri_adc_write_CTRLB_reg(const void *const hw, hri_adc_ctrlb_reg_t data)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLB.reg = data;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_CTRLB_reg(const void *const hw, hri_adc_ctrlb_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLB.reg &= ~mask;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_CTRLB_reg(const void *const hw, hri_adc_ctrlb_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CTRLB.reg ^= mask;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_ctrlb_reg_t hri_adc_read_CTRLB_reg(const void *const hw)
{
hri_adc_wait_for_sync(hw);
return ((Adc *)hw)->CTRLB.reg;
}
static inline void hri_adc_set_WINCTRL_WINMODE_bf(const void *const hw, hri_adc_winctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->WINCTRL.reg |= ADC_WINCTRL_WINMODE(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_winctrl_reg_t hri_adc_get_WINCTRL_WINMODE_bf(const void *const hw, hri_adc_winctrl_reg_t mask)
{
uint8_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->WINCTRL.reg;
tmp = (tmp & ADC_WINCTRL_WINMODE(mask)) >> ADC_WINCTRL_WINMODE_Pos;
return tmp;
}
static inline void hri_adc_write_WINCTRL_WINMODE_bf(const void *const hw, hri_adc_winctrl_reg_t data)
{
uint8_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->WINCTRL.reg;
tmp &= ~ADC_WINCTRL_WINMODE_Msk;
tmp |= ADC_WINCTRL_WINMODE(data);
((Adc *)hw)->WINCTRL.reg = tmp;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_WINCTRL_WINMODE_bf(const void *const hw, hri_adc_winctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->WINCTRL.reg &= ~ADC_WINCTRL_WINMODE(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_WINCTRL_WINMODE_bf(const void *const hw, hri_adc_winctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->WINCTRL.reg ^= ADC_WINCTRL_WINMODE(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_winctrl_reg_t hri_adc_read_WINCTRL_WINMODE_bf(const void *const hw)
{
uint8_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->WINCTRL.reg;
tmp = (tmp & ADC_WINCTRL_WINMODE_Msk) >> ADC_WINCTRL_WINMODE_Pos;
return tmp;
}
static inline void hri_adc_set_WINCTRL_reg(const void *const hw, hri_adc_winctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->WINCTRL.reg |= mask;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_winctrl_reg_t hri_adc_get_WINCTRL_reg(const void *const hw, hri_adc_winctrl_reg_t mask)
{
uint8_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->WINCTRL.reg;
tmp &= mask;
return tmp;
}
static inline void hri_adc_write_WINCTRL_reg(const void *const hw, hri_adc_winctrl_reg_t data)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->WINCTRL.reg = data;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_WINCTRL_reg(const void *const hw, hri_adc_winctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->WINCTRL.reg &= ~mask;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_WINCTRL_reg(const void *const hw, hri_adc_winctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->WINCTRL.reg ^= mask;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_winctrl_reg_t hri_adc_read_WINCTRL_reg(const void *const hw)
{
hri_adc_wait_for_sync(hw);
return ((Adc *)hw)->WINCTRL.reg;
}
static inline void hri_adc_set_SWTRIG_FLUSH_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->SWTRIG.reg |= ADC_SWTRIG_FLUSH;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline bool hri_adc_get_SWTRIG_FLUSH_bit(const void *const hw)
{
uint8_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->SWTRIG.reg;
tmp = (tmp & ADC_SWTRIG_FLUSH) >> ADC_SWTRIG_FLUSH_Pos;
return (bool)tmp;
}
static inline void hri_adc_write_SWTRIG_FLUSH_bit(const void *const hw, bool value)
{
uint8_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->SWTRIG.reg;
tmp &= ~ADC_SWTRIG_FLUSH;
tmp |= value << ADC_SWTRIG_FLUSH_Pos;
((Adc *)hw)->SWTRIG.reg = tmp;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_SWTRIG_FLUSH_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->SWTRIG.reg &= ~ADC_SWTRIG_FLUSH;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_SWTRIG_FLUSH_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->SWTRIG.reg ^= ADC_SWTRIG_FLUSH;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_set_SWTRIG_START_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->SWTRIG.reg |= ADC_SWTRIG_START;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline bool hri_adc_get_SWTRIG_START_bit(const void *const hw)
{
uint8_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->SWTRIG.reg;
tmp = (tmp & ADC_SWTRIG_START) >> ADC_SWTRIG_START_Pos;
return (bool)tmp;
}
static inline void hri_adc_write_SWTRIG_START_bit(const void *const hw, bool value)
{
uint8_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->SWTRIG.reg;
tmp &= ~ADC_SWTRIG_START;
tmp |= value << ADC_SWTRIG_START_Pos;
((Adc *)hw)->SWTRIG.reg = tmp;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_SWTRIG_START_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->SWTRIG.reg &= ~ADC_SWTRIG_START;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_SWTRIG_START_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->SWTRIG.reg ^= ADC_SWTRIG_START;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_set_SWTRIG_reg(const void *const hw, hri_adc_swtrig_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->SWTRIG.reg |= mask;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_swtrig_reg_t hri_adc_get_SWTRIG_reg(const void *const hw, hri_adc_swtrig_reg_t mask)
{
uint8_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->SWTRIG.reg;
tmp &= mask;
return tmp;
}
static inline void hri_adc_write_SWTRIG_reg(const void *const hw, hri_adc_swtrig_reg_t data)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->SWTRIG.reg = data;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_SWTRIG_reg(const void *const hw, hri_adc_swtrig_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->SWTRIG.reg &= ~mask;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_SWTRIG_reg(const void *const hw, hri_adc_swtrig_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->SWTRIG.reg ^= mask;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_swtrig_reg_t hri_adc_read_SWTRIG_reg(const void *const hw)
{
hri_adc_wait_for_sync(hw);
return ((Adc *)hw)->SWTRIG.reg;
}
static inline void hri_adc_set_INPUTCTRL_MUXPOS_bf(const void *const hw, hri_adc_inputctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->INPUTCTRL.reg |= ADC_INPUTCTRL_MUXPOS(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_inputctrl_reg_t hri_adc_get_INPUTCTRL_MUXPOS_bf(const void *const hw,
hri_adc_inputctrl_reg_t mask)
{
uint32_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->INPUTCTRL.reg;
tmp = (tmp & ADC_INPUTCTRL_MUXPOS(mask)) >> ADC_INPUTCTRL_MUXPOS_Pos;
return tmp;
}
static inline void hri_adc_write_INPUTCTRL_MUXPOS_bf(const void *const hw, hri_adc_inputctrl_reg_t data)
{
uint32_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->INPUTCTRL.reg;
tmp &= ~ADC_INPUTCTRL_MUXPOS_Msk;
tmp |= ADC_INPUTCTRL_MUXPOS(data);
((Adc *)hw)->INPUTCTRL.reg = tmp;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_INPUTCTRL_MUXPOS_bf(const void *const hw, hri_adc_inputctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->INPUTCTRL.reg &= ~ADC_INPUTCTRL_MUXPOS(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_INPUTCTRL_MUXPOS_bf(const void *const hw, hri_adc_inputctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->INPUTCTRL.reg ^= ADC_INPUTCTRL_MUXPOS(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_inputctrl_reg_t hri_adc_read_INPUTCTRL_MUXPOS_bf(const void *const hw)
{
uint32_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->INPUTCTRL.reg;
tmp = (tmp & ADC_INPUTCTRL_MUXPOS_Msk) >> ADC_INPUTCTRL_MUXPOS_Pos;
return tmp;
}
static inline void hri_adc_set_INPUTCTRL_MUXNEG_bf(const void *const hw, hri_adc_inputctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->INPUTCTRL.reg |= ADC_INPUTCTRL_MUXNEG(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_inputctrl_reg_t hri_adc_get_INPUTCTRL_MUXNEG_bf(const void *const hw,
hri_adc_inputctrl_reg_t mask)
{
uint32_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->INPUTCTRL.reg;
tmp = (tmp & ADC_INPUTCTRL_MUXNEG(mask)) >> ADC_INPUTCTRL_MUXNEG_Pos;
return tmp;
}
static inline void hri_adc_write_INPUTCTRL_MUXNEG_bf(const void *const hw, hri_adc_inputctrl_reg_t data)
{
uint32_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->INPUTCTRL.reg;
tmp &= ~ADC_INPUTCTRL_MUXNEG_Msk;
tmp |= ADC_INPUTCTRL_MUXNEG(data);
((Adc *)hw)->INPUTCTRL.reg = tmp;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_INPUTCTRL_MUXNEG_bf(const void *const hw, hri_adc_inputctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->INPUTCTRL.reg &= ~ADC_INPUTCTRL_MUXNEG(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_INPUTCTRL_MUXNEG_bf(const void *const hw, hri_adc_inputctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->INPUTCTRL.reg ^= ADC_INPUTCTRL_MUXNEG(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_inputctrl_reg_t hri_adc_read_INPUTCTRL_MUXNEG_bf(const void *const hw)
{
uint32_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->INPUTCTRL.reg;
tmp = (tmp & ADC_INPUTCTRL_MUXNEG_Msk) >> ADC_INPUTCTRL_MUXNEG_Pos;
return tmp;
}
static inline void hri_adc_set_INPUTCTRL_INPUTSCAN_bf(const void *const hw, hri_adc_inputctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->INPUTCTRL.reg |= ADC_INPUTCTRL_INPUTSCAN(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_inputctrl_reg_t hri_adc_get_INPUTCTRL_INPUTSCAN_bf(const void *const hw,
hri_adc_inputctrl_reg_t mask)
{
uint32_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->INPUTCTRL.reg;
tmp = (tmp & ADC_INPUTCTRL_INPUTSCAN(mask)) >> ADC_INPUTCTRL_INPUTSCAN_Pos;
return tmp;
}
static inline void hri_adc_write_INPUTCTRL_INPUTSCAN_bf(const void *const hw, hri_adc_inputctrl_reg_t data)
{
uint32_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->INPUTCTRL.reg;
tmp &= ~ADC_INPUTCTRL_INPUTSCAN_Msk;
tmp |= ADC_INPUTCTRL_INPUTSCAN(data);
((Adc *)hw)->INPUTCTRL.reg = tmp;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_INPUTCTRL_INPUTSCAN_bf(const void *const hw, hri_adc_inputctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->INPUTCTRL.reg &= ~ADC_INPUTCTRL_INPUTSCAN(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_INPUTCTRL_INPUTSCAN_bf(const void *const hw, hri_adc_inputctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->INPUTCTRL.reg ^= ADC_INPUTCTRL_INPUTSCAN(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_inputctrl_reg_t hri_adc_read_INPUTCTRL_INPUTSCAN_bf(const void *const hw)
{
uint32_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->INPUTCTRL.reg;
tmp = (tmp & ADC_INPUTCTRL_INPUTSCAN_Msk) >> ADC_INPUTCTRL_INPUTSCAN_Pos;
return tmp;
}
static inline void hri_adc_set_INPUTCTRL_INPUTOFFSET_bf(const void *const hw, hri_adc_inputctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->INPUTCTRL.reg |= ADC_INPUTCTRL_INPUTOFFSET(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_inputctrl_reg_t hri_adc_get_INPUTCTRL_INPUTOFFSET_bf(const void *const hw,
hri_adc_inputctrl_reg_t mask)
{
uint32_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->INPUTCTRL.reg;
tmp = (tmp & ADC_INPUTCTRL_INPUTOFFSET(mask)) >> ADC_INPUTCTRL_INPUTOFFSET_Pos;
return tmp;
}
static inline void hri_adc_write_INPUTCTRL_INPUTOFFSET_bf(const void *const hw, hri_adc_inputctrl_reg_t data)
{
uint32_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->INPUTCTRL.reg;
tmp &= ~ADC_INPUTCTRL_INPUTOFFSET_Msk;
tmp |= ADC_INPUTCTRL_INPUTOFFSET(data);
((Adc *)hw)->INPUTCTRL.reg = tmp;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_INPUTCTRL_INPUTOFFSET_bf(const void *const hw, hri_adc_inputctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->INPUTCTRL.reg &= ~ADC_INPUTCTRL_INPUTOFFSET(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_INPUTCTRL_INPUTOFFSET_bf(const void *const hw, hri_adc_inputctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->INPUTCTRL.reg ^= ADC_INPUTCTRL_INPUTOFFSET(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_inputctrl_reg_t hri_adc_read_INPUTCTRL_INPUTOFFSET_bf(const void *const hw)
{
uint32_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->INPUTCTRL.reg;
tmp = (tmp & ADC_INPUTCTRL_INPUTOFFSET_Msk) >> ADC_INPUTCTRL_INPUTOFFSET_Pos;
return tmp;
}
static inline void hri_adc_set_INPUTCTRL_GAIN_bf(const void *const hw, hri_adc_inputctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->INPUTCTRL.reg |= ADC_INPUTCTRL_GAIN(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_inputctrl_reg_t hri_adc_get_INPUTCTRL_GAIN_bf(const void *const hw, hri_adc_inputctrl_reg_t mask)
{
uint32_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->INPUTCTRL.reg;
tmp = (tmp & ADC_INPUTCTRL_GAIN(mask)) >> ADC_INPUTCTRL_GAIN_Pos;
return tmp;
}
static inline void hri_adc_write_INPUTCTRL_GAIN_bf(const void *const hw, hri_adc_inputctrl_reg_t data)
{
uint32_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->INPUTCTRL.reg;
tmp &= ~ADC_INPUTCTRL_GAIN_Msk;
tmp |= ADC_INPUTCTRL_GAIN(data);
((Adc *)hw)->INPUTCTRL.reg = tmp;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_INPUTCTRL_GAIN_bf(const void *const hw, hri_adc_inputctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->INPUTCTRL.reg &= ~ADC_INPUTCTRL_GAIN(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_INPUTCTRL_GAIN_bf(const void *const hw, hri_adc_inputctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->INPUTCTRL.reg ^= ADC_INPUTCTRL_GAIN(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_inputctrl_reg_t hri_adc_read_INPUTCTRL_GAIN_bf(const void *const hw)
{
uint32_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->INPUTCTRL.reg;
tmp = (tmp & ADC_INPUTCTRL_GAIN_Msk) >> ADC_INPUTCTRL_GAIN_Pos;
return tmp;
}
static inline void hri_adc_set_INPUTCTRL_reg(const void *const hw, hri_adc_inputctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->INPUTCTRL.reg |= mask;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_inputctrl_reg_t hri_adc_get_INPUTCTRL_reg(const void *const hw, hri_adc_inputctrl_reg_t mask)
{
uint32_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->INPUTCTRL.reg;
tmp &= mask;
return tmp;
}
static inline void hri_adc_write_INPUTCTRL_reg(const void *const hw, hri_adc_inputctrl_reg_t data)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->INPUTCTRL.reg = data;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_INPUTCTRL_reg(const void *const hw, hri_adc_inputctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->INPUTCTRL.reg &= ~mask;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_INPUTCTRL_reg(const void *const hw, hri_adc_inputctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->INPUTCTRL.reg ^= mask;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_inputctrl_reg_t hri_adc_read_INPUTCTRL_reg(const void *const hw)
{
hri_adc_wait_for_sync(hw);
return ((Adc *)hw)->INPUTCTRL.reg;
}
static inline void hri_adc_set_EVCTRL_STARTEI_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->EVCTRL.reg |= ADC_EVCTRL_STARTEI;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline bool hri_adc_get_EVCTRL_STARTEI_bit(const void *const hw)
{
uint8_t tmp;
tmp = ((Adc *)hw)->EVCTRL.reg;
tmp = (tmp & ADC_EVCTRL_STARTEI) >> ADC_EVCTRL_STARTEI_Pos;
return (bool)tmp;
}
static inline void hri_adc_write_EVCTRL_STARTEI_bit(const void *const hw, bool value)
{
uint8_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->EVCTRL.reg;
tmp &= ~ADC_EVCTRL_STARTEI;
tmp |= value << ADC_EVCTRL_STARTEI_Pos;
((Adc *)hw)->EVCTRL.reg = tmp;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_EVCTRL_STARTEI_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->EVCTRL.reg &= ~ADC_EVCTRL_STARTEI;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_EVCTRL_STARTEI_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->EVCTRL.reg ^= ADC_EVCTRL_STARTEI;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_set_EVCTRL_SYNCEI_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->EVCTRL.reg |= ADC_EVCTRL_SYNCEI;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline bool hri_adc_get_EVCTRL_SYNCEI_bit(const void *const hw)
{
uint8_t tmp;
tmp = ((Adc *)hw)->EVCTRL.reg;
tmp = (tmp & ADC_EVCTRL_SYNCEI) >> ADC_EVCTRL_SYNCEI_Pos;
return (bool)tmp;
}
static inline void hri_adc_write_EVCTRL_SYNCEI_bit(const void *const hw, bool value)
{
uint8_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->EVCTRL.reg;
tmp &= ~ADC_EVCTRL_SYNCEI;
tmp |= value << ADC_EVCTRL_SYNCEI_Pos;
((Adc *)hw)->EVCTRL.reg = tmp;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_EVCTRL_SYNCEI_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->EVCTRL.reg &= ~ADC_EVCTRL_SYNCEI;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_EVCTRL_SYNCEI_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->EVCTRL.reg ^= ADC_EVCTRL_SYNCEI;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_set_EVCTRL_RESRDYEO_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->EVCTRL.reg |= ADC_EVCTRL_RESRDYEO;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline bool hri_adc_get_EVCTRL_RESRDYEO_bit(const void *const hw)
{
uint8_t tmp;
tmp = ((Adc *)hw)->EVCTRL.reg;
tmp = (tmp & ADC_EVCTRL_RESRDYEO) >> ADC_EVCTRL_RESRDYEO_Pos;
return (bool)tmp;
}
static inline void hri_adc_write_EVCTRL_RESRDYEO_bit(const void *const hw, bool value)
{
uint8_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->EVCTRL.reg;
tmp &= ~ADC_EVCTRL_RESRDYEO;
tmp |= value << ADC_EVCTRL_RESRDYEO_Pos;
((Adc *)hw)->EVCTRL.reg = tmp;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_EVCTRL_RESRDYEO_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->EVCTRL.reg &= ~ADC_EVCTRL_RESRDYEO;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_EVCTRL_RESRDYEO_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->EVCTRL.reg ^= ADC_EVCTRL_RESRDYEO;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_set_EVCTRL_WINMONEO_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->EVCTRL.reg |= ADC_EVCTRL_WINMONEO;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline bool hri_adc_get_EVCTRL_WINMONEO_bit(const void *const hw)
{
uint8_t tmp;
tmp = ((Adc *)hw)->EVCTRL.reg;
tmp = (tmp & ADC_EVCTRL_WINMONEO) >> ADC_EVCTRL_WINMONEO_Pos;
return (bool)tmp;
}
static inline void hri_adc_write_EVCTRL_WINMONEO_bit(const void *const hw, bool value)
{
uint8_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->EVCTRL.reg;
tmp &= ~ADC_EVCTRL_WINMONEO;
tmp |= value << ADC_EVCTRL_WINMONEO_Pos;
((Adc *)hw)->EVCTRL.reg = tmp;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_EVCTRL_WINMONEO_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->EVCTRL.reg &= ~ADC_EVCTRL_WINMONEO;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_EVCTRL_WINMONEO_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->EVCTRL.reg ^= ADC_EVCTRL_WINMONEO;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_set_EVCTRL_reg(const void *const hw, hri_adc_evctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->EVCTRL.reg |= mask;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_evctrl_reg_t hri_adc_get_EVCTRL_reg(const void *const hw, hri_adc_evctrl_reg_t mask)
{
uint8_t tmp;
tmp = ((Adc *)hw)->EVCTRL.reg;
tmp &= mask;
return tmp;
}
static inline void hri_adc_write_EVCTRL_reg(const void *const hw, hri_adc_evctrl_reg_t data)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->EVCTRL.reg = data;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_EVCTRL_reg(const void *const hw, hri_adc_evctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->EVCTRL.reg &= ~mask;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_EVCTRL_reg(const void *const hw, hri_adc_evctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->EVCTRL.reg ^= mask;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_evctrl_reg_t hri_adc_read_EVCTRL_reg(const void *const hw)
{
return ((Adc *)hw)->EVCTRL.reg;
}
static inline void hri_adc_set_WINLT_WINLT_bf(const void *const hw, hri_adc_winlt_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->WINLT.reg |= ADC_WINLT_WINLT(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_winlt_reg_t hri_adc_get_WINLT_WINLT_bf(const void *const hw, hri_adc_winlt_reg_t mask)
{
uint16_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->WINLT.reg;
tmp = (tmp & ADC_WINLT_WINLT(mask)) >> ADC_WINLT_WINLT_Pos;
return tmp;
}
static inline void hri_adc_write_WINLT_WINLT_bf(const void *const hw, hri_adc_winlt_reg_t data)
{
uint16_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->WINLT.reg;
tmp &= ~ADC_WINLT_WINLT_Msk;
tmp |= ADC_WINLT_WINLT(data);
((Adc *)hw)->WINLT.reg = tmp;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_WINLT_WINLT_bf(const void *const hw, hri_adc_winlt_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->WINLT.reg &= ~ADC_WINLT_WINLT(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_WINLT_WINLT_bf(const void *const hw, hri_adc_winlt_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->WINLT.reg ^= ADC_WINLT_WINLT(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_winlt_reg_t hri_adc_read_WINLT_WINLT_bf(const void *const hw)
{
uint16_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->WINLT.reg;
tmp = (tmp & ADC_WINLT_WINLT_Msk) >> ADC_WINLT_WINLT_Pos;
return tmp;
}
static inline void hri_adc_set_WINLT_reg(const void *const hw, hri_adc_winlt_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->WINLT.reg |= mask;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_winlt_reg_t hri_adc_get_WINLT_reg(const void *const hw, hri_adc_winlt_reg_t mask)
{
uint16_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->WINLT.reg;
tmp &= mask;
return tmp;
}
static inline void hri_adc_write_WINLT_reg(const void *const hw, hri_adc_winlt_reg_t data)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->WINLT.reg = data;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_WINLT_reg(const void *const hw, hri_adc_winlt_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->WINLT.reg &= ~mask;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_WINLT_reg(const void *const hw, hri_adc_winlt_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->WINLT.reg ^= mask;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_winlt_reg_t hri_adc_read_WINLT_reg(const void *const hw)
{
hri_adc_wait_for_sync(hw);
return ((Adc *)hw)->WINLT.reg;
}
static inline void hri_adc_set_WINUT_WINUT_bf(const void *const hw, hri_adc_winut_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->WINUT.reg |= ADC_WINUT_WINUT(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_winut_reg_t hri_adc_get_WINUT_WINUT_bf(const void *const hw, hri_adc_winut_reg_t mask)
{
uint16_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->WINUT.reg;
tmp = (tmp & ADC_WINUT_WINUT(mask)) >> ADC_WINUT_WINUT_Pos;
return tmp;
}
static inline void hri_adc_write_WINUT_WINUT_bf(const void *const hw, hri_adc_winut_reg_t data)
{
uint16_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->WINUT.reg;
tmp &= ~ADC_WINUT_WINUT_Msk;
tmp |= ADC_WINUT_WINUT(data);
((Adc *)hw)->WINUT.reg = tmp;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_WINUT_WINUT_bf(const void *const hw, hri_adc_winut_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->WINUT.reg &= ~ADC_WINUT_WINUT(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_WINUT_WINUT_bf(const void *const hw, hri_adc_winut_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->WINUT.reg ^= ADC_WINUT_WINUT(mask);
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_winut_reg_t hri_adc_read_WINUT_WINUT_bf(const void *const hw)
{
uint16_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->WINUT.reg;
tmp = (tmp & ADC_WINUT_WINUT_Msk) >> ADC_WINUT_WINUT_Pos;
return tmp;
}
static inline void hri_adc_set_WINUT_reg(const void *const hw, hri_adc_winut_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->WINUT.reg |= mask;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_winut_reg_t hri_adc_get_WINUT_reg(const void *const hw, hri_adc_winut_reg_t mask)
{
uint16_t tmp;
hri_adc_wait_for_sync(hw);
tmp = ((Adc *)hw)->WINUT.reg;
tmp &= mask;
return tmp;
}
static inline void hri_adc_write_WINUT_reg(const void *const hw, hri_adc_winut_reg_t data)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->WINUT.reg = data;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_WINUT_reg(const void *const hw, hri_adc_winut_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->WINUT.reg &= ~mask;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_WINUT_reg(const void *const hw, hri_adc_winut_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->WINUT.reg ^= mask;
hri_adc_wait_for_sync(hw);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_winut_reg_t hri_adc_read_WINUT_reg(const void *const hw)
{
hri_adc_wait_for_sync(hw);
return ((Adc *)hw)->WINUT.reg;
}
static inline void hri_adc_set_GAINCORR_GAINCORR_bf(const void *const hw, hri_adc_gaincorr_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->GAINCORR.reg |= ADC_GAINCORR_GAINCORR(mask);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_gaincorr_reg_t hri_adc_get_GAINCORR_GAINCORR_bf(const void *const hw, hri_adc_gaincorr_reg_t mask)
{
uint16_t tmp;
tmp = ((Adc *)hw)->GAINCORR.reg;
tmp = (tmp & ADC_GAINCORR_GAINCORR(mask)) >> ADC_GAINCORR_GAINCORR_Pos;
return tmp;
}
static inline void hri_adc_write_GAINCORR_GAINCORR_bf(const void *const hw, hri_adc_gaincorr_reg_t data)
{
uint16_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->GAINCORR.reg;
tmp &= ~ADC_GAINCORR_GAINCORR_Msk;
tmp |= ADC_GAINCORR_GAINCORR(data);
((Adc *)hw)->GAINCORR.reg = tmp;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_GAINCORR_GAINCORR_bf(const void *const hw, hri_adc_gaincorr_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->GAINCORR.reg &= ~ADC_GAINCORR_GAINCORR(mask);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_GAINCORR_GAINCORR_bf(const void *const hw, hri_adc_gaincorr_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->GAINCORR.reg ^= ADC_GAINCORR_GAINCORR(mask);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_gaincorr_reg_t hri_adc_read_GAINCORR_GAINCORR_bf(const void *const hw)
{
uint16_t tmp;
tmp = ((Adc *)hw)->GAINCORR.reg;
tmp = (tmp & ADC_GAINCORR_GAINCORR_Msk) >> ADC_GAINCORR_GAINCORR_Pos;
return tmp;
}
static inline void hri_adc_set_GAINCORR_reg(const void *const hw, hri_adc_gaincorr_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->GAINCORR.reg |= mask;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_gaincorr_reg_t hri_adc_get_GAINCORR_reg(const void *const hw, hri_adc_gaincorr_reg_t mask)
{
uint16_t tmp;
tmp = ((Adc *)hw)->GAINCORR.reg;
tmp &= mask;
return tmp;
}
static inline void hri_adc_write_GAINCORR_reg(const void *const hw, hri_adc_gaincorr_reg_t data)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->GAINCORR.reg = data;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_GAINCORR_reg(const void *const hw, hri_adc_gaincorr_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->GAINCORR.reg &= ~mask;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_GAINCORR_reg(const void *const hw, hri_adc_gaincorr_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->GAINCORR.reg ^= mask;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_gaincorr_reg_t hri_adc_read_GAINCORR_reg(const void *const hw)
{
return ((Adc *)hw)->GAINCORR.reg;
}
static inline void hri_adc_set_OFFSETCORR_OFFSETCORR_bf(const void *const hw, hri_adc_offsetcorr_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->OFFSETCORR.reg |= ADC_OFFSETCORR_OFFSETCORR(mask);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_offsetcorr_reg_t hri_adc_get_OFFSETCORR_OFFSETCORR_bf(const void *const hw,
hri_adc_offsetcorr_reg_t mask)
{
uint16_t tmp;
tmp = ((Adc *)hw)->OFFSETCORR.reg;
tmp = (tmp & ADC_OFFSETCORR_OFFSETCORR(mask)) >> ADC_OFFSETCORR_OFFSETCORR_Pos;
return tmp;
}
static inline void hri_adc_write_OFFSETCORR_OFFSETCORR_bf(const void *const hw, hri_adc_offsetcorr_reg_t data)
{
uint16_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->OFFSETCORR.reg;
tmp &= ~ADC_OFFSETCORR_OFFSETCORR_Msk;
tmp |= ADC_OFFSETCORR_OFFSETCORR(data);
((Adc *)hw)->OFFSETCORR.reg = tmp;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_OFFSETCORR_OFFSETCORR_bf(const void *const hw, hri_adc_offsetcorr_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->OFFSETCORR.reg &= ~ADC_OFFSETCORR_OFFSETCORR(mask);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_OFFSETCORR_OFFSETCORR_bf(const void *const hw, hri_adc_offsetcorr_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->OFFSETCORR.reg ^= ADC_OFFSETCORR_OFFSETCORR(mask);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_offsetcorr_reg_t hri_adc_read_OFFSETCORR_OFFSETCORR_bf(const void *const hw)
{
uint16_t tmp;
tmp = ((Adc *)hw)->OFFSETCORR.reg;
tmp = (tmp & ADC_OFFSETCORR_OFFSETCORR_Msk) >> ADC_OFFSETCORR_OFFSETCORR_Pos;
return tmp;
}
static inline void hri_adc_set_OFFSETCORR_reg(const void *const hw, hri_adc_offsetcorr_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->OFFSETCORR.reg |= mask;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_offsetcorr_reg_t hri_adc_get_OFFSETCORR_reg(const void *const hw, hri_adc_offsetcorr_reg_t mask)
{
uint16_t tmp;
tmp = ((Adc *)hw)->OFFSETCORR.reg;
tmp &= mask;
return tmp;
}
static inline void hri_adc_write_OFFSETCORR_reg(const void *const hw, hri_adc_offsetcorr_reg_t data)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->OFFSETCORR.reg = data;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_OFFSETCORR_reg(const void *const hw, hri_adc_offsetcorr_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->OFFSETCORR.reg &= ~mask;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_OFFSETCORR_reg(const void *const hw, hri_adc_offsetcorr_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->OFFSETCORR.reg ^= mask;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_offsetcorr_reg_t hri_adc_read_OFFSETCORR_reg(const void *const hw)
{
return ((Adc *)hw)->OFFSETCORR.reg;
}
static inline void hri_adc_set_CALIB_LINEARITY_CAL_bf(const void *const hw, hri_adc_calib_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CALIB.reg |= ADC_CALIB_LINEARITY_CAL(mask);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_calib_reg_t hri_adc_get_CALIB_LINEARITY_CAL_bf(const void *const hw, hri_adc_calib_reg_t mask)
{
uint16_t tmp;
tmp = ((Adc *)hw)->CALIB.reg;
tmp = (tmp & ADC_CALIB_LINEARITY_CAL(mask)) >> ADC_CALIB_LINEARITY_CAL_Pos;
return tmp;
}
static inline void hri_adc_write_CALIB_LINEARITY_CAL_bf(const void *const hw, hri_adc_calib_reg_t data)
{
uint16_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->CALIB.reg;
tmp &= ~ADC_CALIB_LINEARITY_CAL_Msk;
tmp |= ADC_CALIB_LINEARITY_CAL(data);
((Adc *)hw)->CALIB.reg = tmp;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_CALIB_LINEARITY_CAL_bf(const void *const hw, hri_adc_calib_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CALIB.reg &= ~ADC_CALIB_LINEARITY_CAL(mask);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_CALIB_LINEARITY_CAL_bf(const void *const hw, hri_adc_calib_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CALIB.reg ^= ADC_CALIB_LINEARITY_CAL(mask);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_calib_reg_t hri_adc_read_CALIB_LINEARITY_CAL_bf(const void *const hw)
{
uint16_t tmp;
tmp = ((Adc *)hw)->CALIB.reg;
tmp = (tmp & ADC_CALIB_LINEARITY_CAL_Msk) >> ADC_CALIB_LINEARITY_CAL_Pos;
return tmp;
}
static inline void hri_adc_set_CALIB_BIAS_CAL_bf(const void *const hw, hri_adc_calib_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CALIB.reg |= ADC_CALIB_BIAS_CAL(mask);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_calib_reg_t hri_adc_get_CALIB_BIAS_CAL_bf(const void *const hw, hri_adc_calib_reg_t mask)
{
uint16_t tmp;
tmp = ((Adc *)hw)->CALIB.reg;
tmp = (tmp & ADC_CALIB_BIAS_CAL(mask)) >> ADC_CALIB_BIAS_CAL_Pos;
return tmp;
}
static inline void hri_adc_write_CALIB_BIAS_CAL_bf(const void *const hw, hri_adc_calib_reg_t data)
{
uint16_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->CALIB.reg;
tmp &= ~ADC_CALIB_BIAS_CAL_Msk;
tmp |= ADC_CALIB_BIAS_CAL(data);
((Adc *)hw)->CALIB.reg = tmp;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_CALIB_BIAS_CAL_bf(const void *const hw, hri_adc_calib_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CALIB.reg &= ~ADC_CALIB_BIAS_CAL(mask);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_CALIB_BIAS_CAL_bf(const void *const hw, hri_adc_calib_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CALIB.reg ^= ADC_CALIB_BIAS_CAL(mask);
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_calib_reg_t hri_adc_read_CALIB_BIAS_CAL_bf(const void *const hw)
{
uint16_t tmp;
tmp = ((Adc *)hw)->CALIB.reg;
tmp = (tmp & ADC_CALIB_BIAS_CAL_Msk) >> ADC_CALIB_BIAS_CAL_Pos;
return tmp;
}
static inline void hri_adc_set_CALIB_reg(const void *const hw, hri_adc_calib_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CALIB.reg |= mask;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_calib_reg_t hri_adc_get_CALIB_reg(const void *const hw, hri_adc_calib_reg_t mask)
{
uint16_t tmp;
tmp = ((Adc *)hw)->CALIB.reg;
tmp &= mask;
return tmp;
}
static inline void hri_adc_write_CALIB_reg(const void *const hw, hri_adc_calib_reg_t data)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CALIB.reg = data;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_CALIB_reg(const void *const hw, hri_adc_calib_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CALIB.reg &= ~mask;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_CALIB_reg(const void *const hw, hri_adc_calib_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->CALIB.reg ^= mask;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_calib_reg_t hri_adc_read_CALIB_reg(const void *const hw)
{
return ((Adc *)hw)->CALIB.reg;
}
static inline void hri_adc_set_DBGCTRL_DBGRUN_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->DBGCTRL.reg |= ADC_DBGCTRL_DBGRUN;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline bool hri_adc_get_DBGCTRL_DBGRUN_bit(const void *const hw)
{
uint8_t tmp;
tmp = ((Adc *)hw)->DBGCTRL.reg;
tmp = (tmp & ADC_DBGCTRL_DBGRUN) >> ADC_DBGCTRL_DBGRUN_Pos;
return (bool)tmp;
}
static inline void hri_adc_write_DBGCTRL_DBGRUN_bit(const void *const hw, bool value)
{
uint8_t tmp;
ADC_CRITICAL_SECTION_ENTER();
tmp = ((Adc *)hw)->DBGCTRL.reg;
tmp &= ~ADC_DBGCTRL_DBGRUN;
tmp |= value << ADC_DBGCTRL_DBGRUN_Pos;
((Adc *)hw)->DBGCTRL.reg = tmp;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_DBGCTRL_DBGRUN_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->DBGCTRL.reg &= ~ADC_DBGCTRL_DBGRUN;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_DBGCTRL_DBGRUN_bit(const void *const hw)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->DBGCTRL.reg ^= ADC_DBGCTRL_DBGRUN;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_set_DBGCTRL_reg(const void *const hw, hri_adc_dbgctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->DBGCTRL.reg |= mask;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_dbgctrl_reg_t hri_adc_get_DBGCTRL_reg(const void *const hw, hri_adc_dbgctrl_reg_t mask)
{
uint8_t tmp;
tmp = ((Adc *)hw)->DBGCTRL.reg;
tmp &= mask;
return tmp;
}
static inline void hri_adc_write_DBGCTRL_reg(const void *const hw, hri_adc_dbgctrl_reg_t data)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->DBGCTRL.reg = data;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_clear_DBGCTRL_reg(const void *const hw, hri_adc_dbgctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->DBGCTRL.reg &= ~mask;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline void hri_adc_toggle_DBGCTRL_reg(const void *const hw, hri_adc_dbgctrl_reg_t mask)
{
ADC_CRITICAL_SECTION_ENTER();
((Adc *)hw)->DBGCTRL.reg ^= mask;
ADC_CRITICAL_SECTION_LEAVE();
}
static inline hri_adc_dbgctrl_reg_t hri_adc_read_DBGCTRL_reg(const void *const hw)
{
return ((Adc *)hw)->DBGCTRL.reg;
}
#ifdef __cplusplus
}
#endif
#endif /* _HRI_ADC_D21_H_INCLUDED */
#endif /* _SAMD21_ADC_COMPONENT_ */