From e28ccf8db39cc23736a48c733d4a40e377b46739 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Mon, 27 Jan 2025 12:36:50 +0100 Subject: [PATCH] sine_player: set volume 70 and use 48 khz --- example/sine_player.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/example/sine_player.c b/example/sine_player.c index 8ca8d6fa0..9a7f53a84 100644 --- a/example/sine_player.c +++ b/example/sine_player.c @@ -90,8 +90,9 @@ int btstack_main(int argc, const char * argv[]){ printf("BTstack Audio Sink not setup\n"); return 10; } - audio->init(NUM_CHANNELS, 44100, &audio_playback); - audio->start_stream(); + audio->init(NUM_CHANNELS, 48000, &audio_playback); + audio->set_volume(70); + audio->start_stream(); return 0; }