github.com/aykevl/tinygo@v0.5.0/src/machine/machine_stm32.go (about)

     1  // +build stm32
     2  
     3  package machine
     4  
     5  // Peripheral abstraction layer for the stm32.
     6  
     7  type GPIOMode uint8
     8  
     9  const (
    10  	portA = iota * 16
    11  	portB
    12  	portC
    13  	portD
    14  	portE
    15  	portF
    16  	portG
    17  	portH
    18  )