Trait r3_port_arm_m::SysTickOptions
source · pub trait SysTickOptions {
;
;
;
;
}
Expand description
The configuration for the implementation of PortTimer
based on SysTick
(tickful).
Required Associated Constants§
source
The numerator of the input clock frequency of SysTick.
Provided Associated Constants§
source
The denominator of the input clock frequency of SysTick.
Defaults to 1
.
source
The interrupt priority of the SysTick interrupt line.
Defaults to 0xc0
.
source
The period of ticks, measured in SysTick cycles. Must be in range
0..=0x1000000
.
Defaults to
(FREQUENCY / FREQUENCY_DENOMINATOR / 100).max(1).min(0x1000000)
(100Hz).