Files
tinygo/src/machine/machine_stm32.go
T
2018-12-18 17:17:18 +01:00

18 lines
174 B
Go

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