Hey all
In my current project I could set up an SPI communication, where the SPI-slave is on the nordic side. This works fine when I have __WFE() in my main loop, however when I replace __WFE() by nrf_pwr_mgmt_run() no SPI data is received anymore.
while (true) // endless main loop
{
if(NRF_LOG_PROCESS() == false)
{
// __WFE();
nrf_pwr_mgmt_run();
}
}
Can anyone give me a hint, why this does not work? And whats the