Hello, I'm trying to make two nRF52832 connect to each other on their own. Currently, it seems that the ble addresses are reversed when printed by ble_gap_addr_print in different parts of the program.
What would cause this?
Hello, I'm trying to make two nRF52832 connect to each other on their own. Currently, it seems that the ble addresses are reversed when printed by ble_gap_addr_print in different parts of the program.
What would cause this?
Where do you find the ble_gap_addr_print()
function? The addr
field in the ble_gap_addr_t struct is stored with LSB first. So If you are printing this from index 0->5 it will appear reversed.
The print was made as part of a contiki port by W Bober at nordic. When I connect to the boards through a PC, they print their normal addresses but when I make them connect through eachother, they are reversed. I am aware that the addresses should be LSB but what is confusing is that they seem to not be LSB in different scenarios.
The print was made as part of a contiki port by W Bober at nordic. When I connect to the boards through a PC, they print their normal addresses but when I make them connect through eachother, they are reversed. I am aware that the addresses should be LSB but what is confusing is that they seem to not be LSB in different scenarios.