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
Yes i have read the manual, i suppose what im confused with is what the hex numbers refer to with regards to that section??
Well, just glancing at it, you have 144 bits in positions numbered 0..143.
So, all you have to do is divide these 144 bits into groups of eight, and consider that a 2-digit hex number corresponds to an 8-bit binary number...
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?