]> granicus.if.org Git - esp-idf/commit
Port NimBLE Host Stack on ESP-IDF
authorHrishikesh Dhayagude <hrishi@espressif.com>
Tue, 25 Jun 2019 01:03:58 +0000 (09:03 +0800)
committerAngus Gratton <angus@espressif.com>
Tue, 25 Jun 2019 01:03:58 +0000 (09:03 +0800)
commit342f6a7829e9be1690b8e812d1fdea4fd5d2fd28
tree8095ebe4f9908359459a3179731dd354cfe73694
parentdff5254085a6b63abf90c3011c6efbbc7e3494e0
Port NimBLE Host Stack on ESP-IDF
61 files changed:
.gitmodules
components/bt/Kconfig
components/bt/bt.c
components/bt/include/esp_bt.h
components/esp32/ld/esp32.project.ld.in
components/nimble/CMakeLists.txt [new file with mode: 0644]
components/nimble/Kconfig.in [new file with mode: 0644]
components/nimble/component.mk [new file with mode: 0644]
components/nimble/esp-hci/include/esp_nimble_hci.h [new file with mode: 0644]
components/nimble/esp-hci/src/esp_nimble_hci.c [new file with mode: 0644]
components/nimble/nimble [new submodule]
components/nimble/port/include/console/console.h [new file with mode: 0644]
components/nimble/port/include/esp_nimble_cfg.h [new file with mode: 0644]
docs/Doxyfile
docs/_static/esp32_nimble_stack.png [new file with mode: 0644]
docs/en/COPYRIGHT.rst
docs/en/api-reference/bluetooth/index.rst
docs/en/api-reference/bluetooth/nimble/index.rst [new file with mode: 0644]
docs/zh_CN/api-reference/bluetooth/index.rst
docs/zh_CN/api-reference/bluetooth/nimble/index.rst [new file with mode: 0644]
examples/README.md
examples/bluetooth/nimble/README.md [new file with mode: 0644]
examples/bluetooth/nimble/blecent/CMakeLists.txt [new file with mode: 0644]
examples/bluetooth/nimble/blecent/Makefile [new file with mode: 0644]
examples/bluetooth/nimble/blecent/README.md [new file with mode: 0644]
examples/bluetooth/nimble/blecent/main/CMakeLists.txt [new file with mode: 0644]
examples/bluetooth/nimble/blecent/main/Kconfig.projbuild [new file with mode: 0644]
examples/bluetooth/nimble/blecent/main/blecent.h [new file with mode: 0644]
examples/bluetooth/nimble/blecent/main/component.mk [new file with mode: 0644]
examples/bluetooth/nimble/blecent/main/main.c [new file with mode: 0644]
examples/bluetooth/nimble/blecent/main/misc.c [new file with mode: 0644]
examples/bluetooth/nimble/blecent/main/peer.c [new file with mode: 0644]
examples/bluetooth/nimble/blecent/sdkconfig.defaults [new file with mode: 0644]
examples/bluetooth/nimble/blehr/CMakeLists.txt [new file with mode: 0644]
examples/bluetooth/nimble/blehr/Makefile [new file with mode: 0644]
examples/bluetooth/nimble/blehr/README.md [new file with mode: 0644]
examples/bluetooth/nimble/blehr/main/CMakeLists.txt [new file with mode: 0644]
examples/bluetooth/nimble/blehr/main/blehr_sens.h [new file with mode: 0644]
examples/bluetooth/nimble/blehr/main/component.mk [new file with mode: 0644]
examples/bluetooth/nimble/blehr/main/gatt_svr.c [new file with mode: 0644]
examples/bluetooth/nimble/blehr/main/main.c [new file with mode: 0644]
examples/bluetooth/nimble/blehr/sdkconfig.defaults [new file with mode: 0644]
examples/bluetooth/nimble/blemesh/CMakeLists.txt [new file with mode: 0644]
examples/bluetooth/nimble/blemesh/Makefile [new file with mode: 0644]
examples/bluetooth/nimble/blemesh/README.md [new file with mode: 0644]
examples/bluetooth/nimble/blemesh/main/CMakeLists.txt [new file with mode: 0644]
examples/bluetooth/nimble/blemesh/main/app_mesh.c [new file with mode: 0644]
examples/bluetooth/nimble/blemesh/main/component.mk [new file with mode: 0644]
examples/bluetooth/nimble/blemesh/sdkconfig.defaults [new file with mode: 0644]
examples/bluetooth/nimble/bleprph/CMakeLists.txt [new file with mode: 0644]
examples/bluetooth/nimble/bleprph/Makefile [new file with mode: 0644]
examples/bluetooth/nimble/bleprph/README.md [new file with mode: 0644]
examples/bluetooth/nimble/bleprph/main/CMakeLists.txt [new file with mode: 0644]
examples/bluetooth/nimble/bleprph/main/Kconfig.projbuild [new file with mode: 0644]
examples/bluetooth/nimble/bleprph/main/bleprph.h [new file with mode: 0644]
examples/bluetooth/nimble/bleprph/main/component.mk [new file with mode: 0644]
examples/bluetooth/nimble/bleprph/main/gatt_svr.c [new file with mode: 0644]
examples/bluetooth/nimble/bleprph/main/main.c [new file with mode: 0644]
examples/bluetooth/nimble/bleprph/main/misc.c [new file with mode: 0644]
examples/bluetooth/nimble/bleprph/main/scli.c [new file with mode: 0644]
examples/bluetooth/nimble/bleprph/sdkconfig.defaults [new file with mode: 0644]