Page 1 of 1

AVR ATMega128L + Nordic nRF2401

Posted: Tue Mar 08, 2005 5:04 am
by danieleborsari
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

Posted: Tue Mar 08, 2005 6:09 am
by Lajon
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