Skip to content

Commit bfec3b2

Browse files
LingaoMcarlescufi
authored andcommitted
Bluetooth: host: ASCS: Correction code comments
Audio Stream Control Service Revision: v1.0 Signed-off-by: Lingao Meng <[email protected]>
1 parent 5af553d commit bfec3b2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

subsys/bluetooth/audio/ascs_internal.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
#define BT_ASCS_QOS_FRAMING_UNFRAMED 0x00
4646
#define BT_ASCS_QOS_FRAMING_FRAMED 0x01
4747

48-
/* Format of the ASE characteristic, defined in Table 4.6 */
48+
/* Format of the ASE characteristic, defined in Table 4.2 */
4949
struct bt_ascs_ase_status {
5050
uint8_t id;
5151
uint8_t state;
@@ -66,7 +66,7 @@ struct bt_ascs_codec {
6666

6767
#define BT_ASCS_PD_NO_PREF 0x00000000
6868

69-
/* ASE_State = 0x01 (Codec Configured), defined in Table 4.7. */
69+
/* ASE_State = 0x01 (Codec Configured), defined in Table 4.3. */
7070
struct bt_ascs_ase_status_config {
7171
uint8_t framing;
7272
uint8_t phy;
@@ -82,7 +82,7 @@ struct bt_ascs_ase_status_config {
8282
struct bt_ascs_codec_config cc[0];
8383
} __packed;
8484

85-
/* ASE_State = 0x02 (QoS Configured), defined in Table 4.8. */
85+
/* ASE_State = 0x02 (QoS Configured), defined in Table 4.4. */
8686
struct bt_ascs_ase_status_qos {
8787
uint8_t cig_id;
8888
uint8_t cis_id;
@@ -95,7 +95,7 @@ struct bt_ascs_ase_status_qos {
9595
uint8_t pd[3];
9696
} __packed;
9797

98-
/* ASE_Status = 0x03 (Enabling) defined in Table 4.9.
98+
/* ASE_Status = 0x03 (Enabling) defined in Table 4.5.
9999
*/
100100
struct bt_ascs_ase_status_enable {
101101
uint8_t cig_id;
@@ -104,7 +104,7 @@ struct bt_ascs_ase_status_enable {
104104
uint8_t metadata[0];
105105
} __packed;
106106

107-
/* ASE_Status = 0x04 (Streaming) defined in Table 4.9.
107+
/* ASE_Status = 0x04 (Streaming) defined in Table 4.5.
108108
*/
109109
struct bt_ascs_ase_status_stream {
110110
uint8_t cig_id;
@@ -113,7 +113,7 @@ struct bt_ascs_ase_status_stream {
113113
uint8_t metadata[0];
114114
} __packed;
115115

116-
/* ASE_Status = 0x05 (Disabling) as defined in Table 4.9.
116+
/* ASE_Status = 0x05 (Disabling) as defined in Table 4.5.
117117
*/
118118
struct bt_ascs_ase_status_disable {
119119
uint8_t cig_id;

0 commit comments

Comments
 (0)