mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
46e7570dcd
- the first characteristic is used to receive data from client. - the second characteristic is used to notify data to client. - the third characteristic is used to receive command from client, user can add code to process the command. - the fourth characteristic is used to notify status to client. - the fifth characteristic is used to keep ble connection
12 lines
240 B
Makefile
12 lines
240 B
Makefile
#
|
|
# This is a project Makefile. It is assumed the directory this Makefile resides in is a
|
|
# project subdirectory.
|
|
#
|
|
|
|
PROJECT_NAME := ble_spp_server_demo
|
|
|
|
COMPONENT_ADD_INCLUDEDIRS := components/include
|
|
|
|
include $(IDF_PATH)/make/project.mk
|
|
|