Hi could anyone explain what the below means involving the configuration of the nrf24e1 radio:
transmitter:
const RFConfig txconf = { 15, 0x08, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x12, 0x34, 0x56, 0x78, 0x83, 0x6c, 0x04 };
Receiver:
}; const RFConfig rxconf = { 15, 0x08, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x87, 0x65, 0x43, 0x21, 0x83, 0x6c, 0x05 };
I am of the belief it is for the configuring of shockburst and payload (from manual) but am unsure what the numbers are for (in decimal-seems to not be obvious as what they are for)
your knowledgable help is greatly appreciated.
Jon
Well there are 15 hex numbers for each which in decimal are:
tx:8 8 0 0 0 0 0 0 28 52 86 120 131 108 4
rx:8 8 0 0 0 0 0 0 135 101 67 33 131 108 5
Which is 24 bytes and 96 bits but im not sure how they correspond to the 144 bits?
"Well there are 15 hex numbers ... Which is 24 bytes"
Pardon?
How many bits does a 2-digit hex number represent?
Thence, how many bits do fifteen 2-digit hex numbers represent?
Ok, thats 120 bits :-) leaving 24 bits......im guessing that these 24 bits correspond to the 24 bits used for Test in the manual, is this correct?