Skip to content

Commit

Permalink
Merge branch 'feature/btdm_add_ble_compatibility_test_demo' into 'mas…
Browse files Browse the repository at this point in the history
…ter'

Component/bt: add BLE Compatibility Test demo

See merge request idf/esp-idf!3749
  • Loading branch information
jack0c committed Nov 26, 2018
2 parents 1c65f18 + e9ee938 commit 9890fea
Show file tree
Hide file tree
Showing 7 changed files with 775 additions and 0 deletions.
6 changes: 6 additions & 0 deletions examples/bluetooth/ble_compatibility_test/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# The following lines of boilerplate have to be in your project's CMakeLists
# in this exact order for cmake to work correctly
cmake_minimum_required(VERSION 3.5)

include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(ble_compatibility_test)
11 changes: 11 additions & 0 deletions examples/bluetooth/ble_compatibility_test/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#
# This is a project Makefile. It is assumed the directory this Makefile resides in is a
# project subdirectory.
#

PROJECT_NAME := ble_compatibility_test

COMPONENT_ADD_INCLUDEDIRS := components/include

include $(IDF_PATH)/make/project.mk

4 changes: 4 additions & 0 deletions examples/bluetooth/ble_compatibility_test/main/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
set(COMPONENT_SRCS "ble_compatibility_test.c")
set(COMPONENT_ADD_INCLUDEDIRS ".")

register_component()
Loading

0 comments on commit 9890fea

Please sign in to comment.