| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- // Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- #include "common/bt_target.h"
- #include <string.h>
- #include "esp_err.h"
- #include "esp_avrc_api.h"
- #include "esp_bt_main.h"
- #include "btc/btc_manage.h"
- #include "btc_avrc.h"
- #if BTC_AV_INCLUDED
- esp_err_t esp_avrc_ct_register_callback(esp_avrc_ct_cb_t callback)
- {
- if (esp_bluedroid_get_status() != ESP_BLUEDROID_STATUS_ENABLED) {
- return ESP_ERR_INVALID_STATE;
- }
- if (callback == NULL) {
- return ESP_FAIL;
- }
- btc_profile_cb_set(BTC_PID_AVRC, callback);
- return ESP_OK;
- }
- esp_err_t esp_avrc_ct_init(void)
- {
- if (esp_bluedroid_get_status() != ESP_BLUEDROID_STATUS_ENABLED) {
- return ESP_ERR_INVALID_STATE;
- }
- btc_msg_t msg;
- msg.sig = BTC_SIG_API_CALL;
- msg.pid = BTC_PID_AVRC;
- msg.act = BTC_AVRC_CTRL_API_INIT_EVT;
- /* Switch to BTC context */
- bt_status_t stat = btc_transfer_context(&msg, NULL, 0, NULL);
- return (stat == BT_STATUS_SUCCESS) ? ESP_OK : ESP_FAIL;
- }
- esp_err_t esp_avrc_ct_deinit(void)
- {
- if (esp_bluedroid_get_status() != ESP_BLUEDROID_STATUS_ENABLED) {
- return ESP_ERR_INVALID_STATE;
- }
- btc_msg_t msg;
- msg.sig = BTC_SIG_API_CALL;
- msg.pid = BTC_PID_AVRC;
- msg.act = BTC_AVRC_CTRL_API_DEINIT_EVT;
- /* Switch to BTC context */
- bt_status_t stat = btc_transfer_context(&msg, NULL, 0, NULL);
- return (stat == BT_STATUS_SUCCESS) ? ESP_OK : ESP_FAIL;
- }
- esp_err_t esp_avrc_ct_send_set_player_value_cmd(uint8_t tl, uint8_t attr_id, uint8_t value_id)
- {
- if (esp_bluedroid_get_status() != ESP_BLUEDROID_STATUS_ENABLED) {
- return ESP_ERR_INVALID_STATE;
- }
- if (tl >= 16 || attr_id > ESP_AVRC_PS_MAX_ATTR - 1) {
- return ESP_FAIL;
- }
- btc_msg_t msg;
- msg.sig = BTC_SIG_API_CALL;
- msg.pid = BTC_PID_AVRC;
- msg.act = BTC_AVRC_CTRL_API_SET_PLAYER_SETTING_EVT;
- btc_avrc_args_t arg;
- memset(&arg, 0, sizeof(btc_avrc_args_t));
- arg.ps_cmd.tl = tl;
- arg.ps_cmd.attr_id = attr_id;
- arg.ps_cmd.value_id = value_id;
- /* Switch to BTC context */
- bt_status_t stat = btc_transfer_context(&msg, &arg, sizeof(btc_avrc_args_t), NULL);
- return (stat == BT_STATUS_SUCCESS) ? ESP_OK : ESP_FAIL;
- }
- esp_err_t esp_avrc_ct_send_register_notification_cmd(uint8_t tl, uint8_t event_id, uint32_t event_parameter)
- {
- if (esp_bluedroid_get_status() != ESP_BLUEDROID_STATUS_ENABLED) {
- return ESP_ERR_INVALID_STATE;
- }
- if (tl >= 16 || event_id > ESP_AVRC_RN_MAX_EVT - 1) {
- return ESP_FAIL;
- }
- btc_msg_t msg;
- msg.sig = BTC_SIG_API_CALL;
- msg.pid = BTC_PID_AVRC;
- msg.act = BTC_AVRC_NOTIFY_API_SND_REG_NOTIFY_EVT;
- btc_avrc_args_t arg;
- memset(&arg, 0, sizeof(btc_avrc_args_t));
- arg.rn_cmd.tl = tl;
- arg.rn_cmd.event_id = event_id;
- arg.rn_cmd.event_parameter = event_parameter;
- /* Switch to BTC context */
- bt_status_t stat = btc_transfer_context(&msg, &arg, sizeof(btc_avrc_args_t), NULL);
- return (stat == BT_STATUS_SUCCESS) ? ESP_OK : ESP_FAIL;
- }
- esp_err_t esp_avrc_ct_send_metadata_cmd(uint8_t tl, uint8_t attr_mask)
- {
- if (esp_bluedroid_get_status() != ESP_BLUEDROID_STATUS_ENABLED) {
- return ESP_ERR_INVALID_STATE;
- }
- if (tl >= 16) {
- return ESP_FAIL;
- }
- btc_msg_t msg;
- msg.sig = BTC_SIG_API_CALL;
- msg.pid = BTC_PID_AVRC;
- msg.act = BTC_AVRC_STATUS_API_SND_META_EVT;
- btc_avrc_args_t arg;
- memset(&arg, 0, sizeof(btc_avrc_args_t));
- arg.md_cmd.tl = tl;
- arg.md_cmd.attr_mask = attr_mask;
- /* Switch to BTC context */
- bt_status_t stat = btc_transfer_context(&msg, &arg, sizeof(btc_avrc_args_t), NULL);
- return (stat == BT_STATUS_SUCCESS) ? ESP_OK : ESP_FAIL;
- }
- esp_err_t esp_avrc_ct_send_passthrough_cmd(uint8_t tl, uint8_t key_code, uint8_t key_state)
- {
- if (esp_bluedroid_get_status() != ESP_BLUEDROID_STATUS_ENABLED) {
- return ESP_ERR_INVALID_STATE;
- }
- if (tl >= 16 || key_state > ESP_AVRC_PT_CMD_STATE_RELEASED) {
- return ESP_FAIL;
- }
- btc_msg_t msg;
- msg.sig = BTC_SIG_API_CALL;
- msg.pid = BTC_PID_AVRC;
- msg.act = BTC_AVRC_CTRL_API_SND_PTCMD_EVT;
- btc_avrc_args_t arg;
- memset(&arg, 0, sizeof(btc_avrc_args_t));
- arg.pt_cmd.tl = tl;
- arg.pt_cmd.key_code = key_code;
- arg.pt_cmd.key_state = key_state;
- /* Switch to BTC context */
- bt_status_t stat = btc_transfer_context(&msg, &arg, sizeof(btc_avrc_args_t), NULL);
- return (stat == BT_STATUS_SUCCESS) ? ESP_OK : ESP_FAIL;
- }
- #endif /* #if BTC_AV_INCLUDED */
|