pub unsafe trait CfgTimer: CfgBase<System: KernelTimer> {
    // Required method
    fn timer_define<Properties: Bag>(
        &mut self,
        descriptor: TimerDescriptor<Self::System>,
        properties: Properties
    ) -> <Self::System as KernelTimer>::RawTimerId;
}
Expand description

A low-level configurator trait providing a method to define a timwer in the kernel static configuration process.

Safety

See the module documentation.

Stability

See the module documentation.

Required Methods§

source

fn timer_define<Properties: Bag>( &mut self, descriptor: TimerDescriptor<Self::System>, properties: Properties ) -> <Self::System as KernelTimer>::RawTimerId

Implementors§