|
Re: stdlib.h for Dashboard Program
Is this what you are trying to do (in psuedo code)?
Read data from dashboard port (once every 1/38 second)
open file
write data to file
close file
repeat
It's possible after a thousand or so times of this, you are overflowing the buffer.
it may work better if you
open file
read data from dashboard port (once every 1/38 second)
write data to file
flush data (fflush)
repeat
close file
|