mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-04 11:07:46 +00:00
1322f404a6
Signed-off-by: Yusuke Mitsuki <mickey.happygolucky@gmail.com>
19 lines
181 B
Go
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
|
|
)
|