mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 02:27:48 +00:00
10 lines
110 B
Go
10 lines
110 B
Go
//go:build nrf && !softdevice
|
|
|
|
package runtime
|
|
|
|
import "device/arm"
|
|
|
|
func waitForEvents() {
|
|
arm.Asm("wfe")
|
|
}
|