tinygo/src/runtime/runtime_nrf_bare.go
2022-12-19 23:20:11 +01:00

9 строки
110 Б
Go

//go:build nrf && !softdevice
package runtime
import "device/arm"
func waitForEvents() {
arm.Asm("wfe")
}