View Single Post
  #15   Spotlight this post!  
Unread 16-02-2004, 15:09
steven114 steven114 is offline
Programming Wizard and Team Captain
AKA: Steven Schlansker
FRC #0114 (Eaglestrike)
Team Role: Programmer
 
Join Date: Feb 2004
Location: Los Altos, CA
Posts: 335
steven114 is a jewel in the roughsteven114 is a jewel in the roughsteven114 is a jewel in the rough
Send a message via AIM to steven114
Re: Odd counter problems

Quote:
Originally Posted by Texan
Hum, well, try just using the following line. It's guarranteed to print and if it doesn't, it means that it is never getting called and you'll have to look at your code.

Code:
printf("Test");

--EDIT--
If it doesn't work then post your code and people can look at it.
Try
Code:
printf("Test\n");
instead. If it works anything like printf on any other system, it won't flush the buffer until it gets a newline...