• Saving values during debugging to a file
    Can I save values during debugging to a file. Like I have array of 10000 bytes which I want to analyse later on.
  • Necessary to save used registers in assembly ?
    I am using assembly language routines called from C code. Within the assembly routines, is it necessary to save the registers used? Ex: MY_ASM_ROUTINE: PUSH ACC ; necessary ? CLR A ; overwrite...
  • Interrupt masking during debugging
    For example, if you need to debug an application but do not want the code to enter the interrupt service routine during the stepping, the interrupt request can be masked. This is done by setting the...
  • run pwm during interrupt
    Hi every body i am using an LPC-1768 MC to run a pwm. every thing works good. but when a non-pwm long-time (500ms) interrupt occurs, the pwm doesn't work. is there any trick or setup to continue running...
  • Debugging - Save register (or variable) content to a file
    Hi, I would like to know whether there is any way to save the content of a register (or a variable) to a txt file in my PC for debugging porpuses (plot the data). I am using Keil uVision 5 and the...