Bazis,
1) we have downloaded the new version as you suggested
2) created a new project as described in your blog post with target nrf51822
3) created a very simple led blinking project:
#include <mbed.h>
DigitalOut g_LED(LED1);
int main()
{
for (;;)
{
g_LED = 1;
wait_ms(500);
g_LED = 0;
wait_ms(500);
}
}
When we launch debug, we get this error from the GDB Session panel:
Cannot resolve the address of _estack. Skipping stack pointer validity check.
(Same board is used with normal(without mbed) nrf51822 board and everything works as expected)
And everything seems to be frozen. No breakpoints working.
Is maybe a mistake of us?
Another question is that it seems nrf52832 is not supported using mbed…is there a workaround?
Thanks a lot