You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 16, 2021. It is now read-only.
My application works fine with the 1.1.4 release for the NANO BLE. Updating to 1.1.5 results in a wire compilation error. Then updating to 1.1.6 results in a failing application. The activity on the board indicates a blinking LED_BUILTIN (PIN_LED) (13), 4 slow blinks, then 4 fast blinks.
The application I run successfully with the 1.1.4 release doesn't use this LED at all, so it must be some alert or panic indication coming out of the mbed?
Digging and debugging a little deeper it appears that the use of the mbed KvStore function call kv_get causes this panic indication on the Led;
res = kv_get("/kv/check_valid", KvBuf, sizeof(KvBuf), &actualSize);
Any thoughts?
The text was updated successfully, but these errors were encountered:
The meaning of that blink pattern is explained here: #90 (comment)
Thanks and I can confirm it crashes in kv_get. Any thoughts on why the use of the KvStore fails in the 1.1.6 version and not in the 1.1.4 release? I use the KvStore to store parameter values due to the lack of an EEPROM on the Nano BLE boards. KvStore seemed to offer a nice alternative to create a sort of registry of values.
My application works fine with the 1.1.4 release for the NANO BLE. Updating to 1.1.5 results in a wire compilation error. Then updating to 1.1.6 results in a failing application. The activity on the board indicates a blinking LED_BUILTIN (PIN_LED) (13), 4 slow blinks, then 4 fast blinks.
The application I run successfully with the 1.1.4 release doesn't use this LED at all, so it must be some alert or panic indication coming out of the mbed?
Digging and debugging a little deeper it appears that the use of the mbed KvStore function call kv_get causes this panic indication on the Led;
res = kv_get("/kv/check_valid", KvBuf, sizeof(KvBuf), &actualSize);
Any thoughts?
The text was updated successfully, but these errors were encountered: