Merge pull request #20 from danbev/glom_comment

Add comment about bus:txglom iovar
This commit is contained in:
Dario Nieuwenhuis 2022-09-25 23:39:08 +02:00 committed by GitHub
commit 79a9a4eb98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -299,6 +299,9 @@ impl<'a> Control<'a> {
info!("Configuring misc stuff..."); info!("Configuring misc stuff...");
// Disable tx gloming which transfers multiple packets in one request.
// 'glom' is short for "conglomerate" which means "gather together into
// a compact mass".
self.set_iovar_u32("bus:txglom", 0).await; self.set_iovar_u32("bus:txglom", 0).await;
self.set_iovar_u32("apsta", 1).await; self.set_iovar_u32("apsta", 1).await;