Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Timers/
DSTM32_Timer.cs38 this.timerCounterLengthInBits = (int)Math.Floor(Math.Log(initialLimit, 2)) + 1; in STM32_Timer()
39 if(this.timerCounterLengthInBits > 32) in STM32_Timer()
327 .WithValueField(0, timerCounterLengthInBits, in STM32_Timer()
337 .WithReservedBits(timerCounterLengthInBits, 32 - timerCounterLengthInBits) in STM32_Timer()
365 .WithValueField(0, timerCounterLengthInBits, writeCallback: (_, val) => in STM32_Timer()
374 .WithReservedBits(timerCounterLengthInBits, 32 - timerCounterLengthInBits) in STM32_Timer()
398 ….WithValueField(0, timerCounterLengthInBits, valueProviderCallback: _ => (uint)ccTimers[j].Limit, … in STM32_Timer()
406 .WithReservedBits(timerCounterLengthInBits, 32 - timerCounterLengthInBits) in STM32_Timer()
554 private readonly int timerCounterLengthInBits; field in Antmicro.Renode.Peripherals.Timers.STM32_Timer