Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: Sound/Sound.cpp
- Revision:
- 18:204cd747b54a
- Parent:
- 15:1c67f064278e
- Child:
- 24:c3bb1b0b2207
--- a/Sound/Sound.cpp Thu May 21 12:50:43 2020 +0000 +++ b/Sound/Sound.cpp Thu May 21 22:59:59 2020 +0000 @@ -26,19 +26,19 @@ if (waveform==1) { #ifdef SLOW_TIME - printf("SIN_wavtable[%u]=",i); + printf("SIN_wavtable[%u]\n",i); #endif return (sin_wavtable[i]); } if (waveform==2) { #ifdef SLOW_TIME - printf("TRI_wavtable[%u]=",i); + printf("TRI_wavtable[%u]\n",i); #endif return (tri_wavtable[i]); } if (waveform==3) { #ifdef SLOW_TIME - printf("SQR_wavtable[%u]=",i); + printf("SQR_wavtable[%u]\n",i); #endif return (pulse_wavtable[i]); }