Hi I have successfully set up my ARM SPI interface to use the nRF24 chip. At this time I'm trying to establish connection but I'm not sure I under stand the setup for comm.
on the receiver I use an ardunio and I see this
const uint64_t pipes[2] = { 0xABCDABCD71LL, 0x544d52687CLL }; // Radio pipe addresses for the 2 nodes to communicate.
There is no mention of a channel but in the config dump it claims the channel is 0xff.
On the host per the data sheet I see this.
This is confusing be because it looks like I need to set a 5 bit address on the host but a 5 byte address on the receiver? I also do not see how you set a channel?
My working host is sending
testdata_out[8] = { 0x25, 1 };
Is this an address of 0,0,0,0,0,0,0,0,0,5 ? and sending a payload of 1 with no specific channel.