I think this is in normal Espruino nRF52 builds:
https://github.com/espruino/Espruino/blob/master/libs/bluetooth/bluetooth_utils.c#L89 https://github.com/espruino/Espruino/blob/master/libs/bluetooth/bluetooth_utils.c#L100
As I understand it you have 2 basic address types that everyone uses:
public
random
There may be others but those are the 2 that get the most use.
@Gordon started
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
I think this is in normal Espruino nRF52 builds:
https://github.com/espruino/Espruino/blob/master/libs/bluetooth/bluetooth_utils.c#L89
https://github.com/espruino/Espruino/blob/master/libs/bluetooth/bluetooth_utils.c#L100
As I understand it you have 2 basic address types that everyone uses:
public
= Guaranteed to be unique in the worldrandom
= Guaranteed to be unique locally (Espruino uses this one)There may be others but those are the 2 that get the most use.