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?
@7imbrook Pull request #3 seems to have added a couple of line breaks like you were talking about so I think the issue has at least partially been fixed. It just needs to be merged.
Example
maybe should be
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?