github.com/tinygo-org/tinygo@v0.31.3-0.20240404173401-90b0bf646c27/src/runtime/runtime_nrf_bare.go (about)

     1  //go:build nrf && !softdevice
     2  
     3  package runtime
     4  
     5  import "device/arm"
     6  
     7  func waitForEvents() {
     8  	arm.Asm("wfe")
     9  }