Ben, If you want to use vscode use this extension. https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug
It gives you the debug functionality that you are asking about. There are also a lot of other powerful features if you dig into setting it up including ITM graphing. --Brennan On Wed, Jan 1, 2020, 1:38 AM Disruptive Solutions < disruptivesolution...@gmail.com> wrote: > Thank you David! I do not need to make a new video, your video is very > clear! And I always give credits to the people who deserve it ;-) > > The https://mcuoneclipse.com/2012/10/27/assembly-instruction-stepping/ is > very useful and this seems to make Eclipse the only IDE that has this > feature..? It seems to exclude on this criteria Visual Studio Code... that > is a shame..? > > I have some NX questions and keep getting hardfaults.... the first > hardfault I solved ;-) It was a too large FB size. > > It seems strange that by not selecting CONFIG_NX_KBD it stil is trying to > compile stuff that has relations with this config? > > src/cnxwidget.cxx:691:65: error: 'class NXWidgets::CWidgetControl' has no > member named 'doubleClick' > if (m_flags.doubleClickable && hasFocus() && > m_widgetControl->doubleClick()) > > And other problems. It seems I have to make changes in the NX side of Nuttx > to get this going..? > > Ben > > Op zo 29 dec. 2019 om 19:44 schreef Disruptive Solutions < > disruptivesolution...@gmail.com>: > > > It looks like its happening here... (type previous mail: graphical) > > > > stm32_ltdc_lclear(overlay); > > > > /* Set layers framebuffer */ > > > > stm32_ltdc_lframebuffer(layer); <---?? > > > > Op zo 29 dec. 2019 om 19:39 schreef Disruptive Solutions < > > disruptivesolution...@gmail.com>: > > > >> I have most of it done for porting the grapical TFT-LCD ILI9341 through > >> SPI... > >> > >> But I get a PANIC when it is trying to do: > >> stm32_ltds_linit(LTDC_LAYER_L1); in stm32_ltdc.c > >> > >> Does someone know this? > >> > >> Ben > >> > >> /* Initialize ltdc layer */ > >> > >> lcdinfo("Initialize ltdc layer\n"); > >> stm32_ltdc_linit(LTDC_LAYER_L1); > >> #ifdef CONFIG_STM32_LTDC_L2 > >> stm32_ltdc_linit(LTDC_LAYER_L2); > >> #endif > >> > >> >