tinygo/src/machine/machine_stm32_exti_syscfg_noenable.go
2022-02-28 10:19:26 +01:00

27 строки
434 Б
Go

//go:build stm32wlx
// +build stm32wlx
package machine
import (
"device/stm32"
"runtime/volatile"
)
func getEXTIConfigRegister(pin uint8) *volatile.Register32 {
switch (pin & 0xf) / 4 {
case 0:
return &stm32.SYSCFG.EXTICR1
case 1:
return &stm32.SYSCFG.EXTICR2
case 2:
return &stm32.SYSCFG.EXTICR3
case 3:
return &stm32.SYSCFG.EXTICR4
}
return nil
}
func enableEXTIConfigRegisters() {
// No registers to enable
}