Quote:
|
Originally Posted by Catastrophy
Ok well, I'm trying to run through a loop where it does
armcounter++;
Armcounter is defined at the top of user_routines_fast.c. I try a print_f to print out armcounter but it gives [null] on the ifi_loader. My motors just keep running for ever because it doesn't ever have armcount equal to the number I supply. Any clues?????  
|
You'd have to show me how you have the printf setup, but you probably got it wrong. This should be similar to what your printf should be:
Code:
printf("\nArm counter: %i\n", (int)armcounter);