s32k118.rs/src/sim/adcopt.rs

675 lines
20 KiB
Rust

#[doc = "Reader of register ADCOPT"]
pub type R = crate::R<u32, super::ADCOPT>;
#[doc = "Writer for register ADCOPT"]
pub type W = crate::W<u32, super::ADCOPT>;
#[doc = "Register ADCOPT `reset()`'s with value 0"]
impl crate::ResetValue for super::ADCOPT {
type Type = u32;
#[inline(always)]
fn reset_value() -> Self::Type {
0
}
}
#[doc = "ADC0 trigger source select\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum ADC0TRGSEL_A {
#[doc = "0: PDB output"]
_0 = 0,
#[doc = "1: TRGMUX output"]
_1 = 1,
}
impl From<ADC0TRGSEL_A> for bool {
#[inline(always)]
fn from(variant: ADC0TRGSEL_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Reader of field `ADC0TRGSEL`"]
pub type ADC0TRGSEL_R = crate::R<bool, ADC0TRGSEL_A>;
impl ADC0TRGSEL_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> ADC0TRGSEL_A {
match self.bits {
false => ADC0TRGSEL_A::_0,
true => ADC0TRGSEL_A::_1,
}
}
#[doc = "Checks if the value of the field is `_0`"]
#[inline(always)]
pub fn is_0(&self) -> bool {
*self == ADC0TRGSEL_A::_0
}
#[doc = "Checks if the value of the field is `_1`"]
#[inline(always)]
pub fn is_1(&self) -> bool {
*self == ADC0TRGSEL_A::_1
}
}
#[doc = "Write proxy for field `ADC0TRGSEL`"]
pub struct ADC0TRGSEL_W<'a> {
w: &'a mut W,
}
impl<'a> ADC0TRGSEL_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: ADC0TRGSEL_A) -> &'a mut W {
{
self.bit(variant.into())
}
}
#[doc = "PDB output"]
#[inline(always)]
pub fn _0(self) -> &'a mut W {
self.variant(ADC0TRGSEL_A::_0)
}
#[doc = "TRGMUX output"]
#[inline(always)]
pub fn _1(self) -> &'a mut W {
self.variant(ADC0TRGSEL_A::_1)
}
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !0x01) | ((value as u32) & 0x01);
self.w
}
}
#[doc = "ADC0 software pretrigger sources\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum ADC0SWPRETRG_A {
#[doc = "0: Software pretrigger disabled"]
_000 = 0,
#[doc = "1: Reserved (do not use)"]
_001 = 1,
#[doc = "2: Reserved (do not use)"]
_010 = 2,
#[doc = "3: Reserved (do not use)"]
_011 = 3,
#[doc = "4: Software pretrigger 0"]
_100 = 4,
#[doc = "5: Software pretrigger 1"]
_101 = 5,
#[doc = "6: Software pretrigger 2"]
_110 = 6,
#[doc = "7: Software pretrigger 3"]
_111 = 7,
}
impl From<ADC0SWPRETRG_A> for u8 {
#[inline(always)]
fn from(variant: ADC0SWPRETRG_A) -> Self {
variant as _
}
}
#[doc = "Reader of field `ADC0SWPRETRG`"]
pub type ADC0SWPRETRG_R = crate::R<u8, ADC0SWPRETRG_A>;
impl ADC0SWPRETRG_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> ADC0SWPRETRG_A {
match self.bits {
0 => ADC0SWPRETRG_A::_000,
1 => ADC0SWPRETRG_A::_001,
2 => ADC0SWPRETRG_A::_010,
3 => ADC0SWPRETRG_A::_011,
4 => ADC0SWPRETRG_A::_100,
5 => ADC0SWPRETRG_A::_101,
6 => ADC0SWPRETRG_A::_110,
7 => ADC0SWPRETRG_A::_111,
_ => unreachable!(),
}
}
#[doc = "Checks if the value of the field is `_000`"]
#[inline(always)]
pub fn is_000(&self) -> bool {
*self == ADC0SWPRETRG_A::_000
}
#[doc = "Checks if the value of the field is `_001`"]
#[inline(always)]
pub fn is_001(&self) -> bool {
*self == ADC0SWPRETRG_A::_001
}
#[doc = "Checks if the value of the field is `_010`"]
#[inline(always)]
pub fn is_010(&self) -> bool {
*self == ADC0SWPRETRG_A::_010
}
#[doc = "Checks if the value of the field is `_011`"]
#[inline(always)]
pub fn is_011(&self) -> bool {
*self == ADC0SWPRETRG_A::_011
}
#[doc = "Checks if the value of the field is `_100`"]
#[inline(always)]
pub fn is_100(&self) -> bool {
*self == ADC0SWPRETRG_A::_100
}
#[doc = "Checks if the value of the field is `_101`"]
#[inline(always)]
pub fn is_101(&self) -> bool {
*self == ADC0SWPRETRG_A::_101
}
#[doc = "Checks if the value of the field is `_110`"]
#[inline(always)]
pub fn is_110(&self) -> bool {
*self == ADC0SWPRETRG_A::_110
}
#[doc = "Checks if the value of the field is `_111`"]
#[inline(always)]
pub fn is_111(&self) -> bool {
*self == ADC0SWPRETRG_A::_111
}
}
#[doc = "Write proxy for field `ADC0SWPRETRG`"]
pub struct ADC0SWPRETRG_W<'a> {
w: &'a mut W,
}
impl<'a> ADC0SWPRETRG_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: ADC0SWPRETRG_A) -> &'a mut W {
{
self.bits(variant.into())
}
}
#[doc = "Software pretrigger disabled"]
#[inline(always)]
pub fn _000(self) -> &'a mut W {
self.variant(ADC0SWPRETRG_A::_000)
}
#[doc = "Reserved (do not use)"]
#[inline(always)]
pub fn _001(self) -> &'a mut W {
self.variant(ADC0SWPRETRG_A::_001)
}
#[doc = "Reserved (do not use)"]
#[inline(always)]
pub fn _010(self) -> &'a mut W {
self.variant(ADC0SWPRETRG_A::_010)
}
#[doc = "Reserved (do not use)"]
#[inline(always)]
pub fn _011(self) -> &'a mut W {
self.variant(ADC0SWPRETRG_A::_011)
}
#[doc = "Software pretrigger 0"]
#[inline(always)]
pub fn _100(self) -> &'a mut W {
self.variant(ADC0SWPRETRG_A::_100)
}
#[doc = "Software pretrigger 1"]
#[inline(always)]
pub fn _101(self) -> &'a mut W {
self.variant(ADC0SWPRETRG_A::_101)
}
#[doc = "Software pretrigger 2"]
#[inline(always)]
pub fn _110(self) -> &'a mut W {
self.variant(ADC0SWPRETRG_A::_110)
}
#[doc = "Software pretrigger 3"]
#[inline(always)]
pub fn _111(self) -> &'a mut W {
self.variant(ADC0SWPRETRG_A::_111)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x07 << 1)) | (((value as u32) & 0x07) << 1);
self.w
}
}
#[doc = "ADC0 pretrigger source select\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum ADC0PRETRGSEL_A {
#[doc = "0: PDB pretrigger (default)"]
_00 = 0,
#[doc = "1: TRGMUX pretrigger"]
_01 = 1,
#[doc = "2: Software pretrigger"]
_10 = 2,
}
impl From<ADC0PRETRGSEL_A> for u8 {
#[inline(always)]
fn from(variant: ADC0PRETRGSEL_A) -> Self {
variant as _
}
}
#[doc = "Reader of field `ADC0PRETRGSEL`"]
pub type ADC0PRETRGSEL_R = crate::R<u8, ADC0PRETRGSEL_A>;
impl ADC0PRETRGSEL_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> crate::Variant<u8, ADC0PRETRGSEL_A> {
use crate::Variant::*;
match self.bits {
0 => Val(ADC0PRETRGSEL_A::_00),
1 => Val(ADC0PRETRGSEL_A::_01),
2 => Val(ADC0PRETRGSEL_A::_10),
i => Res(i),
}
}
#[doc = "Checks if the value of the field is `_00`"]
#[inline(always)]
pub fn is_00(&self) -> bool {
*self == ADC0PRETRGSEL_A::_00
}
#[doc = "Checks if the value of the field is `_01`"]
#[inline(always)]
pub fn is_01(&self) -> bool {
*self == ADC0PRETRGSEL_A::_01
}
#[doc = "Checks if the value of the field is `_10`"]
#[inline(always)]
pub fn is_10(&self) -> bool {
*self == ADC0PRETRGSEL_A::_10
}
}
#[doc = "Write proxy for field `ADC0PRETRGSEL`"]
pub struct ADC0PRETRGSEL_W<'a> {
w: &'a mut W,
}
impl<'a> ADC0PRETRGSEL_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: ADC0PRETRGSEL_A) -> &'a mut W {
unsafe { self.bits(variant.into()) }
}
#[doc = "PDB pretrigger (default)"]
#[inline(always)]
pub fn _00(self) -> &'a mut W {
self.variant(ADC0PRETRGSEL_A::_00)
}
#[doc = "TRGMUX pretrigger"]
#[inline(always)]
pub fn _01(self) -> &'a mut W {
self.variant(ADC0PRETRGSEL_A::_01)
}
#[doc = "Software pretrigger"]
#[inline(always)]
pub fn _10(self) -> &'a mut W {
self.variant(ADC0PRETRGSEL_A::_10)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub unsafe fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x03 << 4)) | (((value as u32) & 0x03) << 4);
self.w
}
}
#[doc = "ADC1 trigger source select\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum ADC1TRGSEL_A {
#[doc = "0: PDB output"]
_0 = 0,
#[doc = "1: TRGMUX output"]
_1 = 1,
}
impl From<ADC1TRGSEL_A> for bool {
#[inline(always)]
fn from(variant: ADC1TRGSEL_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Reader of field `ADC1TRGSEL`"]
pub type ADC1TRGSEL_R = crate::R<bool, ADC1TRGSEL_A>;
impl ADC1TRGSEL_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> ADC1TRGSEL_A {
match self.bits {
false => ADC1TRGSEL_A::_0,
true => ADC1TRGSEL_A::_1,
}
}
#[doc = "Checks if the value of the field is `_0`"]
#[inline(always)]
pub fn is_0(&self) -> bool {
*self == ADC1TRGSEL_A::_0
}
#[doc = "Checks if the value of the field is `_1`"]
#[inline(always)]
pub fn is_1(&self) -> bool {
*self == ADC1TRGSEL_A::_1
}
}
#[doc = "Write proxy for field `ADC1TRGSEL`"]
pub struct ADC1TRGSEL_W<'a> {
w: &'a mut W,
}
impl<'a> ADC1TRGSEL_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: ADC1TRGSEL_A) -> &'a mut W {
{
self.bit(variant.into())
}
}
#[doc = "PDB output"]
#[inline(always)]
pub fn _0(self) -> &'a mut W {
self.variant(ADC1TRGSEL_A::_0)
}
#[doc = "TRGMUX output"]
#[inline(always)]
pub fn _1(self) -> &'a mut W {
self.variant(ADC1TRGSEL_A::_1)
}
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 8)) | (((value as u32) & 0x01) << 8);
self.w
}
}
#[doc = "ADC1 software pretrigger sources\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum ADC1SWPRETRG_A {
#[doc = "0: Software pretrigger disabled"]
_000 = 0,
#[doc = "1: Reserved (do not use)"]
_001 = 1,
#[doc = "2: Reserved (do not use)"]
_010 = 2,
#[doc = "3: Reserved (do not use)"]
_011 = 3,
#[doc = "4: Software pretrigger 0"]
_100 = 4,
#[doc = "5: Software pretrigger 1"]
_101 = 5,
#[doc = "6: Software pretrigger 2"]
_110 = 6,
#[doc = "7: Software pretrigger 3"]
_111 = 7,
}
impl From<ADC1SWPRETRG_A> for u8 {
#[inline(always)]
fn from(variant: ADC1SWPRETRG_A) -> Self {
variant as _
}
}
#[doc = "Reader of field `ADC1SWPRETRG`"]
pub type ADC1SWPRETRG_R = crate::R<u8, ADC1SWPRETRG_A>;
impl ADC1SWPRETRG_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> ADC1SWPRETRG_A {
match self.bits {
0 => ADC1SWPRETRG_A::_000,
1 => ADC1SWPRETRG_A::_001,
2 => ADC1SWPRETRG_A::_010,
3 => ADC1SWPRETRG_A::_011,
4 => ADC1SWPRETRG_A::_100,
5 => ADC1SWPRETRG_A::_101,
6 => ADC1SWPRETRG_A::_110,
7 => ADC1SWPRETRG_A::_111,
_ => unreachable!(),
}
}
#[doc = "Checks if the value of the field is `_000`"]
#[inline(always)]
pub fn is_000(&self) -> bool {
*self == ADC1SWPRETRG_A::_000
}
#[doc = "Checks if the value of the field is `_001`"]
#[inline(always)]
pub fn is_001(&self) -> bool {
*self == ADC1SWPRETRG_A::_001
}
#[doc = "Checks if the value of the field is `_010`"]
#[inline(always)]
pub fn is_010(&self) -> bool {
*self == ADC1SWPRETRG_A::_010
}
#[doc = "Checks if the value of the field is `_011`"]
#[inline(always)]
pub fn is_011(&self) -> bool {
*self == ADC1SWPRETRG_A::_011
}
#[doc = "Checks if the value of the field is `_100`"]
#[inline(always)]
pub fn is_100(&self) -> bool {
*self == ADC1SWPRETRG_A::_100
}
#[doc = "Checks if the value of the field is `_101`"]
#[inline(always)]
pub fn is_101(&self) -> bool {
*self == ADC1SWPRETRG_A::_101
}
#[doc = "Checks if the value of the field is `_110`"]
#[inline(always)]
pub fn is_110(&self) -> bool {
*self == ADC1SWPRETRG_A::_110
}
#[doc = "Checks if the value of the field is `_111`"]
#[inline(always)]
pub fn is_111(&self) -> bool {
*self == ADC1SWPRETRG_A::_111
}
}
#[doc = "Write proxy for field `ADC1SWPRETRG`"]
pub struct ADC1SWPRETRG_W<'a> {
w: &'a mut W,
}
impl<'a> ADC1SWPRETRG_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: ADC1SWPRETRG_A) -> &'a mut W {
{
self.bits(variant.into())
}
}
#[doc = "Software pretrigger disabled"]
#[inline(always)]
pub fn _000(self) -> &'a mut W {
self.variant(ADC1SWPRETRG_A::_000)
}
#[doc = "Reserved (do not use)"]
#[inline(always)]
pub fn _001(self) -> &'a mut W {
self.variant(ADC1SWPRETRG_A::_001)
}
#[doc = "Reserved (do not use)"]
#[inline(always)]
pub fn _010(self) -> &'a mut W {
self.variant(ADC1SWPRETRG_A::_010)
}
#[doc = "Reserved (do not use)"]
#[inline(always)]
pub fn _011(self) -> &'a mut W {
self.variant(ADC1SWPRETRG_A::_011)
}
#[doc = "Software pretrigger 0"]
#[inline(always)]
pub fn _100(self) -> &'a mut W {
self.variant(ADC1SWPRETRG_A::_100)
}
#[doc = "Software pretrigger 1"]
#[inline(always)]
pub fn _101(self) -> &'a mut W {
self.variant(ADC1SWPRETRG_A::_101)
}
#[doc = "Software pretrigger 2"]
#[inline(always)]
pub fn _110(self) -> &'a mut W {
self.variant(ADC1SWPRETRG_A::_110)
}
#[doc = "Software pretrigger 3"]
#[inline(always)]
pub fn _111(self) -> &'a mut W {
self.variant(ADC1SWPRETRG_A::_111)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x07 << 9)) | (((value as u32) & 0x07) << 9);
self.w
}
}
#[doc = "ADC1 pretrigger source select\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum ADC1PRETRGSEL_A {
#[doc = "0: PDB pretrigger (default)"]
_00 = 0,
#[doc = "1: TRGMUX pretrigger"]
_01 = 1,
#[doc = "2: Software pretrigger"]
_10 = 2,
}
impl From<ADC1PRETRGSEL_A> for u8 {
#[inline(always)]
fn from(variant: ADC1PRETRGSEL_A) -> Self {
variant as _
}
}
#[doc = "Reader of field `ADC1PRETRGSEL`"]
pub type ADC1PRETRGSEL_R = crate::R<u8, ADC1PRETRGSEL_A>;
impl ADC1PRETRGSEL_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> crate::Variant<u8, ADC1PRETRGSEL_A> {
use crate::Variant::*;
match self.bits {
0 => Val(ADC1PRETRGSEL_A::_00),
1 => Val(ADC1PRETRGSEL_A::_01),
2 => Val(ADC1PRETRGSEL_A::_10),
i => Res(i),
}
}
#[doc = "Checks if the value of the field is `_00`"]
#[inline(always)]
pub fn is_00(&self) -> bool {
*self == ADC1PRETRGSEL_A::_00
}
#[doc = "Checks if the value of the field is `_01`"]
#[inline(always)]
pub fn is_01(&self) -> bool {
*self == ADC1PRETRGSEL_A::_01
}
#[doc = "Checks if the value of the field is `_10`"]
#[inline(always)]
pub fn is_10(&self) -> bool {
*self == ADC1PRETRGSEL_A::_10
}
}
#[doc = "Write proxy for field `ADC1PRETRGSEL`"]
pub struct ADC1PRETRGSEL_W<'a> {
w: &'a mut W,
}
impl<'a> ADC1PRETRGSEL_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: ADC1PRETRGSEL_A) -> &'a mut W {
unsafe { self.bits(variant.into()) }
}
#[doc = "PDB pretrigger (default)"]
#[inline(always)]
pub fn _00(self) -> &'a mut W {
self.variant(ADC1PRETRGSEL_A::_00)
}
#[doc = "TRGMUX pretrigger"]
#[inline(always)]
pub fn _01(self) -> &'a mut W {
self.variant(ADC1PRETRGSEL_A::_01)
}
#[doc = "Software pretrigger"]
#[inline(always)]
pub fn _10(self) -> &'a mut W {
self.variant(ADC1PRETRGSEL_A::_10)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub unsafe fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x03 << 12)) | (((value as u32) & 0x03) << 12);
self.w
}
}
impl R {
#[doc = "Bit 0 - ADC0 trigger source select"]
#[inline(always)]
pub fn adc0trgsel(&self) -> ADC0TRGSEL_R {
ADC0TRGSEL_R::new((self.bits & 0x01) != 0)
}
#[doc = "Bits 1:3 - ADC0 software pretrigger sources"]
#[inline(always)]
pub fn adc0swpretrg(&self) -> ADC0SWPRETRG_R {
ADC0SWPRETRG_R::new(((self.bits >> 1) & 0x07) as u8)
}
#[doc = "Bits 4:5 - ADC0 pretrigger source select"]
#[inline(always)]
pub fn adc0pretrgsel(&self) -> ADC0PRETRGSEL_R {
ADC0PRETRGSEL_R::new(((self.bits >> 4) & 0x03) as u8)
}
#[doc = "Bit 8 - ADC1 trigger source select"]
#[inline(always)]
pub fn adc1trgsel(&self) -> ADC1TRGSEL_R {
ADC1TRGSEL_R::new(((self.bits >> 8) & 0x01) != 0)
}
#[doc = "Bits 9:11 - ADC1 software pretrigger sources"]
#[inline(always)]
pub fn adc1swpretrg(&self) -> ADC1SWPRETRG_R {
ADC1SWPRETRG_R::new(((self.bits >> 9) & 0x07) as u8)
}
#[doc = "Bits 12:13 - ADC1 pretrigger source select"]
#[inline(always)]
pub fn adc1pretrgsel(&self) -> ADC1PRETRGSEL_R {
ADC1PRETRGSEL_R::new(((self.bits >> 12) & 0x03) as u8)
}
}
impl W {
#[doc = "Bit 0 - ADC0 trigger source select"]
#[inline(always)]
pub fn adc0trgsel(&mut self) -> ADC0TRGSEL_W {
ADC0TRGSEL_W { w: self }
}
#[doc = "Bits 1:3 - ADC0 software pretrigger sources"]
#[inline(always)]
pub fn adc0swpretrg(&mut self) -> ADC0SWPRETRG_W {
ADC0SWPRETRG_W { w: self }
}
#[doc = "Bits 4:5 - ADC0 pretrigger source select"]
#[inline(always)]
pub fn adc0pretrgsel(&mut self) -> ADC0PRETRGSEL_W {
ADC0PRETRGSEL_W { w: self }
}
#[doc = "Bit 8 - ADC1 trigger source select"]
#[inline(always)]
pub fn adc1trgsel(&mut self) -> ADC1TRGSEL_W {
ADC1TRGSEL_W { w: self }
}
#[doc = "Bits 9:11 - ADC1 software pretrigger sources"]
#[inline(always)]
pub fn adc1swpretrg(&mut self) -> ADC1SWPRETRG_W {
ADC1SWPRETRG_W { w: self }
}
#[doc = "Bits 12:13 - ADC1 pretrigger source select"]
#[inline(always)]
pub fn adc1pretrgsel(&mut self) -> ADC1PRETRGSEL_W {
ADC1PRETRGSEL_W { w: self }
}
}