From 0bef5cc6e71aa766ad1ce2486b6c4d5778747506 Mon Sep 17 00:00:00 2001 From: Andy Killorin <37423245+Speedy6451@users.noreply.github.com> Date: Thu, 6 Mar 2025 20:33:23 -0500 Subject: [PATCH] tuned windows sampling settings for stability --- interface/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/src/main.rs b/interface/src/main.rs index dcb0351..fd394ac 100644 --- a/interface/src/main.rs +++ b/interface/src/main.rs @@ -39,7 +39,7 @@ fn main() -> Result<()> { #[cfg(target_os = "linux")] const PACKET_LEN: usize = 2204; #[cfg(target_os = "windows")] - const PACKET_LEN: usize = 2000; + const PACKET_LEN: usize = 1800; let mut packet = Vec::new(); @@ -136,7 +136,7 @@ async fn controller(mut notes: mpsc::Receiver<(Option