aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 8cfcd77d7..c7e0285f9 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -299,6 +299,9 @@ impl<'a> Control<'a> {
299 299
300 info!("Configuring misc stuff..."); 300 info!("Configuring misc stuff...");
301 301
302 // Disable tx gloming which transfers multiple packets in one request.
303 // 'glom' is short for "conglomerate" which means "gather together into
304 // a compact mass".
302 self.set_iovar_u32("bus:txglom", 0).await; 305 self.set_iovar_u32("bus:txglom", 0).await;
303 self.set_iovar_u32("apsta", 1).await; 306 self.set_iovar_u32("apsta", 1).await;
304 307