driver: introduce txchunk argument for console drivers#1824
Merged
Emantor merged 1 commit intolabgrid-project:masterfrom Mar 18, 2026
Merged
driver: introduce txchunk argument for console drivers#1824Emantor merged 1 commit intolabgrid-project:masterfrom
Emantor merged 1 commit intolabgrid-project:masterfrom
Conversation
a3f
suggested changes
Feb 24, 2026
Contributor
a3f
left a comment
There was a problem hiding this comment.
Also, I think you should update CHANGES.rst.
jluebbe
previously approved these changes
Feb 24, 2026
a3f
reviewed
Feb 24, 2026
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #1824 +/- ##
======================================
Coverage 46.7% 46.7%
======================================
Files 179 179
Lines 14192 14202 +10
======================================
+ Hits 6629 6645 +16
+ Misses 7563 7557 -6
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
a3f
approved these changes
Feb 24, 2026
037773b to
c9f9d75
Compare
Emantor
previously approved these changes
Feb 27, 2026
Member
|
@N3xp7im3 there seems to be a documentation test failure, please take a look. |
The txdelay argument only applies to single bytes. Sending those packets over the Internet causes additional per packet overhead, as each packet only contains a single byte payload. Introduce an argument to group bytes into chunks, such that the txdelay applies to the chunk. This will reduce the overhead of packets send over the internet and better utilizes hardware FIFO's on the receiver side. The default chunk size is 1 byte. Signed-off-by: Fabian Pfitzner <f.pfitzner@pengutronix.de>
Emantor
approved these changes
Mar 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The txdelay argument only applies to single bytes. Sending those packets over the Internet causes additional per packet overhead, as each packet only contains a single byte payload.
Introduce an argument to group bytes into chunks, such that the txdelay applies to the chunk. This will reduce the overhead of packets send over the internet and better utilizes hardware FIFO's on the receiver side.
The default chunk size is 1 byte.