mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-06 03:53:42 +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")
|
|
}
|