• dscope and serial simulation
    I was trying to simulate the serial ports. I have implemented a circular buffer, i read that the serial window allows you to input data by using the keyboard. Now do i need to use the assign commands...
  • Time measurement in DScope
    Does anybody know how I can measure the time between two breakpoints. I am using dscope monitor. Leo
  • where is dscope?
    Can anyone tell me where to download the evaluation copy of dscope? or maybe i doesn't exist at all?
  • Dscope Crashing
    Either my Target or Dscope is crashing after I have sent a few printf commands to the serial window (I am using MON515.HEX on my target). If I single step through the program every thing seems fine, but...
  • dscope problems
    When using dscope I'm getting strange occurrences in the serial window My code is: #include <stdio.h> main() { char c; while ((c = _getkey()) !=0x1B){ printf ("key = %c\n",c); } } ...