Home
last modified time | relevance | path

Searched refs:timeCompareInterruptEnable (Results 1 – 1 of 1) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/UART/
DEFR32xG2_USART_0.cs209 .WithFlag(14, out timeCompareInterruptEnable[0], name: "TCMP0IEN") in BuildRegistersCollection()
210 .WithFlag(15, out timeCompareInterruptEnable[1], name: "TCMP1IEN") in BuildRegistersCollection()
211 .WithFlag(16, out timeCompareInterruptEnable[2], name: "TCMP2IEN") in BuildRegistersCollection()
742 … || (timeCompareInterruptEnable[0].Value && timeCompareInterrupt[0].Value) in UpdateInterrupts()
743 … || (timeCompareInterruptEnable[1].Value && timeCompareInterrupt[1].Value) in UpdateInterrupts()
744 … || (timeCompareInterruptEnable[2].Value && timeCompareInterrupt[2].Value)); in UpdateInterrupts()
799 …private IFlagRegisterField[] timeCompareInterruptEnable = new IFlagRegisterField[NumberOfTimeCompa… field in Antmicro.Renode.Peripherals.UART.EFR32xG2_USART_0