Trait r3_support_rza1::OsTimerOptions
source · pub trait OsTimerOptions {
;
;
;
;
;
;
;
}
Expand description
The options for use_os_timer!
.
Required Associated Constants§
source
The numerator of the timer clock rate of the timer.
Provided Associated Constants§
source
The base address of OS Timer’s memory-mapped registers.
source
The standby control register’s memory address and bit position used to enable the clock supply to OS Timer.
Defaults to Some((0xfcfe0428, 1))
(STBCR5.MSTP51).
source
The denominator of the timer clock rate of the timer.
Defaults to 1
.
source
The maximum permissible timer interrupt latency, measured in hardware timer cycles.
Defaults to min(FREQUENCY * 60 / FREQUENCY_DENOMINATOR, 0x40000000)
.
source
The interrupt priority of the timer interrupt line.
Defaults to 0xc0
.
source
OS Timer’s interrupt number.