fulldecent / system-bus-radio

Transmits AM radio on computers without radio transmitting hardware.
https://fulldecent.github.io/system-bus-radio/
MIT License
6.47k stars 398 forks source link

Are we missing newlines? #4

Closed 7imbrook closed 8 years ago

7imbrook commented 8 years ago

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 8 years ago

@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.