b19671e0d4
1. BLE Mesh Core * Provisioning: Node Role * PB-ADV and PB-GATT * Authentication OOB * Provisioning: Provisioner Role * PB-ADV and PB-GATT * Authentication OOB * Networking * Relay * Segmentation and Reassembly * Key Refresh * IV Update * Proxy Support * Multiple Client Models Run Simultaneously * Support multiple client models send packets to different nodes simultaneously * No blocking between client model and server * NVS Storage * Store BLE Mesh node related information in flash * Store BLE Mesh Provisioner related information in flash 2. BLE Mesh Models * Foundation Models * Configuration Server Model * Configuration Client Model * Health Server Model * Health Client Model * Generic * Generic OnOff Server * Generic OnOff Client * Generic Level Server * Generic Level Client * Generic Default Transition Time Server * Generic Default Transition Time Client * Generic Power OnOff Server * Generic Power OnOff Setup Server * Generic Power OnOff Client * Generic Power Level Server * Generic Power Level Setup Server * Generic Power Level Client * Generic Battery Server * Generic Battery Client * Generic Location Server * Generic Location Setup Server * Generic Location Client * Generic Admin Property Server * Generic Manufacturer Property Server * Generic User Property Server * Generic Client Property Server * Generic Property Client * Sensor Server Model * Sensor Server * Sensor Setup Server * Sensor Client * Time and Scenes * Time Server * Time Setup Server * Time Client * Scene Server * Scene Setup Server * Scene Client * Scheduler Server * Scheduler Setup Server * Scheduler Client * Lighting * Light Lightness Server * Light Lightness Setup Server * Light Lightness Client * Light CTL Server * Light CTL Setup Server * Light CTL Client * Light CTL Temperature Server * Light HSL Server * Light HSL Setup Server * Light HSL Client * Light HSL Hue Server * Light HSL Saturation Server * Light xyL Server * Light xyL Setup Server * Light xyL Client * Light LC Server * Light LC Setup Server * Light LC Client 3. BLE Mesh Applications * BLE Mesh Node * OnOff Client Example * OnOff Server Example * BLE Mesh Provisioner * Example * Fast Provisioning * Vendor Fast Prov Server Model * Vendor Fast Prov Client Model * Examples * Wi-Fi & BLE Mesh Coexistence * Example * BLE Mesh Console Commands * Examples
159 lines
8.3 KiB
Makefile
159 lines
8.3 KiB
Makefile
#
|
|
# Component Makefile
|
|
#
|
|
ifdef CONFIG_BT_ENABLED
|
|
|
|
COMPONENT_SRCDIRS := .
|
|
|
|
COMPONENT_ADD_INCLUDEDIRS := include
|
|
|
|
LIBS := btdm_app
|
|
|
|
COMPONENT_ADD_LDFLAGS := -lbt -L $(COMPONENT_PATH)/lib \
|
|
$(addprefix -l,$(LIBS))
|
|
|
|
# re-link program if BT binary libs change
|
|
COMPONENT_ADD_LINKER_DEPS := $(patsubst %,$(COMPONENT_PATH)/lib/lib%.a,$(LIBS))
|
|
|
|
COMPONENT_SUBMODULES += lib
|
|
|
|
ifeq ($(GCC_NOT_5_2_0), 1)
|
|
# TODO: annotate fallthroughs in Bluedroid code with comments
|
|
CFLAGS += -Wno-implicit-fallthrough
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
ifdef CONFIG_BLUEDROID_ENABLED
|
|
|
|
COMPONENT_PRIV_INCLUDEDIRS += bluedroid/bta/include \
|
|
bluedroid/bta/ar/include \
|
|
bluedroid/bta/av/include \
|
|
bluedroid/bta/hf_client/include \
|
|
bluedroid/bta/dm/include \
|
|
bluedroid/bta/gatt/include \
|
|
bluedroid/bta/hh/include \
|
|
bluedroid/bta/jv/include \
|
|
bluedroid/bta/sdp/include \
|
|
bluedroid/bta/sys/include \
|
|
bluedroid/btcore/include \
|
|
bluedroid/device/include \
|
|
bluedroid/gki/include \
|
|
bluedroid/hci/include \
|
|
bluedroid/osi/include \
|
|
bluedroid/utils/include \
|
|
bluedroid/external/sbc/decoder/include \
|
|
bluedroid/external/sbc/encoder/include \
|
|
bluedroid/btc/core/include \
|
|
bluedroid/btc/profile/esp/blufi/include \
|
|
bluedroid/btc/profile/esp/include \
|
|
bluedroid/btc/profile/std/gatt/include \
|
|
bluedroid/btc/profile/std/gap/include \
|
|
bluedroid/btc/profile/std/a2dp/include \
|
|
bluedroid/btc/profile/std/include \
|
|
bluedroid/btc/include \
|
|
bluedroid/btif/include \
|
|
bluedroid/stack/btm/include \
|
|
bluedroid/stack/btu/include \
|
|
bluedroid/stack/gap/include \
|
|
bluedroid/stack/gatt/include \
|
|
bluedroid/stack/hcic/include \
|
|
bluedroid/stack/l2cap/include \
|
|
bluedroid/stack/sdp/include \
|
|
bluedroid/stack/smp/include \
|
|
bluedroid/stack/avct/include \
|
|
bluedroid/stack/avrc/include \
|
|
bluedroid/stack/avdt/include \
|
|
bluedroid/stack/a2dp/include \
|
|
bluedroid/stack/rfcomm/include \
|
|
bluedroid/stack/include \
|
|
bluedroid/utils/include \
|
|
bluedroid/common/include
|
|
|
|
COMPONENT_ADD_INCLUDEDIRS += bluedroid/api/include/api
|
|
|
|
COMPONENT_SRCDIRS += bluedroid/bta/dm \
|
|
bluedroid/bta/gatt \
|
|
bluedroid/bta/hh \
|
|
bluedroid/bta/sdp \
|
|
bluedroid/bta/av \
|
|
bluedroid/bta/ar \
|
|
bluedroid/bta/sys \
|
|
bluedroid/bta/jv \
|
|
bluedroid/bta/hf_client \
|
|
bluedroid/bta \
|
|
bluedroid/btcore \
|
|
bluedroid/btif \
|
|
bluedroid/device \
|
|
bluedroid/gki \
|
|
bluedroid/hci \
|
|
bluedroid/main \
|
|
bluedroid/osi \
|
|
bluedroid/external/sbc/decoder/srce \
|
|
bluedroid/external/sbc/encoder/srce \
|
|
bluedroid/btc/core \
|
|
bluedroid/btc/profile/esp/blufi \
|
|
bluedroid/btc/profile/std/gap \
|
|
bluedroid/btc/profile/std/gatt \
|
|
bluedroid/btc/profile/std/a2dp \
|
|
bluedroid/btc/profile/std/avrc \
|
|
bluedroid/btc/profile/std/spp \
|
|
bluedroid/btc/profile/std/hf_client \
|
|
bluedroid/btc/profile \
|
|
bluedroid/stack/btm \
|
|
bluedroid/stack/btu \
|
|
bluedroid/stack/gap \
|
|
bluedroid/stack/gatt \
|
|
bluedroid/stack/hcic \
|
|
bluedroid/stack/include \
|
|
bluedroid/stack/l2cap \
|
|
bluedroid/stack/sdp \
|
|
bluedroid/stack/smp \
|
|
bluedroid/stack/avct \
|
|
bluedroid/stack/avrc \
|
|
bluedroid/stack/avdt \
|
|
bluedroid/stack/a2dp \
|
|
bluedroid/stack/rfcomm \
|
|
bluedroid/stack \
|
|
bluedroid/utils \
|
|
bluedroid/api \
|
|
bluedroid
|
|
|
|
ifeq ($(GCC_NOT_5_2_0), 1)
|
|
bluedroid/bta/sdp/bta_sdp_act.o: CFLAGS += -Wno-unused-const-variable
|
|
bluedroid/btc/core/btc_config.o: CFLAGS += -Wno-unused-const-variable
|
|
bluedroid/stack/btm/btm_sec.o: CFLAGS += -Wno-unused-const-variable
|
|
bluedroid/stack/smp/smp_keys.o: CFLAGS += -Wno-unused-const-variable
|
|
endif
|
|
|
|
ifdef CONFIG_BLE_MESH
|
|
COMPONENT_ADD_INCLUDEDIRS += bluedroid/osi/include
|
|
|
|
COMPONENT_SRCDIRS += esp_ble_mesh/mesh_core/bluedroid_host
|
|
endif
|
|
|
|
endif
|
|
|
|
ifdef CONFIG_BLE_MESH
|
|
COMPONENT_ADD_INCLUDEDIRS += esp_ble_mesh/mesh_common/include \
|
|
esp_ble_mesh/mesh_core \
|
|
esp_ble_mesh/mesh_core/include \
|
|
esp_ble_mesh/mesh_core/storage \
|
|
esp_ble_mesh/btc/include \
|
|
esp_ble_mesh/mesh_models/common/include \
|
|
esp_ble_mesh/mesh_models/client/include \
|
|
esp_ble_mesh/mesh_models/server/include \
|
|
esp_ble_mesh/api/core/include \
|
|
esp_ble_mesh/api/models/include \
|
|
esp_ble_mesh/api
|
|
|
|
COMPONENT_SRCDIRS += esp_ble_mesh/mesh_common \
|
|
esp_ble_mesh/mesh_core \
|
|
esp_ble_mesh/mesh_core/storage \
|
|
esp_ble_mesh/btc \
|
|
esp_ble_mesh/mesh_models/client \
|
|
esp_ble_mesh/mesh_models/server \
|
|
esp_ble_mesh/api/core \
|
|
esp_ble_mesh/api/models
|
|
endif
|