| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- // Copyright 2017-2018 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 "hid_dev.h"
- #include <stdint.h>
- #include <string.h>
- #include <stdbool.h>
- #include <stdio.h>
- #include "esp_log.h"
- static hid_report_map_t *hid_dev_rpt_tbl;
- static uint8_t hid_dev_rpt_tbl_Len;
- static hid_report_map_t *hid_dev_rpt_by_id(uint8_t id, uint8_t type)
- {
- hid_report_map_t *rpt = hid_dev_rpt_tbl;
- for (uint8_t i = hid_dev_rpt_tbl_Len; i > 0; i--, rpt++) {
- if (rpt->id == id && rpt->type == type && rpt->mode == hidProtocolMode) {
- return rpt;
- }
- }
- return NULL;
- }
- void hid_dev_register_reports(uint8_t num_reports, hid_report_map_t *p_report)
- {
- hid_dev_rpt_tbl = p_report;
- hid_dev_rpt_tbl_Len = num_reports;
- return;
- }
- void hid_dev_send_report(esp_gatt_if_t gatts_if, uint16_t conn_id,
- uint8_t id, uint8_t type, uint8_t length, uint8_t *data)
- {
- hid_report_map_t *p_rpt;
- // get att handle for report
- if ((p_rpt = hid_dev_rpt_by_id(id, type)) != NULL) {
- // if notifications are enabled
- ESP_LOGD(HID_LE_PRF_TAG, "%s(), send the report, handle = %d", __func__, p_rpt->handle);
- esp_ble_gatts_send_indicate(gatts_if, conn_id, p_rpt->handle, length, data, false);
- }
-
- return;
- }
- void hid_consumer_build_report(uint8_t *buffer, consumer_cmd_t cmd)
- {
- if (!buffer) {
- ESP_LOGE(HID_LE_PRF_TAG, "%s(), the buffer is NULL, hid build report failed.", __func__);
- return;
- }
-
- switch (cmd) {
- case HID_CONSUMER_CHANNEL_UP:
- HID_CC_RPT_SET_CHANNEL(buffer, HID_CC_RPT_CHANNEL_UP);
- break;
- case HID_CONSUMER_CHANNEL_DOWN:
- HID_CC_RPT_SET_CHANNEL(buffer, HID_CC_RPT_CHANNEL_DOWN);
- break;
- case HID_CONSUMER_VOLUME_UP:
- HID_CC_RPT_SET_VOLUME_UP(buffer);
- break;
- case HID_CONSUMER_VOLUME_DOWN:
- HID_CC_RPT_SET_VOLUME_DOWN(buffer);
- break;
- case HID_CONSUMER_MUTE:
- HID_CC_RPT_SET_BUTTON(buffer, HID_CC_RPT_MUTE);
- break;
- case HID_CONSUMER_POWER:
- HID_CC_RPT_SET_BUTTON(buffer, HID_CC_RPT_POWER);
- break;
- case HID_CONSUMER_RECALL_LAST:
- HID_CC_RPT_SET_BUTTON(buffer, HID_CC_RPT_LAST);
- break;
- case HID_CONSUMER_ASSIGN_SEL:
- HID_CC_RPT_SET_BUTTON(buffer, HID_CC_RPT_ASSIGN_SEL);
- break;
- case HID_CONSUMER_PLAY:
- HID_CC_RPT_SET_BUTTON(buffer, HID_CC_RPT_PLAY);
- break;
- case HID_CONSUMER_PAUSE:
- HID_CC_RPT_SET_BUTTON(buffer, HID_CC_RPT_PAUSE);
- break;
- case HID_CONSUMER_RECORD:
- HID_CC_RPT_SET_BUTTON(buffer, HID_CC_RPT_RECORD);
- break;
- case HID_CONSUMER_FAST_FORWARD:
- HID_CC_RPT_SET_BUTTON(buffer, HID_CC_RPT_FAST_FWD);
- break;
- case HID_CONSUMER_REWIND:
- HID_CC_RPT_SET_BUTTON(buffer, HID_CC_RPT_REWIND);
- break;
- case HID_CONSUMER_SCAN_NEXT_TRK:
- HID_CC_RPT_SET_BUTTON(buffer, HID_CC_RPT_SCAN_NEXT_TRK);
- break;
- case HID_CONSUMER_SCAN_PREV_TRK:
- HID_CC_RPT_SET_BUTTON(buffer, HID_CC_RPT_SCAN_PREV_TRK);
- break;
- case HID_CONSUMER_STOP:
- HID_CC_RPT_SET_BUTTON(buffer, HID_CC_RPT_STOP);
- break;
- default:
- break;
- }
- return;
- }
|