diff --git a/main.cpp b/main.cpp index 81303a8..06b3425 100644 --- a/main.cpp +++ b/main.cpp @@ -5,7 +5,7 @@ int main() { const int sample_rate = 48000; - const float freq = 440.0f; + const float freq = 50.0f; float phase = 0.0f; PipeMini audio; @@ -25,8 +25,8 @@ int main() { return 1; } - printf("playing 440 Hz sine for 5 seconds...\n"); - sleep(5); + printf("playing %f Hz sine for 5 seconds...\n", freq); + sleep(1); return 0; } diff --git a/pipemini_demo b/pipemini_demo index 15c8568..ad4b467 100755 Binary files a/pipemini_demo and b/pipemini_demo differ