commit
edb3989b57
1 changed files with 14 additions and 8 deletions
|
@ -1,6 +1,8 @@
|
||||||
//! Timers, PWM, quadrature decoder.
|
//! Timers, PWM, quadrature decoder.
|
||||||
|
//!
|
||||||
|
|
||||||
//! Timer inheritance
|
//! Timer inheritance
|
||||||
|
//!
|
||||||
|
|
||||||
// sealed:
|
// sealed:
|
||||||
//
|
//
|
||||||
|
@ -14,16 +16,20 @@
|
||||||
// | +--------------------------------------|-----------+
|
// | +--------------------------------------|-----------+
|
||||||
// +----------------------------------------------------+
|
// +----------------------------------------------------+
|
||||||
|
|
||||||
//! BasicInstance --> CaptureCompare16bitInstance --+--> ComplementaryCaptureCompare16bitInstance
|
//! ```text
|
||||||
//! |
|
//! BasicInstance --> CaptureCompare16bitInstance --+--> ComplementaryCaptureCompare16bitInstance
|
||||||
//! +--> CaptureCompare32bitInstance
|
//! |
|
||||||
|
//! +--> CaptureCompare32bitInstance
|
||||||
|
//! ```
|
||||||
//!
|
//!
|
||||||
//! mapping:
|
//! Mapping:
|
||||||
//!
|
//!
|
||||||
//! BasicInstance --> Basic Timer
|
//! | trait | timer |
|
||||||
//! CaptureCompare16bitInstance --> 1-channel Timer, 2-channel Timer, General Purpose 16-bit Timer
|
//! | :----------------------------------------: | ------------------------------------------------------------------------------------------------- |
|
||||||
//! CaptureCompare32bitInstance --> General Purpose 32-bit Timer
|
//! | [BasicInstance] | Basic Timer |
|
||||||
//! ComplementaryCaptureCompare16bitInstance --> 1-channel with one complentary Timer, 2-channel with one complentary Timer, Advance Control Timer
|
//! | [CaptureCompare16bitInstance] | 1-channel Timer, 2-channel Timer, General Purpose 16-bit Timer |
|
||||||
|
//! | [CaptureCompare32bitInstance] | General Purpose 32-bit Timer |
|
||||||
|
//! | [ComplementaryCaptureCompare16bitInstance] | 1-channel with one complentary Timer, 2-channel with one complentary Timer, Advance Control Timer |
|
||||||
|
|
||||||
#[cfg(not(stm32l0))]
|
#[cfg(not(stm32l0))]
|
||||||
pub mod complementary_pwm;
|
pub mod complementary_pwm;
|
||||||
|
|
Loading…
Reference in a new issue