Are we missing newlines?
7imbrook opened this issue · 1 comments
7imbrook commented
Example
printf("Playing / %0.3f seconds / %4.0f Hzn", time, frequency);
maybe should be
printf("Playing / %0.3f seconds / %4.0f Hz\n", time, frequency);
It just buffering to stdio
and not printing until the buffers full. Is this a design of the system to avoid overhead of printing and there for get a tighter loop?
rocketinventor commented