stm32/pwm: allow using the advanced timer instances too.
This commit is contained in:
parent
e40555e245
commit
006e567716
1
.vscode/settings.json
vendored
1
.vscode/settings.json
vendored
@ -6,6 +6,7 @@
|
||||
"rust-analyzer.checkOnSave.allTargets": false,
|
||||
"rust-analyzer.checkOnSave.command": "clippy",
|
||||
"rust-analyzer.cargo.noDefaultFeatures": true,
|
||||
"rust-analyzer.experimental.procAttrMacros": false,
|
||||
"rust-analyzer.checkOnSave.noDefaultFeatures": true,
|
||||
"rust-analyzer.cargo.target": "thumbv7em-none-eabi",
|
||||
"rust-analyzer.cargo.features": [
|
||||
|
@ -142,7 +142,7 @@ macro_rules! impl_timer {
|
||||
($inst:ident) => {
|
||||
impl crate::pwm::sealed::Instance for crate::peripherals::$inst {
|
||||
fn regs() -> crate::pac::timer::TimGp16 {
|
||||
crate::pac::$inst
|
||||
crate::pac::timer::TimGp16(crate::pac::$inst.0)
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user