-
Notifications
You must be signed in to change notification settings - Fork 8.4k
Bluetooth: CCP: Add support for set/get provider name #79324
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
Conversation
a3736c9 to
45c90ee
Compare
45c90ee to
d59830c
Compare
32eb534 to
cd67949
Compare
bb73153 to
8daccea
Compare
878f797 to
605ccf5
Compare
605ccf5 to
3fb1868
Compare
d27cd2a to
b983872
Compare
e8190da to
e8263ee
Compare
e8263ee to
0b3b827
Compare
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.
Copilot reviewed 5 out of 8 changed files in this pull request and generated 1 comment.
Files not reviewed (3)
- doc/connectivity/bluetooth/shell/audio/ccp.rst: Language not supported
- subsys/bluetooth/audio/Kconfig.ccp: Language not supported
- subsys/bluetooth/audio/Kconfig.tbs: Language not supported
Comments suppressed due to low confidence (1)
include/zephyr/bluetooth/audio/ccp.h:101
- There is an inconsistency between the documentation using CONFIG_BT_TBS_MAX_PROVIDER_NAME_LENGTH and the implementation using CONFIG_BT_ccp_call_control_server_PROVIDER_NAME_MAX_LENGTH. Consider using the same macro for clarity.
* @retval -EINVAL @p bearer or @p name is NULL, or @p name is the empty string or @p name is larger than @kconfig{CONFIG_BT_TBS_MAX_PROVIDER_NAME_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.
Copilot reviewed 5 out of 8 changed files in this pull request and generated no comments.
Files not reviewed (3)
- doc/connectivity/bluetooth/shell/audio/ccp.rst: Language not supported
- subsys/bluetooth/audio/Kconfig.ccp: Language not supported
- subsys/bluetooth/audio/Kconfig.tbs: Language not supported
subsys/bluetooth/audio/Kconfig.ccp
Outdated
| help | ||
| The number of supported telephone bearers on the CCP Call Control Server | ||
|
|
||
| config BT_ccp_call_control_server_PROVIDER_NAME_MAX_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.
uppercase?
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.
Bad search-and-replace :D
87370d0 to
e32debc
Compare
e32debc to
81c70c1
Compare
8d4b884 to
1e7191c
Compare
419a9d6 to
a20843a
Compare
e925515 to
d162d69
Compare
Add support for setting and getting the bearer provider name. For now the name will be duplicated by the TBS implementation, but will be optimizied in the future so only one copy of the name exists. Signed-off-by: Emil Gydesen <[email protected]>
d162d69 to
b43d2c8
Compare
|
cvinayak
left a comment
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.
This has been there so long!
It almost has a 1-year anniversary :) |



Add support for setting and getting the bearer provider
name. For now the name will be duplicated by the TBS
implementation, but will be optimizied in the future
so only one copy of the name exists.