blob: 4e28d03d853765b1bac9e7e5a8c9896bdab50959 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// +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
)
|