aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2022-09-25 23:39:08 +0200
committerGitHub <[email protected]>2022-09-25 23:39:08 +0200
commit79a9a4eb9898b4e56544f78729b6e8960c884960 (patch)
tree21b7b4bf5c3c0d814a7b9a45a4fc8560fa5c0707 /src
parent270c4d2476cb36251ffb5cf57df5f92242f9549e (diff)
parent8f21a5b11698e0c84e61e22c9c505d59d5e50f67 (diff)
Merge pull request #20 from danbev/glom_comment
Add comment about bus:txglom iovar
Diffstat (limited to 'src')
-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