Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/zephyr/bluetooth/conn.h
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ struct bt_conn_le_cs_capabilities {

/** Remote FAE Table for LE connections supporting CS */
struct bt_conn_le_cs_fae_table {
uint8_t *remote_fae_table;
int8_t *remote_fae_table;
};

/** Channel sounding main mode */
Expand Down
2 changes: 1 addition & 1 deletion include/zephyr/bluetooth/cs.h
Original file line number Diff line number Diff line change
Expand Up @@ -886,7 +886,7 @@ int bt_le_cs_write_cached_remote_supported_capabilities(
*
* @return Zero on success or (negative) error code on failure.
*/
int bt_le_cs_write_cached_remote_fae_table(struct bt_conn *conn, uint8_t remote_fae_table[72]);
int bt_le_cs_write_cached_remote_fae_table(struct bt_conn *conn, int8_t remote_fae_table[72]);

#ifdef __cplusplus
}
Expand Down
4 changes: 2 additions & 2 deletions include/zephyr/bluetooth/hci_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -2500,7 +2500,7 @@ struct bt_hci_cp_le_read_remote_fae_table {

struct bt_hci_cp_le_write_cached_remote_fae_table {
uint16_t handle;
uint8_t remote_fae_table[72];
int8_t remote_fae_table[72];
} __packed;

#define BT_HCI_OP_LE_CS_SET_CHANNEL_CLASSIFICATION BT_OP(BT_OGF_LE, 0x0092) /* 0x2092 */
Expand Down Expand Up @@ -3547,7 +3547,7 @@ struct bt_hci_evt_le_cs_read_remote_supported_capabilities_complete {
struct bt_hci_evt_le_cs_read_remote_fae_table_complete {
uint8_t status;
uint16_t conn_handle;
uint8_t remote_fae_table[72];
int8_t remote_fae_table[72];
} __packed;

#define BT_HCI_LE_CS_CONFIG_ACTION_REMOVED 0x00
Expand Down
2 changes: 1 addition & 1 deletion subsys/bluetooth/host/cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -1171,7 +1171,7 @@ int bt_le_cs_write_cached_remote_supported_capabilities(
NULL);
}

int bt_le_cs_write_cached_remote_fae_table(struct bt_conn *conn, uint8_t remote_fae_table[72])
int bt_le_cs_write_cached_remote_fae_table(struct bt_conn *conn, int8_t remote_fae_table[72])
{
struct bt_hci_cp_le_write_cached_remote_fae_table *cp;
struct net_buf *buf;
Expand Down
Loading