Hello. I'm trying to implement my own RF protocol, with the help of reference manual and examples provided here I was able to come up with this: http://pastebin.com/t2nhkj2B
It's a barebone implementation just to get something to transmit, unfortunately I wasn't able to do so, the problem is that the receiver doesn't get any packets, the EVENTS_END event is not occuring even though the transmitter keeps sending new packets every second. The radio configuration is the same for both transmitter and receiver (as shown in radio_configure() function).
Reception is enabled by calling radio_recv() (line 107) and the actual radio transaction handling is happening in radio_do_work() (line 54).
Could someone direct me to a solution to this problem or at least point out what I'm doing wrong? Thank you