Skip to content

Commit 7433032

Browse files
author
Juhani Puurula
committed
Added known issue re: NVM. Added links to issues in known issues list
1 parent ce9d6ca commit 7433032

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

README.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -235,10 +235,16 @@ If you have problems, you can review the [documentation](https://os.mbed.com/doc
235235

236236
## Known issues
237237

238-
The mesh interface function `mesh.get_mac_address()` has inadvertedly been changed in Mbed OS 5.9 to return the actual MAC address and not the EUI64 address. In order to print the actual EUI64 address for Thread commissioning, use the following code snippet after `printf("connected. IP = %s\n", mesh.get_ip_address());`:
239-
```
240-
uint8_t eui64[8] = {0,0,0,0,0,0,0,0};
241-
mesh.device_eui64_get(eui64);
242-
printf("EUI64 address = %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x\n", eui64[0], eui64[1], eui64[2], eui64[3], eui64[4], eui64[5], eui64[6], eui64[7]);
243-
```
244-
The issue will be fixed in Mbed OS 5.9.1 and printing the EUI64 separately will become unnecessary.
238+
1. https://github.com/ARMmbed/mbed-os-example-mesh-minimal/issues/188
239+
240+
The mesh interface function `mesh.get_mac_address()` has inadvertedly been changed in Mbed OS 5.9 to return the actual MAC address and not the EUI64 address. In order to print the actual EUI64 address for Thread commissioning, use the following code snippet after `printf("connected. IP = %s\n", mesh.get_ip_address());`:
241+
```
242+
uint8_t eui64[8] = {0,0,0,0,0,0,0,0};
243+
mesh.device_eui64_get(eui64);
244+
printf("EUI64 address = %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x\n", eui64[0], eui64[1], eui64[2], eui64[3], eui64[4], eui64[5], eui64[6], eui64[7]);
245+
```
246+
The issue will be fixed in Mbed OS 5.9.1 and printing the EUI64 separately will become unnecessary.
247+
248+
1. https://github.com/ARMmbed/mbed-os-example-mesh-minimal/issues/190
249+
250+
Thread is not able to use filesystem at the moment. Saving configuration to NVM is unavailable.

0 commit comments

Comments
 (0)