-
Notifications
You must be signed in to change notification settings - Fork 6.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bluetooth: Controller: Fix ISO Tx PDU buffer counts for fragmentation #82026
base: main
Are you sure you want to change the base?
Bluetooth: Controller: Fix ISO Tx PDU buffer counts for fragmentation #82026
Conversation
config BT_CTLR_CONN_ISO_SDU_LEN_MAX | ||
int "Maximum Connected Isochronous Channel SDU Length" | ||
depends on BT_CTLR_CONN_ISO | ||
range 1 4095 | ||
default 251 | ||
help | ||
Maximum Connected Isochronous Channel SDU Length. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need to go through the deprecation process for this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ISO is experimental upstream. And not sure if any downstream implementation use this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ideally we would select EXPERIMENTAL
for all experiment controller Kconfigs as well then
Fix ISO Tx PDU buffer count required when SDUs fragmentation is used. Signed-off-by: Vinayak Kariappa Chettimada <[email protected]>
Remove unused BT_CTLR_CONN_ISO_SDU_LEN_MAX, required Tx PDU buffer counts are now calculated using ISO Tx Buffer size. Signed-off-by: Vinayak Kariappa Chettimada <[email protected]>
3877e1c
to
6707b39
Compare
Fix ISO Tx PDU buffer count required when SDUs fragmentation is used.