]> granicus.if.org Git - esp-idf/commit
component/bt: Add SPP profile
authorbaohongde <baohongde@espressif.com>
Fri, 5 Jan 2018 08:48:29 +0000 (16:48 +0800)
committerbaohongde <baohongde@espressif.com>
Fri, 5 Jan 2018 08:48:29 +0000 (16:48 +0800)
commitd2663c866ec7b0497c0b9a338742659ab78bf19e
treec7ee3d503dbac981aed7d839377ffa53b1b5e2f1
parent5401a75badcfc9c20f7818fdf3c683e3da8b2547
component/bt: Add SPP profile
45 files changed:
components/bt/Kconfig
components/bt/bluedroid/api/esp_spp_api.c [new file with mode: 0644]
components/bt/bluedroid/api/include/esp_spp_api.h [new file with mode: 0644]
components/bt/bluedroid/bta/include/bta_jv_api.h [new file with mode: 0644]
components/bt/bluedroid/bta/include/bta_jv_co.h [new file with mode: 0644]
components/bt/bluedroid/bta/jv/bta_jv_act.c [new file with mode: 0644]
components/bt/bluedroid/bta/jv/bta_jv_api.c [new file with mode: 0644]
components/bt/bluedroid/bta/jv/bta_jv_cfg.c [new file with mode: 0644]
components/bt/bluedroid/bta/jv/bta_jv_int.h [new file with mode: 0644]
components/bt/bluedroid/bta/jv/bta_jv_main.c [new file with mode: 0644]
components/bt/bluedroid/btc/core/btc_task.c
components/bt/bluedroid/btc/core/btc_util.c
components/bt/bluedroid/btc/include/btc_task.h
components/bt/bluedroid/btc/include/btc_util.h
components/bt/bluedroid/btc/profile/std/include/btc_spp.h [new file with mode: 0644]
components/bt/bluedroid/btc/profile/std/spp/btc_spp.c [new file with mode: 0644]
components/bt/bluedroid/include/bt_target.h
components/bt/bluedroid/stack/btu/btu_task.c
components/bt/bluedroid/stack/include/btu.h
components/bt/bluedroid/stack/include/port_api.h
components/bt/bluedroid/stack/rfcomm/include/port_int.h
components/bt/bluedroid/stack/rfcomm/port_api.c
components/bt/bluedroid/stack/rfcomm/port_rfc.c
components/bt/bluedroid/stack/rfcomm/port_utils.c
components/bt/bluedroid/stack/rfcomm/rfc_l2cap_if.c
components/bt/bluedroid/stack/rfcomm/rfc_mx_fsm.c
components/bt/bluedroid/stack/rfcomm/rfc_port_fsm.c
components/bt/bluedroid/stack/rfcomm/rfc_port_if.c
components/bt/bluedroid/stack/rfcomm/rfc_ts_frames.c
components/bt/bluedroid/stack/rfcomm/rfc_utils.c
components/bt/component.mk
docs/Doxyfile
docs/api-reference/bluetooth/classic_bt.rst
docs/api-reference/bluetooth/esp_spp.rst [new file with mode: 0644]
examples/bluetooth/a2dp_sink/sdkconfig.defaults
examples/bluetooth/bt_spp_acceptor/Makefile [new file with mode: 0644]
examples/bluetooth/bt_spp_acceptor/README.rst [new file with mode: 0644]
examples/bluetooth/bt_spp_acceptor/main/component.mk [new file with mode: 0644]
examples/bluetooth/bt_spp_acceptor/main/example_spp_acceptor_demo.c [new file with mode: 0644]
examples/bluetooth/bt_spp_acceptor/sdkconfig.defaults [new file with mode: 0644]
examples/bluetooth/bt_spp_initiator/Makefile [new file with mode: 0644]
examples/bluetooth/bt_spp_initiator/README.rst [new file with mode: 0644]
examples/bluetooth/bt_spp_initiator/main/component.mk [new file with mode: 0644]
examples/bluetooth/bt_spp_initiator/main/example_spp_initiator_demo.c [new file with mode: 0644]
examples/bluetooth/bt_spp_initiator/sdkconfig.defaults [new file with mode: 0644]