Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
02/15/03 19:18
Read: times


 
#39141 - RE: Debug problem
Responding to: ???'s previous message
This is the extantion of the interrupt function, but steel according to the debugger ArrLen and chr stay at their init values after the assignment.
void SerialPort(void) interrupt 4 using 2
{
if (RI == 1)
{
if(ArrLenFlag==0) // The first value.
{
ArrLen = SBUF;
ArrLenFlag = 1;
}
else
{
if(SBUF=='S')// The start char.
{
Start_bit = 1;
SaveData(1000);
SaveData(1000); }
else
{
chr = SBUF;
SaveData(chr);data.
}
}
RI = 0;
}
}

Thank you very much for your help

List of 15 messages in thread
TopicAuthorDate
Debug problem            01/01/70 00:00      
   RE: Debug problem            01/01/70 00:00      
      RE: Debug problem            01/01/70 00:00      
         RE: Debug problem Jon            01/01/70 00:00      
      RE: Debug problem            01/01/70 00:00      
         RE: Debug problem            01/01/70 00:00      
   RE: Debug problem            01/01/70 00:00      
   RE: Debug problem            01/01/70 00:00      
      RE: Debug problem            01/01/70 00:00      
   RE: Debug problem            01/01/70 00:00      
      RE: Debug problem            01/01/70 00:00      
         RE: Debug problem            01/01/70 00:00      
         RE: Debug problem            01/01/70 00:00      
   RE: Debug problem            01/01/70 00:00      
      RE: Debug problem            01/01/70 00:00      

Back to Subject List