Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
I'm using PlatformIO for debugging a mbed LPC1768 board (with mbed2). I made a small test program with on one counter variable and a blinky led. I set one watchpoint for the counter variable.
#include "mbed.h" DigitalOut led1(LED1); int counter; int main() { led1 = 1; while(1) { printf("counter %i\n", counter); counter++; led1 = !led1; wait(1); } }The debugging process is very slow, it needs nearly 20s for starting debugging and over 5 seconds for each cycle. See also the discussion at https://community.platformio.org/t/pio-unified-debugger/1704/60 it seems it is a problem only with the mbed LPC1768 board.