Code hangs when using SPI3

we are using SPI3 in nrf52840 with nrf SDK 16.0

we are using this as below

1. SPI3 init -polling mode  

2. SPI3 unint

3. SPI3 init - DMA mode

4. SPI3 unint 

5. SPI3 init -polling mode

6. SPI3 unit

 

The code gets hanged when we write through SPI3 after SPI3 is intialized in polling mode (STEP 5) in above steps 

Can anyone help us in identifying the reason for the hang? 

Thanks in advance,

 

 

Madhukeshwar P

Parents Reply Children
  • Do you use NRFX_SPIM_FLAG_HOLD_XFER when transferring your SPI messages?

    I have seen occasions of this behavior during uninit when the NRFX_SPIM_FLAG_HOLD_XFER is being used, and they used some event + PPI to trigger actually sending the transfer. 

    In this case, p_cb->transfer_in_progress is set to true in nrfx_spim_xfer(), but the NRF_SPIM->TASKS_START is never triggered. Later, when the nrfx_uninit() is being called, this part:

        if (p_cb->handler)
        {
            nrf_spim_int_disable(p_spim, NRF_SPIM_ALL_INTS_MASK);
            if (p_cb->transfer_in_progress)
            {
                // Ensure that SPI is not performing any transfer.
                nrf_spim_task_trigger(p_spim, NRF_SPIM_TASK_STOP);
                while (!nrf_spim_event_check(p_spim, NRF_SPIM_EVENT_STOPPED))
                {}
                p_cb->transfer_in_progress = false;
            }
        }

    will try to stop the ongoing transaction, and wait for the NRF_SPIM_EVENT_STOPPED, which will never occur, since it was not started. 

    Could this be what you are seeing?

    BR,

    Edvin

  • Hi,

    Thanks for the reply

    Do you use NRFX_SPIM_FLAG_HOLD_XFER when transferring your SPI messages?

    we are using NRF_DRV_SPI_FLAG_HOLD_XFER during DMA mode. 


    What API is hanging? And how did you disable it in step 4, and how did you enable it in step 5?

    In API- spim_xfer the code is hanging. that to in the below mentioned while loop. 
    I have checked the flow. NRF_SPIM_TASK_START is already triggered. only NRF_SPIM_EVENT_ENDRX is generated , but not the  NRF_SPIM_EVENT_ENDTX, so It got stuck the while loop.

     if (!p_cb->handler)
        {
            while (!nrf_spim_event_check(p_spim, NRF_SPIM_EVENT_END)){}

    To disable spi3 we are using, nrf_drv_spi_uninit() and then nrf_spim_event_clear to clear NRF_SPIM_EVENT_END.

    Could this be what you are seeing?

    no this is not the case.


  • Madhukeshwar said:
    NRF_SPIM_TASK_START is already triggered. only NRF_SPIM_EVENT_ENDRX is generated , but not the  NRF_SPIM_EVENT_ENDTX, so It got stuck the while loop.

    Then I guess it either didn't have the time to properly start, or it wasn't started before the uninit, which will hang like you see if you are using the HOLD_XFER flag. 

    To work around this, make sure that you don't have a pending transaction with NRFX_SPIM_FLAG_HOLD_XFER, by transmitting it. 

Related