stm32: remove TIM11 as time driver candidate (only 1 CC channel)
This commit is contained in:
parent
44534abf32
commit
86ccf0bc3e
3 changed files with 0 additions and 5 deletions
|
@ -144,8 +144,6 @@ time-driver-tim5 = ["_time-driver"]
|
|||
time-driver-tim8 = ["_time-driver"]
|
||||
## Use TIM9 as time driver
|
||||
time-driver-tim9 = ["_time-driver"]
|
||||
## Use TIM11 as time driver
|
||||
time-driver-tim11 = ["_time-driver"]
|
||||
## Use TIM12 as time driver
|
||||
time-driver-tim12 = ["_time-driver"]
|
||||
## Use TIM15 as time driver
|
||||
|
|
|
@ -189,7 +189,6 @@ fn main() {
|
|||
Some("tim5") => "TIM5",
|
||||
Some("tim8") => "TIM8",
|
||||
Some("tim9") => "TIM9",
|
||||
Some("tim11") => "TIM11",
|
||||
Some("tim12") => "TIM12",
|
||||
Some("tim15") => "TIM15",
|
||||
Some("tim20") => "TIM20",
|
||||
|
|
|
@ -52,8 +52,6 @@ type T = peripherals::TIM5;
|
|||
type T = peripherals::TIM8;
|
||||
#[cfg(time_driver_tim9)]
|
||||
type T = peripherals::TIM9;
|
||||
#[cfg(time_driver_tim11)]
|
||||
type T = peripherals::TIM11;
|
||||
#[cfg(time_driver_tim12)]
|
||||
type T = peripherals::TIM12;
|
||||
#[cfg(time_driver_tim15)]
|
||||
|
|
Loading…
Reference in a new issue