From cdb4fcff856da717aafefacb994e6a9f7ef45739 Mon Sep 17 00:00:00 2001 From: Del Wang Date: Wed, 31 Dec 2025 18:46:05 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E8=B0=83=E6=95=B4=E4=BB=8E=E8=8A=82?= =?UTF-8?q?=E7=82=B9=E7=AD=89=E5=BE=85=E6=97=B6=E9=97=B4=E9=97=B4=E9=9A=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/hello/src/stereo_core/slave.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/hello/src/stereo_core/slave.rs b/apps/hello/src/stereo_core/slave.rs index d29cb50..a95122f 100644 --- a/apps/hello/src/stereo_core/slave.rs +++ b/apps/hello/src/stereo_core/slave.rs @@ -184,7 +184,7 @@ async fn handle_connection(role: ChannelRole) -> Result<()> { let len = codec.decode(&data, &mut pcm_buf)?; player.write(&pcm_buf[..len])?; } else { - tokio::time::sleep(Duration::from_millis(1)).await; + tokio::time::sleep(Duration::from_millis(10)).await; } } }