Hi again, maybe you guys are getting tire of me by now, but i'm trying to make the exercises and all what appears on the tutorial http://www.43oh.com/2010/08/10-beginner-msp430-tutorials-and-counting/.
Well, i got
count = contador();
for (j=1; j<count; j++){
P1OUT |= LED_L + LED_R;
delayfun();
P1OUT &= ~(LED_L + LED_R);
delayfun();
}
it turns out that, it calls the function contador() normally and it do what it has to do, but when it has to call the function delayfun(), it skip it. and both of the functions are declared
void delayfun (void);
int unsigned contador (void);
int main