mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-12 06:53:40 +00:00
14 lines
189 B
Go
14 lines
189 B
Go
// +build stm32f4disco
|
|
|
|
package main
|
|
|
|
import "machine"
|
|
|
|
var (
|
|
// These pins correspond to LEDs on the discovery
|
|
// board
|
|
pwm = &machine.TIM4
|
|
pinA = machine.PD12
|
|
pinB = machine.PD13
|
|
)
|