AVR ATMega128L + Nordic nRF2401

hi,

I’m working on a project to implement communication between two modules via wireless. I’m using shockburst techology and I’d like to know this:

How is the receiver able to receive valid packet transmitted from the transmitter?

through address wrote in Tx packet?

if it’s so…in rx Code it’s enough to insert a if-condition (C Code) to match up receiver address?

thanks

It is explaned quite good in the data sheet but in short:

You configure the receiver with the address you want to listen to. When data arrives with a matching address (and correct CRC) you get the data only. So your code never needs to deal with the address on the receiver side (except for the initial configuration).

/Lars