• How to avoid BKPT 0xAB instruction
    I am using MCU Cortex-M4 and running keil on simulation. while running keil in debug mode, code is stopping at BKPT 0xAB instruction and we have to re initialize run to continue like break point. I am...
  • Debug is getting stuck at "BKPT 0XAB"
    Hi. I'm a newbie coding for an STM32F4 Discovery board. I'm working with some modified sample code and when I try to debug it, I'm getting stuck at "BKPT 0XAB", and I can't progress any further. ...
  • Using destructor without heap results in stop on BKPT 0xAB
    I'm using Keil 4.53 for some LPC1766 (ARM Cortex-M3). I tried this simple code: class Base { public: virtual ~Base() {} }; class Derived : public Base { public: int b; virtual ~Derived()...
  • SWI
    I am trying to execute the following SWI program. It doesnt execute the SWI function body. I have 0 errors and 0 warnings. Any help as to why? CODE: #include <LPC21xx.H> void __swi(8) Call1...
  • strange swi problems
    Hello, I'm working with the MCB2370 board which runs a small program that puts the adc value onto an oled display and blinks a led every second. I've created a 1 msec interrupt using timer0 which...