stm32f7: add pwm

This commit is contained in:
Kenneth Bell
2021-05-09 13:26:29 -07:00
committed by Ron Evans
parent c43a41165a
commit ac54302301
4 changed files with 438 additions and 3 deletions
+11
View File
@@ -0,0 +1,11 @@
// +build stm32f7
package main
import "machine"
var (
pwm = &machine.TIM1
pinA = machine.PA8
pinB = machine.PA9
)