mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-04 11:07:46 +00:00
47b667a4b8
Signed-off-by: Ron Evans <ron@hybridgroup.com>
18 lines
174 B
Go
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
|
|
)
|