I don’t fully understand the nRF51 event NRF_RADIO->END. NRF_RADIO->END identifies the completion of a packet transmission or reception. My question is what triggers NRF_RADIO->END? For example, on the completion of a receiving packet, is NRF_RADIO->END set when the number of bytes received equals (LENGTH + STATLEN)? For example
LENGTH = 3 // 8-bit field in received packet
PCNF1.STATLEN = 2 // number of bytes in static section of the payload
Does NRF_RADIO->END change to 1 when the number of received bytes equals 5? Is packet length the criteria used for triggering NRF_RADIO->END?