]> granicus.if.org Git - esp-idf/commit
component/bt: implement HFP Hands Free Unit Role
authorwangmengyang <wangmengyang@espressif.com>
Mon, 21 May 2018 03:33:30 +0000 (11:33 +0800)
committerwangmengyang <wangmengyang@espressif.com>
Mon, 21 May 2018 03:33:30 +0000 (11:33 +0800)
commit4c4e143a2f82215694e14f3c21828aba23c62db9
tree7da64bb47e69c70cea788361f1fdb1ad86d70847
parent1f7b41e206646417adc572da928175d33c986bd3
component/bt: implement HFP Hands Free Unit Role
60 files changed:
components/bt/Kconfig
components/bt/bluedroid/api/esp_hf_client_api.c [new file with mode: 0644]
components/bt/bluedroid/api/include/api/esp_hf_client_api.h [new file with mode: 0644]
components/bt/bluedroid/api/include/api/esp_hf_defs.h [new file with mode: 0644]
components/bt/bluedroid/bta/dm/bta_dm_act.c
components/bt/bluedroid/bta/dm/bta_dm_cfg.c
components/bt/bluedroid/bta/dm/bta_dm_ci.c
components/bt/bluedroid/bta/dm/bta_dm_co.c
components/bt/bluedroid/bta/dm/bta_dm_main.c
components/bt/bluedroid/bta/dm/bta_dm_pm.c
components/bt/bluedroid/bta/dm/bta_dm_sco.c
components/bt/bluedroid/bta/dm/include/bta_dm_int.h
components/bt/bluedroid/bta/hf_client/bta_hf_client_act.c [new file with mode: 0644]
components/bt/bluedroid/bta/hf_client/bta_hf_client_api.c [new file with mode: 0644]
components/bt/bluedroid/bta/hf_client/bta_hf_client_at.c [new file with mode: 0644]
components/bt/bluedroid/bta/hf_client/bta_hf_client_cmd.c [new file with mode: 0644]
components/bt/bluedroid/bta/hf_client/bta_hf_client_main.c [new file with mode: 0644]
components/bt/bluedroid/bta/hf_client/bta_hf_client_rfc.c [new file with mode: 0644]
components/bt/bluedroid/bta/hf_client/bta_hf_client_sco.c [new file with mode: 0644]
components/bt/bluedroid/bta/hf_client/bta_hf_client_sdp.c [new file with mode: 0644]
components/bt/bluedroid/bta/hf_client/include/bta_hf_client_at.h [new file with mode: 0644]
components/bt/bluedroid/bta/hf_client/include/bta_hf_client_int.h [new file with mode: 0644]
components/bt/bluedroid/bta/include/bta/bta_dm_ci.h
components/bt/bluedroid/bta/include/bta/bta_dm_co.h
components/bt/bluedroid/bta/include/bta/bta_hf_client_api.h [new file with mode: 0644]
components/bt/bluedroid/bta/include/bta/bta_hf_client_co.h [new file with mode: 0644]
components/bt/bluedroid/bta/include/bta/bta_hfp_defs.h [new file with mode: 0644]
components/bt/bluedroid/btc/core/btc_dm.c
components/bt/bluedroid/btc/core/btc_task.c
components/bt/bluedroid/btc/include/btc/btc_task.h
components/bt/bluedroid/btc/profile/std/hf_client/bta_hf_client_co.c [new file with mode: 0644]
components/bt/bluedroid/btc/profile/std/hf_client/btc_hf_client.c [new file with mode: 0644]
components/bt/bluedroid/btc/profile/std/include/btc_hf_client.h [new file with mode: 0644]
components/bt/bluedroid/common/include/common/bt_target.h
components/bt/bluedroid/device/controller.c
components/bt/bluedroid/device/include/device/controller.h
components/bt/bluedroid/hci/hci_audio.c [new file with mode: 0644]
components/bt/bluedroid/hci/hci_packet_factory.c
components/bt/bluedroid/hci/hci_packet_parser.c
components/bt/bluedroid/hci/include/hci/hci_audio.h [new file with mode: 0644]
components/bt/bluedroid/hci/include/hci/hci_packet_factory.h
components/bt/bluedroid/hci/include/hci/hci_packet_parser.h
components/bt/bluedroid/main/bte_init.c
components/bt/bluedroid/stack/btm/btm_devctl.c
components/bt/bluedroid/stack/btm/btm_sco.c
components/bt/bluedroid/stack/btm/include/btm_int.h
components/bt/bluedroid/stack/btu/btu_hcif.c
components/bt/bluedroid/stack/include/stack/btm_api.h
components/bt/bluedroid/stack/rfcomm/port_rfc.c
components/bt/bt.c
components/bt/component.mk
components/bt/include/esp_bt.h
components/bt/lib
components/esp32/ld/esp32.rom.ld
docs/Doxyfile
docs/en/api-reference/bluetooth/classic_bt.rst
docs/en/api-reference/bluetooth/esp_hf_client.rst [new file with mode: 0644]
docs/en/api-reference/bluetooth/esp_hf_defs.rst [new file with mode: 0644]
docs/zh_CN/api-reference/bluetooth/esp_hf_client.rst [new file with mode: 0644]
docs/zh_CN/api-reference/bluetooth/esp_hf_defs.rst [new file with mode: 0644]