mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-16 10:43:29 +00:00
12 lines
122 B
Go
12 lines
122 B
Go
//go:build stm32h7
|
|
|
|
package main
|
|
|
|
import "machine"
|
|
|
|
var (
|
|
pwm = &machine.TIM1
|
|
pinA = machine.PA8
|
|
pinB = machine.PA9
|
|
)
|