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.
Still having issues with this. When I connect through the PC with these instructions the device recognizes (and prints) the addresses correctly. This ensures that the applications can create ipv6 connections by converting the BLE address. This however does not function when the addresses are reversed.
Still having issues with this. When I connect through the PC with these instructions the device recognizes (and prints) the addresses correctly. This ensures that the applications can create ipv6 connections by converting the BLE address. This however does not function when the addresses are reversed.