blob: 02ab51a659fdcf4f30bb415ce36f05dd45218f8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// +build bluepill stm32f4disco
package machine
// Peripheral abstraction layer for the stm32.
const (
portA Pin = iota * 16
portB
portC
portD
portE
portF
portG
portH
)
|