Files
tinygo/src/machine/machine_stm32.go
T
Yusuke Mitsuki 1322f404a6 stm32: add support for the STM32F4Discovery
Signed-off-by: Yusuke Mitsuki <mickey.happygolucky@gmail.com>
2019-04-13 13:32:05 +02:00

19 lines
181 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
portH
)