Hi @EduardoZamora,
For the moment I do not have access to anything other than JN5169.
Furthermore, I could not access the link you provided, (it says that I have no access privileges to that link).
But perhaps you meant this link:
https://community.nxp.com/t5/Wireless-Connectivity/JN516x-MAC-Address/m-p/619433/highlight/true
I tried the solution described, by accessing to the MCU memory directly.
This is my code:
```
uint8_t extMac[8];
memset(extMac,0, 8);
memcpy(extMac, (uint8 *)(0x01001580), 8);
DBG_vPrintf(TRUE,"--> The ext address %x:%x:%x:%x:%x:%x:%x:%x\n",
extMac[0],extMac[1],extMac[2],extMac[3],extMac[4],extMac[5],extMac[6],extMac[7]);
```
However, the returned hex numbers are not the extended address of the device (I compared it to the ext address displayed in the bootloader when I flash the device).
Any ideas of what could I be doing wrong?
Any help is much appreciated even though JN5169 is not supported anymore.
Regards,
Al.