Use the defined min and max values for offset instead of UINT8_MAX. Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
1086 lines
26 KiB
C
1086 lines
26 KiB
C
/** @file
|
|
* @brief Bluetooth VCS client shell.
|
|
*
|
|
* Copyright (c) 2020 Bose Corporation
|
|
* Copyright (c) 2020-2021 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <zephyr/types.h>
|
|
#include <bluetooth/conn.h>
|
|
#include <bluetooth/audio/vcs.h>
|
|
#include <shell/shell.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "bt.h"
|
|
|
|
static struct bt_vcs *vcs;
|
|
static struct bt_vcs_included vcs_included;
|
|
|
|
static void vcs_discover_cb(struct bt_vcs *vcs, int err, uint8_t vocs_count,
|
|
uint8_t aics_count)
|
|
{
|
|
if (err != 0) {
|
|
shell_error(ctx_shell, "VCS discover failed (%d)", err);
|
|
} else {
|
|
shell_print(ctx_shell, "VCS discover done with %u AICS",
|
|
aics_count);
|
|
|
|
if (bt_vcs_included_get(vcs, &vcs_included)) {
|
|
shell_error(ctx_shell, "Could not get VCS context");
|
|
}
|
|
}
|
|
}
|
|
|
|
static void vcs_vol_down_cb(struct bt_vcs *vcs, int err)
|
|
{
|
|
if (err != 0) {
|
|
shell_error(ctx_shell, "VCS vol_down failed (%d)", err);
|
|
} else {
|
|
shell_print(ctx_shell, "VCS vol_down done");
|
|
}
|
|
}
|
|
|
|
static void vcs_vol_up_cb(struct bt_vcs *vcs, int err)
|
|
{
|
|
if (err != 0) {
|
|
shell_error(ctx_shell, "VCS vol_up failed (%d)", err);
|
|
} else {
|
|
shell_print(ctx_shell, "VCS vol_up done");
|
|
}
|
|
}
|
|
|
|
static void vcs_mute_cb(struct bt_vcs *vcs, int err)
|
|
{
|
|
if (err != 0) {
|
|
shell_error(ctx_shell, "VCS mute failed (%d)", err);
|
|
} else {
|
|
shell_print(ctx_shell, "VCS mute done");
|
|
}
|
|
}
|
|
|
|
static void vcs_unmute_cb(struct bt_vcs *vcs, int err)
|
|
{
|
|
if (err != 0) {
|
|
shell_error(ctx_shell, "VCS unmute failed (%d)", err);
|
|
} else {
|
|
shell_print(ctx_shell, "VCS unmute done");
|
|
}
|
|
}
|
|
|
|
static void vcs_vol_down_unmute_cb(struct bt_vcs *vcs, int err)
|
|
{
|
|
if (err != 0) {
|
|
shell_error(ctx_shell, "VCS vol_down_unmute failed (%d)", err);
|
|
} else {
|
|
shell_print(ctx_shell, "VCS vol_down_unmute done");
|
|
}
|
|
}
|
|
|
|
static void vcs_vol_up_unmute_cb(struct bt_vcs *vcs, int err)
|
|
{
|
|
if (err != 0) {
|
|
shell_error(ctx_shell, "VCS vol_up_unmute failed (%d)", err);
|
|
} else {
|
|
shell_print(ctx_shell, "VCS vol_up_unmute done");
|
|
}
|
|
}
|
|
|
|
static void vcs_vol_set_cb(struct bt_vcs *vcs, int err)
|
|
{
|
|
if (err != 0) {
|
|
shell_error(ctx_shell, "VCS vol_set failed (%d)", err);
|
|
} else {
|
|
shell_print(ctx_shell, "VCS vol_set done");
|
|
}
|
|
}
|
|
|
|
static void vcs_state_cb(struct bt_vcs *vcs, int err, uint8_t volume,
|
|
uint8_t mute)
|
|
{
|
|
if (err != 0) {
|
|
shell_error(ctx_shell, "VCS state get failed (%d)", err);
|
|
} else {
|
|
shell_print(ctx_shell, "VCS volume %u, mute %u", volume, mute);
|
|
}
|
|
}
|
|
|
|
static void vcs_flags_cb(struct bt_vcs *vcs, int err, uint8_t flags)
|
|
{
|
|
if (err != 0) {
|
|
shell_error(ctx_shell, "VCS flags get failed (%d)", err);
|
|
} else {
|
|
shell_print(ctx_shell, "VCS flags 0x%02X", flags);
|
|
}
|
|
}
|
|
|
|
#if CONFIG_BT_VCS_CLIENT_MAX_AICS_INST > 0
|
|
static void vcs_aics_set_gain_cb(struct bt_aics *inst, int err)
|
|
{
|
|
if (err != 0) {
|
|
shell_error(ctx_shell, "Set gain failed (%d) for inst %p",
|
|
err, inst);
|
|
} else {
|
|
shell_print(ctx_shell, "Gain set for inst %p", inst);
|
|
}
|
|
}
|
|
|
|
static void vcs_aics_unmute_cb(struct bt_aics *inst, int err)
|
|
{
|
|
if (err != 0) {
|
|
shell_error(ctx_shell, "Unmute failed (%d) for inst %p",
|
|
err, inst);
|
|
} else {
|
|
shell_print(ctx_shell, "Unmuted inst %p", inst);
|
|
}
|
|
}
|
|
|
|
static void vcs_aics_mute_cb(struct bt_aics *inst, int err)
|
|
{
|
|
if (err != 0) {
|
|
shell_error(ctx_shell, "Mute failed (%d) for inst %p",
|
|
err, inst);
|
|
} else {
|
|
shell_print(ctx_shell, "Muted inst %p", inst);
|
|
}
|
|
}
|
|
|
|
static void vcs_aics_set_manual_mode_cb(struct bt_aics *inst, int err)
|
|
{
|
|
if (err != 0) {
|
|
shell_error(ctx_shell,
|
|
"Set manual mode failed (%d) for inst %p",
|
|
err, inst);
|
|
} else {
|
|
shell_print(ctx_shell, "Manuel mode set for inst %p", inst);
|
|
}
|
|
}
|
|
|
|
static void vcs_aics_automatic_mode_cb(struct bt_aics *inst, int err)
|
|
{
|
|
if (err != 0) {
|
|
shell_error(ctx_shell,
|
|
"Set automatic mode failed (%d) for inst %p",
|
|
err, inst);
|
|
} else {
|
|
shell_print(ctx_shell, "Automatic mode set for inst %p",
|
|
inst);
|
|
}
|
|
}
|
|
|
|
static void vcs_aics_state_cb(struct bt_aics *inst, int err, int8_t gain,
|
|
uint8_t mute, uint8_t mode)
|
|
{
|
|
if (err != 0) {
|
|
shell_error(ctx_shell, "AICS state get failed (%d) for inst %p",
|
|
err, inst);
|
|
} else {
|
|
shell_print(ctx_shell,
|
|
"AICS inst %p state gain %d, mute %u, mode %u",
|
|
inst, gain, mute, mode);
|
|
}
|
|
}
|
|
|
|
static void vcs_aics_gain_setting_cb(struct bt_aics *inst, int err,
|
|
uint8_t units, int8_t minimum,
|
|
int8_t maximum)
|
|
{
|
|
if (err != 0) {
|
|
shell_error(ctx_shell,
|
|
"AICS gain settings get failed (%d) for inst %p",
|
|
err, inst);
|
|
} else {
|
|
shell_print(ctx_shell,
|
|
"AICS inst %p gain settings units %u, min %d, max %d",
|
|
inst, units, minimum, maximum);
|
|
}
|
|
}
|
|
|
|
static void vcs_aics_input_type_cb(struct bt_aics *inst, int err,
|
|
uint8_t input_type)
|
|
{
|
|
if (err != 0) {
|
|
shell_error(ctx_shell,
|
|
"AICS input type get failed (%d) for inst %p",
|
|
err, inst);
|
|
} else {
|
|
shell_print(ctx_shell, "AICS inst %p input type %u",
|
|
inst, input_type);
|
|
}
|
|
}
|
|
|
|
static void vcs_aics_status_cb(struct bt_aics *inst, int err, bool active)
|
|
{
|
|
if (err != 0) {
|
|
shell_error(ctx_shell,
|
|
"AICS status get failed (%d) for inst %p",
|
|
err, inst);
|
|
} else {
|
|
shell_print(ctx_shell, "AICS inst %p status %s",
|
|
inst, active ? "active" : "inactive");
|
|
}
|
|
|
|
}
|
|
static void vcs_aics_description_cb(struct bt_aics *inst, int err,
|
|
char *description)
|
|
{
|
|
if (err != 0) {
|
|
shell_error(ctx_shell,
|
|
"AICS description get failed (%d) for inst %p",
|
|
err, inst);
|
|
} else {
|
|
shell_print(ctx_shell, "AICS inst %p description %s",
|
|
inst, description);
|
|
}
|
|
}
|
|
#endif /* CONFIG_BT_VCS_CLIENT_MAX_AICS_INST > 0 */
|
|
|
|
#if CONFIG_BT_VCS_CLIENT_MAX_VOCS_INST > 0
|
|
static void vcs_vocs_set_offset_cb(struct bt_vocs *inst, int err)
|
|
{
|
|
if (err != 0) {
|
|
shell_error(ctx_shell, "Set offset failed (%d) for inst %p",
|
|
err, inst);
|
|
} else {
|
|
shell_print(ctx_shell, "Offset set for inst %p", inst);
|
|
}
|
|
}
|
|
|
|
static void vcs_vocs_state_cb(struct bt_vocs *inst, int err, int16_t offset)
|
|
{
|
|
if (err != 0) {
|
|
shell_error(ctx_shell, "VOCS state get failed (%d) for inst %p",
|
|
err, inst);
|
|
} else {
|
|
shell_print(ctx_shell, "VOCS inst %p offset %d", inst, offset);
|
|
}
|
|
}
|
|
|
|
static void vcs_vocs_location_cb(struct bt_vocs *inst, int err,
|
|
uint32_t location)
|
|
{
|
|
if (err != 0) {
|
|
shell_error(ctx_shell,
|
|
"VOCS location get failed (%d) for inst %p",
|
|
err, inst);
|
|
} else {
|
|
shell_print(ctx_shell, "VOCS inst %p location %u",
|
|
inst, location);
|
|
}
|
|
}
|
|
|
|
static void vcs_vocs_description_cb(struct bt_vocs *inst, int err,
|
|
char *description)
|
|
{
|
|
if (err != 0) {
|
|
shell_error(ctx_shell,
|
|
"VOCS description get failed (%d) for inst %p",
|
|
err, inst);
|
|
} else {
|
|
shell_print(ctx_shell, "VOCS inst %p description %s",
|
|
inst, description);
|
|
}
|
|
}
|
|
#endif /* CONFIG_BT_VCS_CLIENT_MAX_VOCS_INST > 0 */
|
|
|
|
static struct bt_vcs_cb vcs_cbs = {
|
|
.discover = vcs_discover_cb,
|
|
.vol_down = vcs_vol_down_cb,
|
|
.vol_up = vcs_vol_up_cb,
|
|
.mute = vcs_mute_cb,
|
|
.unmute = vcs_unmute_cb,
|
|
.vol_down_unmute = vcs_vol_down_unmute_cb,
|
|
.vol_up_unmute = vcs_vol_up_unmute_cb,
|
|
.vol_set = vcs_vol_set_cb,
|
|
|
|
.state = vcs_state_cb,
|
|
.flags = vcs_flags_cb,
|
|
|
|
/* Audio Input Control Service */
|
|
#if CONFIG_BT_VCS_CLIENT_MAX_AICS_INST > 0
|
|
.aics_cb = {
|
|
.state = vcs_aics_state_cb,
|
|
.gain_setting = vcs_aics_gain_setting_cb,
|
|
.type = vcs_aics_input_type_cb,
|
|
.status = vcs_aics_status_cb,
|
|
.description = vcs_aics_description_cb,
|
|
.set_gain = vcs_aics_set_gain_cb,
|
|
.unmute = vcs_aics_unmute_cb,
|
|
.mute = vcs_aics_mute_cb,
|
|
.set_manual_mode = vcs_aics_set_manual_mode_cb,
|
|
.set_auto_mode = vcs_aics_automatic_mode_cb,
|
|
},
|
|
#endif /* CONFIG_BT_VCS_CLIENT_MAX_AICS_INST > 0 */
|
|
#if CONFIG_BT_VCS_CLIENT_MAX_VOCS_INST > 0
|
|
.vocs_cb = {
|
|
.state = vcs_vocs_state_cb,
|
|
.location = vcs_vocs_location_cb,
|
|
.description = vcs_vocs_description_cb,
|
|
.set_offset = vcs_vocs_set_offset_cb,
|
|
}
|
|
#endif /* CONFIG_BT_VCS_CLIENT_MAX_VOCS_INST > 0 */
|
|
};
|
|
|
|
static int cmd_vcs_client_discover(const struct shell *sh, size_t argc,
|
|
char **argv)
|
|
{
|
|
int result;
|
|
|
|
if (!ctx_shell) {
|
|
ctx_shell = sh;
|
|
}
|
|
|
|
result = bt_vcs_client_cb_register(&vcs_cbs);
|
|
if (result != 0) {
|
|
shell_print(sh, "CB register failed: %d", result);
|
|
return result;
|
|
}
|
|
|
|
if (default_conn == NULL) {
|
|
shell_error(sh, "Not connected");
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
result = bt_vcs_discover(default_conn, &vcs);
|
|
if (result != 0) {
|
|
shell_print(sh, "Fail: %d", result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int cmd_vcs_client_state_get(const struct shell *sh, size_t argc,
|
|
char **argv)
|
|
{
|
|
int result;
|
|
|
|
if (default_conn == NULL) {
|
|
shell_error(sh, "Not connected");
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
result = bt_vcs_vol_get(vcs);
|
|
if (result != 0) {
|
|
shell_print(sh, "Fail: %d", result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int cmd_vcs_client_flags_get(const struct shell *sh, size_t argc,
|
|
char **argv)
|
|
{
|
|
int result;
|
|
|
|
if (default_conn == NULL) {
|
|
shell_error(sh, "Not connected");
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
result = bt_vcs_flags_get(vcs);
|
|
if (result != 0) {
|
|
shell_print(sh, "Fail: %d", result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int cmd_vcs_client_volume_down(const struct shell *sh, size_t argc,
|
|
char **argv)
|
|
{
|
|
int result;
|
|
|
|
if (default_conn == NULL) {
|
|
shell_error(sh, "Not connected");
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
result = bt_vcs_vol_down(vcs);
|
|
if (result != 0) {
|
|
shell_print(sh, "Fail: %d", result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int cmd_vcs_client_volume_up(const struct shell *sh, size_t argc,
|
|
char **argv)
|
|
|
|
{
|
|
int result;
|
|
|
|
if (default_conn == NULL) {
|
|
shell_error(sh, "Not connected");
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
result = bt_vcs_vol_up(vcs);
|
|
if (result != 0) {
|
|
shell_print(sh, "Fail: %d", result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int cmd_vcs_client_unmute_volume_down(const struct shell *sh,
|
|
size_t argc, char **argv)
|
|
{
|
|
int result;
|
|
|
|
if (default_conn == NULL) {
|
|
shell_error(sh, "Not connected");
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
result = bt_vcs_unmute_vol_down(vcs);
|
|
if (result != 0) {
|
|
shell_print(sh, "Fail: %d", result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int cmd_vcs_client_unmute_volume_up(const struct shell *sh,
|
|
size_t argc, char **argv)
|
|
{
|
|
int result;
|
|
|
|
if (default_conn == NULL) {
|
|
shell_error(sh, "Not connected");
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
result = bt_vcs_unmute_vol_up(vcs);
|
|
if (result != 0) {
|
|
shell_print(sh, "Fail: %d", result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int cmd_vcs_client_volume_set(const struct shell *sh, size_t argc,
|
|
char **argv)
|
|
|
|
{
|
|
int result;
|
|
int volume = strtol(argv[1], NULL, 0);
|
|
|
|
if (default_conn == NULL) {
|
|
shell_error(sh, "Not connected");
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
if (volume > UINT8_MAX) {
|
|
shell_error(sh, "Volume shall be 0-255, was %d", volume);
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
result = bt_vcs_vol_set(vcs, volume);
|
|
if (result != 0) {
|
|
shell_print(sh, "Fail: %d", result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
|
|
static int cmd_vcs_client_unmute(const struct shell *sh, size_t argc,
|
|
char **argv)
|
|
{
|
|
int result;
|
|
|
|
if (default_conn == NULL) {
|
|
shell_error(sh, "Not connected");
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
result = bt_vcs_unmute(vcs);
|
|
if (result != 0) {
|
|
shell_print(sh, "Fail: %d", result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int cmd_vcs_client_mute(const struct shell *sh, size_t argc, char **argv)
|
|
{
|
|
int result;
|
|
|
|
if (default_conn == NULL) {
|
|
shell_error(sh, "Not connected");
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
result = bt_vcs_mute(vcs);
|
|
if (result != 0) {
|
|
shell_print(sh, "Fail: %d", result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int cmd_vcs_client_vocs_state_get(const struct shell *sh, size_t argc,
|
|
char **argv)
|
|
{
|
|
int result;
|
|
int index = strtol(argv[1], NULL, 0);
|
|
|
|
if (default_conn == NULL) {
|
|
shell_error(sh, "Not connected");
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
if (index >= vcs_included.vocs_cnt) {
|
|
shell_error(sh, "Index shall be less than %u, was %u",
|
|
vcs_included.vocs_cnt, index);
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
result = bt_vcs_vocs_state_get(vcs, vcs_included.vocs[index]);
|
|
if (result != 0) {
|
|
shell_print(sh, "Fail: %d", result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int cmd_vcs_client_vocs_location_get(const struct shell *sh,
|
|
size_t argc, char **argv)
|
|
{
|
|
int result;
|
|
int index = strtol(argv[1], NULL, 0);
|
|
|
|
if (default_conn == NULL) {
|
|
shell_error(sh, "Not connected");
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
if (index >= vcs_included.vocs_cnt) {
|
|
shell_error(sh, "Index shall be less than %u, was %u",
|
|
vcs_included.vocs_cnt, index);
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
result = bt_vcs_vocs_location_get(vcs, vcs_included.vocs[index]);
|
|
if (result != 0) {
|
|
shell_print(sh, "Fail: %d", result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int cmd_vcs_client_vocs_location_set(const struct shell *sh,
|
|
size_t argc, char **argv)
|
|
{
|
|
int result;
|
|
int index = strtol(argv[1], NULL, 0);
|
|
int location = strtol(argv[2], NULL, 0);
|
|
|
|
if (default_conn == NULL) {
|
|
shell_error(sh, "Not connected");
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
if (index >= vcs_included.vocs_cnt) {
|
|
shell_error(sh, "Index shall be less than %u, was %u",
|
|
vcs_included.vocs_cnt, index);
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
if (location > UINT16_MAX || location < 0) {
|
|
shell_error(sh, "Invalid location (%u-%u), was %u",
|
|
0, UINT16_MAX, location);
|
|
return -ENOEXEC;
|
|
|
|
}
|
|
|
|
result = bt_vcs_vocs_location_set(vcs, vcs_included.vocs[index],
|
|
location);
|
|
if (result != 0) {
|
|
shell_print(sh, "Fail: %d", result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int cmd_vcs_client_vocs_offset_set(const struct shell *sh,
|
|
size_t argc, char **argv)
|
|
{
|
|
int result;
|
|
int index = strtol(argv[1], NULL, 0);
|
|
int offset = strtol(argv[2], NULL, 0);
|
|
|
|
if (default_conn == NULL) {
|
|
shell_error(sh, "Not connected");
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
if (index >= vcs_included.vocs_cnt) {
|
|
shell_error(sh, "Index shall be less than %u, was %u",
|
|
vcs_included.vocs_cnt, index);
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
if (offset > BT_VOCS_MAX_OFFSET || offset < BT_VOCS_MIN_OFFSET) {
|
|
shell_error(sh, "Offset shall be %d-%d, was %d",
|
|
BT_VOCS_MIN_OFFSET, BT_VOCS_MAX_OFFSET, offset);
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
result = bt_vcs_vocs_state_set(vcs, vcs_included.vocs[index],
|
|
offset);
|
|
if (result != 0) {
|
|
shell_print(sh, "Fail: %d", result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int cmd_vcs_client_vocs_output_description_get(const struct shell *sh,
|
|
size_t argc, char **argv)
|
|
{
|
|
int result;
|
|
int index = strtol(argv[1], NULL, 0);
|
|
|
|
if (default_conn == NULL) {
|
|
shell_error(sh, "Not connected");
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
if (index >= vcs_included.vocs_cnt) {
|
|
shell_error(sh, "Index shall be less than %u, was %u",
|
|
vcs_included.vocs_cnt, index);
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
result = bt_vcs_vocs_description_get(vcs, vcs_included.vocs[index]);
|
|
if (result != 0) {
|
|
shell_print(sh, "Fail: %d", result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int cmd_vcs_client_vocs_output_description_set(const struct shell *sh,
|
|
size_t argc, char **argv)
|
|
{
|
|
int result;
|
|
int index = strtol(argv[1], NULL, 0);
|
|
char *description = argv[2];
|
|
|
|
if (default_conn == NULL) {
|
|
shell_error(sh, "Not connected");
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
if (index >= vcs_included.vocs_cnt) {
|
|
shell_error(sh, "Index shall be less than %u, was %u",
|
|
vcs_included.vocs_cnt, index);
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
result = bt_vcs_vocs_description_set(vcs, vcs_included.vocs[index],
|
|
description);
|
|
if (result != 0) {
|
|
shell_print(sh, "Fail: %d", result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int cmd_vcs_client_aics_input_state_get(const struct shell *sh,
|
|
size_t argc, char **argv)
|
|
{
|
|
int result;
|
|
int index = strtol(argv[1], NULL, 0);
|
|
|
|
if (default_conn == NULL) {
|
|
shell_error(sh, "Not connected");
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
if (index >= vcs_included.aics_cnt) {
|
|
shell_error(sh, "Index shall be less than %u, was %u",
|
|
vcs_included.aics_cnt, index);
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
result = bt_vcs_aics_state_get(vcs, vcs_included.aics[index]);
|
|
if (result != 0) {
|
|
shell_print(sh, "Fail: %d", result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int cmd_vcs_client_aics_gain_setting_get(const struct shell *sh,
|
|
size_t argc, char **argv)
|
|
{
|
|
int result;
|
|
int index = strtol(argv[1], NULL, 0);
|
|
|
|
if (default_conn == NULL) {
|
|
shell_error(sh, "Not connected");
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
if (index >= vcs_included.aics_cnt) {
|
|
shell_error(sh, "Index shall be less than %u, was %u",
|
|
vcs_included.aics_cnt, index);
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
result = bt_vcs_aics_gain_setting_get(vcs, vcs_included.aics[index]);
|
|
if (result != 0) {
|
|
shell_print(sh, "Fail: %d", result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int cmd_vcs_client_aics_input_type_get(const struct shell *sh,
|
|
size_t argc, char **argv)
|
|
{
|
|
int result;
|
|
int index = strtol(argv[1], NULL, 0);
|
|
|
|
if (default_conn == NULL) {
|
|
shell_error(sh, "Not connected");
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
if (index >= vcs_included.aics_cnt) {
|
|
shell_error(sh, "Index shall be less than %u, was %u",
|
|
vcs_included.aics_cnt, index);
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
result = bt_vcs_aics_type_get(vcs, vcs_included.aics[index]);
|
|
if (result != 0) {
|
|
shell_print(sh, "Fail: %d", result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int cmd_vcs_client_aics_input_status_get(const struct shell *sh,
|
|
size_t argc, char **argv)
|
|
{
|
|
int result;
|
|
int index = strtol(argv[1], NULL, 0);
|
|
|
|
if (default_conn == NULL) {
|
|
shell_error(sh, "Not connected");
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
if (index >= vcs_included.aics_cnt) {
|
|
shell_error(sh, "Index shall be less than %u, was %u",
|
|
vcs_included.aics_cnt, index);
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
result = bt_vcs_aics_status_get(vcs, vcs_included.aics[index]);
|
|
if (result != 0) {
|
|
shell_print(sh, "Fail: %d", result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int cmd_vcs_client_aics_input_unmute(const struct shell *sh,
|
|
size_t argc, char **argv)
|
|
{
|
|
int result;
|
|
int index = strtol(argv[1], NULL, 0);
|
|
|
|
if (default_conn == NULL) {
|
|
shell_error(sh, "Not connected");
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
if (index >= vcs_included.aics_cnt) {
|
|
shell_error(sh, "Index shall be less than %u, was %u",
|
|
vcs_included.aics_cnt, index);
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
result = bt_vcs_aics_unmute(vcs, vcs_included.aics[index]);
|
|
if (result != 0) {
|
|
shell_print(sh, "Fail: %d", result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int cmd_vcs_client_aics_input_mute(const struct shell *sh,
|
|
size_t argc, char **argv)
|
|
{
|
|
int result;
|
|
int index = strtol(argv[1], NULL, 0);
|
|
|
|
if (default_conn == NULL) {
|
|
shell_error(sh, "Not connected");
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
if (index >= vcs_included.aics_cnt) {
|
|
shell_error(sh, "Index shall be less than %u, was %u",
|
|
vcs_included.aics_cnt, index);
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
result = bt_vcs_aics_mute(vcs, vcs_included.aics[index]);
|
|
if (result != 0) {
|
|
shell_print(sh, "Fail: %d", result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int cmd_vcs_client_aics_manual_input_gain_set(const struct shell *sh,
|
|
size_t argc, char **argv)
|
|
{
|
|
int result;
|
|
int index = strtol(argv[1], NULL, 0);
|
|
|
|
if (default_conn == NULL) {
|
|
shell_error(sh, "Not connected");
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
if (index >= vcs_included.aics_cnt) {
|
|
shell_error(sh, "Index shall be less than %u, was %u",
|
|
vcs_included.aics_cnt, index);
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
result = bt_vcs_aics_manual_gain_set(vcs, vcs_included.aics[index]);
|
|
if (result != 0) {
|
|
shell_print(sh, "Fail: %d", result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int cmd_vcs_client_aics_auto_input_gain_set(const struct shell *sh,
|
|
size_t argc, char **argv)
|
|
{
|
|
int result;
|
|
int index = strtol(argv[1], NULL, 0);
|
|
|
|
if (default_conn == NULL) {
|
|
shell_error(sh, "Not connected");
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
if (index >= vcs_included.aics_cnt) {
|
|
shell_error(sh, "Index shall be less than %u, was %u",
|
|
vcs_included.aics_cnt, index);
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
result = bt_vcs_aics_automatic_gain_set(vcs, vcs_included.aics[index]);
|
|
if (result != 0) {
|
|
shell_print(sh, "Fail: %d", result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int cmd_vcs_client_aics_gain_set(const struct shell *sh, size_t argc,
|
|
char **argv)
|
|
{
|
|
int result;
|
|
int index = strtol(argv[1], NULL, 0);
|
|
int gain = strtol(argv[2], NULL, 0);
|
|
|
|
if (default_conn == NULL) {
|
|
shell_error(sh, "Not connected");
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
if (index >= vcs_included.aics_cnt) {
|
|
shell_error(sh, "Index shall be less than %u, was %u",
|
|
vcs_included.aics_cnt, index);
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
if (gain > INT8_MAX || gain < INT8_MIN) {
|
|
shell_error(sh, "Offset shall be %d-%d, was %d",
|
|
INT8_MIN, INT8_MAX, gain);
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
result = bt_vcs_aics_gain_set(vcs, vcs_included.aics[index], gain);
|
|
if (result != 0) {
|
|
shell_print(sh, "Fail: %d", result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int cmd_vcs_client_aics_input_description_get(const struct shell *sh,
|
|
size_t argc, char **argv)
|
|
{
|
|
int result;
|
|
int index = strtol(argv[1], NULL, 0);
|
|
|
|
if (default_conn == NULL) {
|
|
shell_error(sh, "Not connected");
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
if (index >= vcs_included.aics_cnt) {
|
|
shell_error(sh, "Index shall be less than %u, was %u",
|
|
vcs_included.aics_cnt, index);
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
result = bt_vcs_aics_description_get(vcs, vcs_included.aics[index]);
|
|
if (result != 0) {
|
|
shell_print(sh, "Fail: %d", result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int cmd_vcs_client_aics_input_description_set(const struct shell *sh,
|
|
size_t argc, char **argv)
|
|
{
|
|
int result;
|
|
int index = strtol(argv[1], NULL, 0);
|
|
char *description = argv[2];
|
|
|
|
if (default_conn == NULL) {
|
|
shell_error(sh, "Not connected");
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
if (index >= vcs_included.aics_cnt) {
|
|
shell_error(sh, "Index shall be less than %u, was %u",
|
|
vcs_included.aics_cnt, index);
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
result = bt_vcs_aics_description_set(vcs, vcs_included.aics[index],
|
|
description);
|
|
if (result != 0) {
|
|
shell_print(sh, "Fail: %d", result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int cmd_vcs_client(const struct shell *sh, size_t argc, char **argv)
|
|
{
|
|
if (argc > 1) {
|
|
shell_error(sh, "%s unknown parameter: %s",
|
|
argv[0], argv[1]);
|
|
} else {
|
|
shell_error(sh, "%s Missing subcommand", argv[0]);
|
|
}
|
|
|
|
return -ENOEXEC;
|
|
}
|
|
|
|
SHELL_STATIC_SUBCMD_SET_CREATE(vcs_client_cmds,
|
|
SHELL_CMD_ARG(discover, NULL,
|
|
"Discover VCS and included services for current "
|
|
"connection",
|
|
cmd_vcs_client_discover, 1, 0),
|
|
SHELL_CMD_ARG(state_get, NULL,
|
|
"Get volume state of the VCS server. Should be done "
|
|
"before sending any control messages",
|
|
cmd_vcs_client_state_get, 1, 0),
|
|
SHELL_CMD_ARG(flags_get, NULL,
|
|
"Read volume flags",
|
|
cmd_vcs_client_flags_get, 1, 0),
|
|
SHELL_CMD_ARG(volume_down, NULL,
|
|
"Turn the volume down",
|
|
cmd_vcs_client_volume_down, 1, 0),
|
|
SHELL_CMD_ARG(volume_up, NULL,
|
|
"Turn the volume up",
|
|
cmd_vcs_client_volume_up, 1, 0),
|
|
SHELL_CMD_ARG(unmute_volume_down, NULL,
|
|
"Turn the volume down, and unmute",
|
|
cmd_vcs_client_unmute_volume_down, 1, 0),
|
|
SHELL_CMD_ARG(unmute_volume_up, NULL,
|
|
"Turn the volume up, and unmute",
|
|
cmd_vcs_client_unmute_volume_up, 1, 0),
|
|
SHELL_CMD_ARG(volume_set, NULL,
|
|
"Set an absolute volume <volume>",
|
|
cmd_vcs_client_volume_set, 2, 0),
|
|
SHELL_CMD_ARG(unmute, NULL,
|
|
"Unmute",
|
|
cmd_vcs_client_unmute, 1, 0),
|
|
SHELL_CMD_ARG(mute, NULL,
|
|
"Mute",
|
|
cmd_vcs_client_mute, 1, 0),
|
|
SHELL_CMD_ARG(vocs_state_get, NULL,
|
|
"Get the offset state of a VOCS instance <inst_index>",
|
|
cmd_vcs_client_vocs_state_get, 2, 0),
|
|
SHELL_CMD_ARG(vocs_location_get, NULL,
|
|
"Get the location of a VOCS instance <inst_index>",
|
|
cmd_vcs_client_vocs_location_get, 2, 0),
|
|
SHELL_CMD_ARG(vocs_location_set, NULL,
|
|
"Set the location of a VOCS instance <inst_index> "
|
|
"<location>",
|
|
cmd_vcs_client_vocs_location_set, 3, 0),
|
|
SHELL_CMD_ARG(vocs_offset_set, NULL,
|
|
"Set the offset for a VOCS instance <inst_index> "
|
|
"<offset>",
|
|
cmd_vcs_client_vocs_offset_set, 3, 0),
|
|
SHELL_CMD_ARG(vocs_output_description_get, NULL,
|
|
"Get the output description of a VOCS instance "
|
|
"<inst_index>",
|
|
cmd_vcs_client_vocs_output_description_get, 2, 0),
|
|
SHELL_CMD_ARG(vocs_output_description_set, NULL,
|
|
"Set the output description of a VOCS instance "
|
|
"<inst_index> <description>",
|
|
cmd_vcs_client_vocs_output_description_set, 3, 0),
|
|
SHELL_CMD_ARG(aics_input_state_get, NULL,
|
|
"Get the input state of a AICS instance <inst_index>",
|
|
cmd_vcs_client_aics_input_state_get, 2, 0),
|
|
SHELL_CMD_ARG(aics_gain_setting_get, NULL,
|
|
"Get the gain settings of a AICS instance <inst_index>",
|
|
cmd_vcs_client_aics_gain_setting_get, 2, 0),
|
|
SHELL_CMD_ARG(aics_input_type_get, NULL,
|
|
"Get the input type of a AICS instance <inst_index>",
|
|
cmd_vcs_client_aics_input_type_get, 2, 0),
|
|
SHELL_CMD_ARG(aics_input_status_get, NULL,
|
|
"Get the input status of a AICS instance <inst_index>",
|
|
cmd_vcs_client_aics_input_status_get, 2, 0),
|
|
SHELL_CMD_ARG(aics_input_unmute, NULL,
|
|
"Unmute the input of a AICS instance <inst_index>",
|
|
cmd_vcs_client_aics_input_unmute, 2, 0),
|
|
SHELL_CMD_ARG(aics_input_mute, NULL,
|
|
"Mute the input of a AICS instance <inst_index>",
|
|
cmd_vcs_client_aics_input_mute, 2, 0),
|
|
SHELL_CMD_ARG(aics_manual_input_gain_set, NULL,
|
|
"Set the gain mode of a AICS instance to manual "
|
|
"<inst_index>",
|
|
cmd_vcs_client_aics_manual_input_gain_set, 2, 0),
|
|
SHELL_CMD_ARG(aics_automatic_input_gain_set, NULL,
|
|
"Set the gain mode of a AICS instance to automatic "
|
|
"<inst_index>",
|
|
cmd_vcs_client_aics_auto_input_gain_set, 2, 0),
|
|
SHELL_CMD_ARG(aics_gain_set, NULL,
|
|
"Set the gain of a AICS instance <inst_index> <gain>",
|
|
cmd_vcs_client_aics_gain_set, 3, 0),
|
|
SHELL_CMD_ARG(aics_input_description_get, NULL,
|
|
"Read the input description of a AICS instance "
|
|
"<inst_index>",
|
|
cmd_vcs_client_aics_input_description_get, 2, 0),
|
|
SHELL_CMD_ARG(aics_input_description_set, NULL,
|
|
"Set the input description of a AICS instance "
|
|
"<inst_index> <description>",
|
|
cmd_vcs_client_aics_input_description_set, 3, 0),
|
|
SHELL_SUBCMD_SET_END
|
|
);
|
|
|
|
SHELL_CMD_ARG_REGISTER(vcs_client, &vcs_client_cmds,
|
|
"Bluetooth VCS client shell commands",
|
|
cmd_vcs_client, 1, 1);
|