#[doc = r"Value read from the register"]
pub struct R {
bits: u32,
}
#[doc = r"Value to write to the register"]
pub struct W {
bits: u32,
}
impl super::JSQR {
#[doc = r"Modifies the contents of the register"]
#[inline(always)]
pub fn modify<F>(&self, f: F)
where
for<'w> F: FnOnce(&R, &'w mut W) -> &'w mut W,
{
let bits = self.register.get();
self.register.set(f(&R { bits }, &mut W { bits }).bits);
}
#[doc = r"Reads the contents of the register"]
#[inline(always)]
pub fn read(&self) -> R {
R {
bits: self.register.get(),
}
}
#[doc = r"Writes to the register"]
#[inline(always)]
pub fn write<F>(&self, f: F)
where
F: FnOnce(&mut W) -> &mut W,
{
self.register.set(
f(&mut W {
bits: Self::reset_value(),
})
.bits,
);
}
#[doc = r"Reset value of the register"]
#[inline(always)]
pub const fn reset_value() -> u32 {
0
}
#[doc = r"Writes the reset value to the register"]
#[inline(always)]
pub fn reset(&self) {
self.register.set(Self::reset_value())
}
}
#[doc = r"Value of the field"]
pub struct JSQ4R {
bits: u8,
}
impl JSQ4R {
#[doc = r"Value of the field as raw bits"]
#[inline(always)]
pub fn bits(&self) -> u8 {
self.bits
}
}
#[doc = r"Proxy"]
pub struct _JSQ4W<'a> {
w: &'a mut W,
}
impl<'a> _JSQ4W<'a> {
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub unsafe fn bits(self, value: u8) -> &'a mut W {
self.w.bits &= !(0x1f << 27);
self.w.bits |= ((value as u32) & 0x1f) << 27;
self.w
}
}
#[doc = r"Value of the field"]
pub struct JSQ3R {
bits: u8,
}
impl JSQ3R {
#[doc = r"Value of the field as raw bits"]
#[inline(always)]
pub fn bits(&self) -> u8 {
self.bits
}
}
#[doc = r"Proxy"]
pub struct _JSQ3W<'a> {
w: &'a mut W,
}
impl<'a> _JSQ3W<'a> {
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub unsafe fn bits(self, value: u8) -> &'a mut W {
self.w.bits &= !(0x1f << 21);
self.w.bits |= ((value as u32) & 0x1f) << 21;
self.w
}
}
#[doc = r"Value of the field"]
pub struct JSQ2R {
bits: u8,
}
impl JSQ2R {
#[doc = r"Value of the field as raw bits"]
#[inline(always)]
pub fn bits(&self) -> u8 {
self.bits
}
}
#[doc = r"Proxy"]
pub struct _JSQ2W<'a> {
w: &'a mut W,
}
impl<'a> _JSQ2W<'a> {
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub unsafe fn bits(self, value: u8) -> &'a mut W {
self.w.bits &= !(0x1f << 15);
self.w.bits |= ((value as u32) & 0x1f) << 15;
self.w
}
}
#[doc = r"Value of the field"]
pub struct JSQ1R {
bits: u8,
}
impl JSQ1R {
#[doc = r"Value of the field as raw bits"]
#[inline(always)]
pub fn bits(&self) -> u8 {
self.bits
}
}
#[doc = r"Proxy"]
pub struct _JSQ1W<'a> {
w: &'a mut W,
}
impl<'a> _JSQ1W<'a> {
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub unsafe fn bits(self, value: u8) -> &'a mut W {
self.w.bits &= !(0x1f << 9);
self.w.bits |= ((value as u32) & 0x1f) << 9;
self.w
}
}
#[doc = r"Value of the field"]
pub struct JEXTENR {
bits: u8,
}
impl JEXTENR {
#[doc = r"Value of the field as raw bits"]
#[inline(always)]
pub fn bits(&self) -> u8 {
self.bits
}
}
#[doc = r"Proxy"]
pub struct _JEXTENW<'a> {
w: &'a mut W,
}
impl<'a> _JEXTENW<'a> {
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub unsafe fn bits(self, value: u8) -> &'a mut W {
self.w.bits &= !(0x03 << 7);
self.w.bits |= ((value as u32) & 0x03) << 7;
self.w
}
}
#[doc = r"Value of the field"]
pub struct JEXTSELR {
bits: u8,
}
impl JEXTSELR {
#[doc = r"Value of the field as raw bits"]
#[inline(always)]
pub fn bits(&self) -> u8 {
self.bits
}
}
#[doc = r"Proxy"]
pub struct _JEXTSELW<'a> {
w: &'a mut W,
}
impl<'a> _JEXTSELW<'a> {
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub unsafe fn bits(self, value: u8) -> &'a mut W {
self.w.bits &= !(0x1f << 2);
self.w.bits |= ((value as u32) & 0x1f) << 2;
self.w
}
}
#[doc = r"Value of the field"]
pub struct JLR {
bits: u8,
}
impl JLR {
#[doc = r"Value of the field as raw bits"]
#[inline(always)]
pub fn bits(&self) -> u8 {
self.bits
}
}
#[doc = r"Proxy"]
pub struct _JLW<'a> {
w: &'a mut W,
}
impl<'a> _JLW<'a> {
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub unsafe fn bits(self, value: u8) -> &'a mut W {
self.w.bits &= !(0x03 << 0);
self.w.bits |= ((value as u32) & 0x03) << 0;
self.w
}
}
impl R {
#[doc = r"Value of the register as raw bits"]
#[inline(always)]
pub fn bits(&self) -> u32 {
self.bits
}
#[doc = "Bits 27:31 - JSQ4"]
#[inline(always)]
pub fn jsq4(&self) -> JSQ4R {
let bits = ((self.bits >> 27) & 0x1f) as u8;
JSQ4R { bits }
}
#[doc = "Bits 21:25 - JSQ3"]
#[inline(always)]
pub fn jsq3(&self) -> JSQ3R {
let bits = ((self.bits >> 21) & 0x1f) as u8;
JSQ3R { bits }
}
#[doc = "Bits 15:19 - JSQ2"]
#[inline(always)]
pub fn jsq2(&self) -> JSQ2R {
let bits = ((self.bits >> 15) & 0x1f) as u8;
JSQ2R { bits }
}
#[doc = "Bits 9:13 - JSQ1"]
#[inline(always)]
pub fn jsq1(&self) -> JSQ1R {
let bits = ((self.bits >> 9) & 0x1f) as u8;
JSQ1R { bits }
}
#[doc = "Bits 7:8 - JEXTEN"]
#[inline(always)]
pub fn jexten(&self) -> JEXTENR {
let bits = ((self.bits >> 7) & 0x03) as u8;
JEXTENR { bits }
}
#[doc = "Bits 2:6 - JEXTSEL"]
#[inline(always)]
pub fn jextsel(&self) -> JEXTSELR {
let bits = ((self.bits >> 2) & 0x1f) as u8;
JEXTSELR { bits }
}
#[doc = "Bits 0:1 - JL"]
#[inline(always)]
pub fn jl(&self) -> JLR {
let bits = ((self.bits >> 0) & 0x03) as u8;
JLR { bits }
}
}
impl W {
#[doc = r"Writes raw bits to the register"]
#[inline(always)]
pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
self.bits = bits;
self
}
#[doc = "Bits 27:31 - JSQ4"]
#[inline(always)]
pub fn jsq4(&mut self) -> _JSQ4W {
_JSQ4W { w: self }
}
#[doc = "Bits 21:25 - JSQ3"]
#[inline(always)]
pub fn jsq3(&mut self) -> _JSQ3W {
_JSQ3W { w: self }
}
#[doc = "Bits 15:19 - JSQ2"]
#[inline(always)]
pub fn jsq2(&mut self) -> _JSQ2W {
_JSQ2W { w: self }
}
#[doc = "Bits 9:13 - JSQ1"]
#[inline(always)]
pub fn jsq1(&mut self) -> _JSQ1W {
_JSQ1W { w: self }
}
#[doc = "Bits 7:8 - JEXTEN"]
#[inline(always)]
pub fn jexten(&mut self) -> _JEXTENW {
_JEXTENW { w: self }
}
#[doc = "Bits 2:6 - JEXTSEL"]
#[inline(always)]
pub fn jextsel(&mut self) -> _JEXTSELW {
_JEXTSELW { w: self }
}
#[doc = "Bits 0:1 - JL"]
#[inline(always)]
pub fn jl(&mut self) -> _JLW {
_JLW { w: self }
}
}