Files
tinygo/src/machine/machine_stm32.go
T
2019-05-26 20:48:50 +02:00

19 lines
184 B
Go

// +build stm32
package machine
// Peripheral abstraction layer for the stm32.
type PinMode uint8
const (
portA Pin = iota * 16
portB
portC
portD
portE
portF
portG
portH
)