avr-gcc-list
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[avr-gcc-list] Affecting variables


From: Paulo Abreu
Subject: [avr-gcc-list] Affecting variables
Date: Tue, 8 May 2001 00:53:55 +0100

I am doing something like this (unfortunately I forgot my .c file)

char bTest;

void init(void)
{
  bTest=0;
}

/* receive uart handler */
SIGNAL(…….)
{
  bTest=1;
}

int main(void)
{

  init();

  while(1)
  {
    if(bTest == 1)
    {
      /* do something*/
    }
  }
}


what is happening is that bTest is not being affected, that is, bTest!=1,
why?

I am using the last version of avr-gcc for windows.

Thanks in advance for your attention,

Paulo Abreu





reply via email to

[Prev in Thread] Current Thread [Next in Thread]