• Break condition in while loop
    Following is my program. I am trying to read characters at different baud rate and if no character is received within 10 seconds I want to break out of the loop and similarly if any character other than...
  • swithc-case question
    When I write a simple switch case program: ---------- source : void main() { char e = 0; int a=0; int b=2; int c=3; switch(e) { case 1: a = a + b; break; case 2: a = a + c; break; ...
  • Break on IDATA
    Hej I am using uVision 2.37 with C51 version 7.05C. I would like to set a break point in a stack overflow. Can anyone tell me how to set a break point on write access to I:0x7f Thank you
  • Break on IDATA
    Hej I am using uVision 2.37 with C51 version 7.05C. I would like to set a break point in a stack overflow. Can anyone tell me how to set a break point on write access to I:0x7f Thank you
  • RTX kernel: exception on Task exit by breaking out of while(1) loop
    Hi, I was experimenting with the Tasks in RTX kernel. What i observed was that 1) if the highest priority task (at some point of time. Need not be the highest among all the threads) exits...