From 861816c3537ebd44c71efb35811b9a1546e187ff Mon Sep 17 00:00:00 2001 From: lly Date: Wed, 13 May 2020 16:16:07 +0800 Subject: [PATCH] ble_mesh: Rename ble mesh example main & init files - Rename ble_mesh_demo_main.c to main.c - Rename ble_mesh_demo_init.* to ble_mesh_example_init.* --- .../ble_mesh_fast_prov_client/main/CMakeLists.txt | 2 +- .../main/{ble_mesh_demo_main.c => main.c} | 2 +- .../ble_mesh_fast_prov_server/main/CMakeLists.txt | 2 +- .../main/{ble_mesh_demo_main.c => main.c} | 2 +- .../ble_mesh_node/onoff_client/main/CMakeLists.txt | 2 +- .../onoff_client/main/{ble_mesh_demo_main.c => main.c} | 2 +- .../ble_mesh_node/onoff_server/main/CMakeLists.txt | 2 +- .../onoff_server/main/{ble_mesh_demo_main.c => main.c} | 2 +- .../esp_ble_mesh/ble_mesh_provisioner/main/CMakeLists.txt | 2 +- .../main/{ble_mesh_demo_main.c => main.c} | 2 +- .../ble_mesh_sensor_model/sensor_client/main/CMakeLists.txt | 2 +- .../sensor_client/main/{ble_mesh_demo_main.c => main.c} | 2 +- .../ble_mesh_sensor_model/sensor_server/main/CMakeLists.txt | 2 +- .../sensor_server/main/{ble_mesh_demo_main.c => main.c} | 2 +- .../ble_mesh_vendor_model/vendor_client/main/CMakeLists.txt | 2 +- .../vendor_client/main/{ble_mesh_demo_main.c => main.c} | 2 +- .../ble_mesh_vendor_model/vendor_server/main/CMakeLists.txt | 2 +- .../vendor_server/main/{ble_mesh_demo_main.c => main.c} | 2 +- .../esp_ble_mesh/ble_mesh_wifi_coexist/main/CMakeLists.txt | 2 +- .../main/{ble_mesh_demo_main.c => main.c} | 2 +- .../common_components/example_init/CMakeLists.txt | 2 +- .../{ble_mesh_demo_init.c => ble_mesh_example_init.c} | 2 +- .../{ble_mesh_demo_init.h => ble_mesh_example_init.h} | 6 +++--- 23 files changed, 25 insertions(+), 25 deletions(-) rename examples/bluetooth/esp_ble_mesh/ble_mesh_fast_provision/ble_mesh_fast_prov_client/main/{ble_mesh_demo_main.c => main.c} (99%) rename examples/bluetooth/esp_ble_mesh/ble_mesh_fast_provision/ble_mesh_fast_prov_server/main/{ble_mesh_demo_main.c => main.c} (99%) rename examples/bluetooth/esp_ble_mesh/ble_mesh_node/onoff_client/main/{ble_mesh_demo_main.c => main.c} (99%) rename examples/bluetooth/esp_ble_mesh/ble_mesh_node/onoff_server/main/{ble_mesh_demo_main.c => main.c} (99%) rename examples/bluetooth/esp_ble_mesh/ble_mesh_provisioner/main/{ble_mesh_demo_main.c => main.c} (99%) rename examples/bluetooth/esp_ble_mesh/ble_mesh_sensor_model/sensor_client/main/{ble_mesh_demo_main.c => main.c} (99%) rename examples/bluetooth/esp_ble_mesh/ble_mesh_sensor_model/sensor_server/main/{ble_mesh_demo_main.c => main.c} (99%) rename examples/bluetooth/esp_ble_mesh/ble_mesh_vendor_model/vendor_client/main/{ble_mesh_demo_main.c => main.c} (99%) rename examples/bluetooth/esp_ble_mesh/ble_mesh_vendor_model/vendor_server/main/{ble_mesh_demo_main.c => main.c} (99%) rename examples/bluetooth/esp_ble_mesh/ble_mesh_wifi_coexist/main/{ble_mesh_demo_main.c => main.c} (99%) rename examples/bluetooth/esp_ble_mesh/common_components/example_init/{ble_mesh_demo_init.c => ble_mesh_example_init.c} (99%) rename examples/bluetooth/esp_ble_mesh/common_components/example_init/{ble_mesh_demo_init.h => ble_mesh_example_init.h} (79%) diff --git a/examples/bluetooth/esp_ble_mesh/ble_mesh_fast_provision/ble_mesh_fast_prov_client/main/CMakeLists.txt b/examples/bluetooth/esp_ble_mesh/ble_mesh_fast_provision/ble_mesh_fast_prov_client/main/CMakeLists.txt index 7c143143b..2d18e65b7 100644 --- a/examples/bluetooth/esp_ble_mesh/ble_mesh_fast_provision/ble_mesh_fast_prov_client/main/CMakeLists.txt +++ b/examples/bluetooth/esp_ble_mesh/ble_mesh_fast_provision/ble_mesh_fast_prov_client/main/CMakeLists.txt @@ -1,2 +1,2 @@ -idf_component_register(SRCS "ble_mesh_demo_main.c" +idf_component_register(SRCS "main.c" INCLUDE_DIRS ".") diff --git a/examples/bluetooth/esp_ble_mesh/ble_mesh_fast_provision/ble_mesh_fast_prov_client/main/ble_mesh_demo_main.c b/examples/bluetooth/esp_ble_mesh/ble_mesh_fast_provision/ble_mesh_fast_prov_client/main/main.c similarity index 99% rename from examples/bluetooth/esp_ble_mesh/ble_mesh_fast_provision/ble_mesh_fast_prov_client/main/ble_mesh_demo_main.c rename to examples/bluetooth/esp_ble_mesh/ble_mesh_fast_provision/ble_mesh_fast_prov_client/main/main.c index 926f96d98..6c5a1c96b 100644 --- a/examples/bluetooth/esp_ble_mesh/ble_mesh_fast_provision/ble_mesh_fast_prov_client/main/ble_mesh_demo_main.c +++ b/examples/bluetooth/esp_ble_mesh/ble_mesh_fast_provision/ble_mesh_fast_prov_client/main/main.c @@ -29,7 +29,7 @@ #include "esp_fast_prov_common.h" #include "esp_fast_prov_operation.h" #include "esp_fast_prov_client_model.h" -#include "ble_mesh_demo_init.h" +#include "ble_mesh_example_init.h" #define PROV_OWN_ADDR 0x0001 #define APP_KEY_OCTET 0x12 diff --git a/examples/bluetooth/esp_ble_mesh/ble_mesh_fast_provision/ble_mesh_fast_prov_server/main/CMakeLists.txt b/examples/bluetooth/esp_ble_mesh/ble_mesh_fast_provision/ble_mesh_fast_prov_server/main/CMakeLists.txt index cc77bd488..98d0fc613 100644 --- a/examples/bluetooth/esp_ble_mesh/ble_mesh_fast_provision/ble_mesh_fast_prov_server/main/CMakeLists.txt +++ b/examples/bluetooth/esp_ble_mesh/ble_mesh_fast_provision/ble_mesh_fast_prov_server/main/CMakeLists.txt @@ -1,4 +1,4 @@ -set(srcs "ble_mesh_demo_main.c" +set(srcs "main.c" "board.c") idf_component_register(SRCS "${srcs}" diff --git a/examples/bluetooth/esp_ble_mesh/ble_mesh_fast_provision/ble_mesh_fast_prov_server/main/ble_mesh_demo_main.c b/examples/bluetooth/esp_ble_mesh/ble_mesh_fast_provision/ble_mesh_fast_prov_server/main/main.c similarity index 99% rename from examples/bluetooth/esp_ble_mesh/ble_mesh_fast_provision/ble_mesh_fast_prov_server/main/ble_mesh_demo_main.c rename to examples/bluetooth/esp_ble_mesh/ble_mesh_fast_provision/ble_mesh_fast_prov_server/main/main.c index 2bf300309..2d8e4bae3 100644 --- a/examples/bluetooth/esp_ble_mesh/ble_mesh_fast_provision/ble_mesh_fast_prov_server/main/ble_mesh_demo_main.c +++ b/examples/bluetooth/esp_ble_mesh/ble_mesh_fast_provision/ble_mesh_fast_prov_server/main/main.c @@ -30,7 +30,7 @@ #include "esp_fast_prov_operation.h" #include "esp_fast_prov_client_model.h" #include "esp_fast_prov_server_model.h" -#include "ble_mesh_demo_init.h" +#include "ble_mesh_example_init.h" extern struct _led_state led_state[3]; extern struct k_delayed_work send_self_prov_node_addr_timer; diff --git a/examples/bluetooth/esp_ble_mesh/ble_mesh_node/onoff_client/main/CMakeLists.txt b/examples/bluetooth/esp_ble_mesh/ble_mesh_node/onoff_client/main/CMakeLists.txt index cc77bd488..98d0fc613 100644 --- a/examples/bluetooth/esp_ble_mesh/ble_mesh_node/onoff_client/main/CMakeLists.txt +++ b/examples/bluetooth/esp_ble_mesh/ble_mesh_node/onoff_client/main/CMakeLists.txt @@ -1,4 +1,4 @@ -set(srcs "ble_mesh_demo_main.c" +set(srcs "main.c" "board.c") idf_component_register(SRCS "${srcs}" diff --git a/examples/bluetooth/esp_ble_mesh/ble_mesh_node/onoff_client/main/ble_mesh_demo_main.c b/examples/bluetooth/esp_ble_mesh/ble_mesh_node/onoff_client/main/main.c similarity index 99% rename from examples/bluetooth/esp_ble_mesh/ble_mesh_node/onoff_client/main/ble_mesh_demo_main.c rename to examples/bluetooth/esp_ble_mesh/ble_mesh_node/onoff_client/main/main.c index f4e55623f..54f7a8ffa 100644 --- a/examples/bluetooth/esp_ble_mesh/ble_mesh_node/onoff_client/main/ble_mesh_demo_main.c +++ b/examples/bluetooth/esp_ble_mesh/ble_mesh_node/onoff_client/main/main.c @@ -20,7 +20,7 @@ #include "esp_ble_mesh_generic_model_api.h" #include "board.h" -#include "ble_mesh_demo_init.h" +#include "ble_mesh_example_init.h" #define CID_ESP 0x02E5 diff --git a/examples/bluetooth/esp_ble_mesh/ble_mesh_node/onoff_server/main/CMakeLists.txt b/examples/bluetooth/esp_ble_mesh/ble_mesh_node/onoff_server/main/CMakeLists.txt index 120b0f428..13a56c69f 100644 --- a/examples/bluetooth/esp_ble_mesh/ble_mesh_node/onoff_server/main/CMakeLists.txt +++ b/examples/bluetooth/esp_ble_mesh/ble_mesh_node/onoff_server/main/CMakeLists.txt @@ -1,4 +1,4 @@ -set(srcs "ble_mesh_demo_main.c" +set(srcs "main.c" "board.c") idf_component_register(SRCS "${srcs}" diff --git a/examples/bluetooth/esp_ble_mesh/ble_mesh_node/onoff_server/main/ble_mesh_demo_main.c b/examples/bluetooth/esp_ble_mesh/ble_mesh_node/onoff_server/main/main.c similarity index 99% rename from examples/bluetooth/esp_ble_mesh/ble_mesh_node/onoff_server/main/ble_mesh_demo_main.c rename to examples/bluetooth/esp_ble_mesh/ble_mesh_node/onoff_server/main/main.c index 4d185f745..9a8b9fbe6 100644 --- a/examples/bluetooth/esp_ble_mesh/ble_mesh_node/onoff_server/main/ble_mesh_demo_main.c +++ b/examples/bluetooth/esp_ble_mesh/ble_mesh_node/onoff_server/main/main.c @@ -22,7 +22,7 @@ #include "esp_ble_mesh_local_data_operation_api.h" #include "board.h" -#include "ble_mesh_demo_init.h" +#include "ble_mesh_example_init.h" #define CID_ESP 0x02E5 diff --git a/examples/bluetooth/esp_ble_mesh/ble_mesh_provisioner/main/CMakeLists.txt b/examples/bluetooth/esp_ble_mesh/ble_mesh_provisioner/main/CMakeLists.txt index 1f45d2d13..fdc75fac0 100644 --- a/examples/bluetooth/esp_ble_mesh/ble_mesh_provisioner/main/CMakeLists.txt +++ b/examples/bluetooth/esp_ble_mesh/ble_mesh_provisioner/main/CMakeLists.txt @@ -1,4 +1,4 @@ -set(srcs "ble_mesh_demo_main.c") +set(srcs "main.c") idf_component_register(SRCS "${srcs}" INCLUDE_DIRS ".") diff --git a/examples/bluetooth/esp_ble_mesh/ble_mesh_provisioner/main/ble_mesh_demo_main.c b/examples/bluetooth/esp_ble_mesh/ble_mesh_provisioner/main/main.c similarity index 99% rename from examples/bluetooth/esp_ble_mesh/ble_mesh_provisioner/main/ble_mesh_demo_main.c rename to examples/bluetooth/esp_ble_mesh/ble_mesh_provisioner/main/main.c index 4be356ad6..18ff3c449 100644 --- a/examples/bluetooth/esp_ble_mesh/ble_mesh_provisioner/main/ble_mesh_demo_main.c +++ b/examples/bluetooth/esp_ble_mesh/ble_mesh_provisioner/main/main.c @@ -19,7 +19,7 @@ #include "esp_ble_mesh_config_model_api.h" #include "esp_ble_mesh_generic_model_api.h" -#include "ble_mesh_demo_init.h" +#include "ble_mesh_example_init.h" #define LED_OFF 0x0 #define LED_ON 0x1 diff --git a/examples/bluetooth/esp_ble_mesh/ble_mesh_sensor_model/sensor_client/main/CMakeLists.txt b/examples/bluetooth/esp_ble_mesh/ble_mesh_sensor_model/sensor_client/main/CMakeLists.txt index cc77bd488..98d0fc613 100644 --- a/examples/bluetooth/esp_ble_mesh/ble_mesh_sensor_model/sensor_client/main/CMakeLists.txt +++ b/examples/bluetooth/esp_ble_mesh/ble_mesh_sensor_model/sensor_client/main/CMakeLists.txt @@ -1,4 +1,4 @@ -set(srcs "ble_mesh_demo_main.c" +set(srcs "main.c" "board.c") idf_component_register(SRCS "${srcs}" diff --git a/examples/bluetooth/esp_ble_mesh/ble_mesh_sensor_model/sensor_client/main/ble_mesh_demo_main.c b/examples/bluetooth/esp_ble_mesh/ble_mesh_sensor_model/sensor_client/main/main.c similarity index 99% rename from examples/bluetooth/esp_ble_mesh/ble_mesh_sensor_model/sensor_client/main/ble_mesh_demo_main.c rename to examples/bluetooth/esp_ble_mesh/ble_mesh_sensor_model/sensor_client/main/main.c index 8e98fc6cc..31a8a825d 100644 --- a/examples/bluetooth/esp_ble_mesh/ble_mesh_sensor_model/sensor_client/main/ble_mesh_demo_main.c +++ b/examples/bluetooth/esp_ble_mesh/ble_mesh_sensor_model/sensor_client/main/main.c @@ -19,7 +19,7 @@ #include "esp_ble_mesh_config_model_api.h" #include "esp_ble_mesh_sensor_model_api.h" -#include "ble_mesh_demo_init.h" +#include "ble_mesh_example_init.h" #include "board.h" #define CID_ESP 0x02E5 diff --git a/examples/bluetooth/esp_ble_mesh/ble_mesh_sensor_model/sensor_server/main/CMakeLists.txt b/examples/bluetooth/esp_ble_mesh/ble_mesh_sensor_model/sensor_server/main/CMakeLists.txt index cc77bd488..98d0fc613 100644 --- a/examples/bluetooth/esp_ble_mesh/ble_mesh_sensor_model/sensor_server/main/CMakeLists.txt +++ b/examples/bluetooth/esp_ble_mesh/ble_mesh_sensor_model/sensor_server/main/CMakeLists.txt @@ -1,4 +1,4 @@ -set(srcs "ble_mesh_demo_main.c" +set(srcs "main.c" "board.c") idf_component_register(SRCS "${srcs}" diff --git a/examples/bluetooth/esp_ble_mesh/ble_mesh_sensor_model/sensor_server/main/ble_mesh_demo_main.c b/examples/bluetooth/esp_ble_mesh/ble_mesh_sensor_model/sensor_server/main/main.c similarity index 99% rename from examples/bluetooth/esp_ble_mesh/ble_mesh_sensor_model/sensor_server/main/ble_mesh_demo_main.c rename to examples/bluetooth/esp_ble_mesh/ble_mesh_sensor_model/sensor_server/main/main.c index c1cd4258a..7573cdba6 100644 --- a/examples/bluetooth/esp_ble_mesh/ble_mesh_sensor_model/sensor_server/main/ble_mesh_demo_main.c +++ b/examples/bluetooth/esp_ble_mesh/ble_mesh_sensor_model/sensor_server/main/main.c @@ -20,7 +20,7 @@ #include "esp_ble_mesh_config_model_api.h" #include "esp_ble_mesh_sensor_model_api.h" -#include "ble_mesh_demo_init.h" +#include "ble_mesh_example_init.h" #include "board.h" #define CID_ESP 0x02E5 diff --git a/examples/bluetooth/esp_ble_mesh/ble_mesh_vendor_model/vendor_client/main/CMakeLists.txt b/examples/bluetooth/esp_ble_mesh/ble_mesh_vendor_model/vendor_client/main/CMakeLists.txt index cc77bd488..98d0fc613 100644 --- a/examples/bluetooth/esp_ble_mesh/ble_mesh_vendor_model/vendor_client/main/CMakeLists.txt +++ b/examples/bluetooth/esp_ble_mesh/ble_mesh_vendor_model/vendor_client/main/CMakeLists.txt @@ -1,4 +1,4 @@ -set(srcs "ble_mesh_demo_main.c" +set(srcs "main.c" "board.c") idf_component_register(SRCS "${srcs}" diff --git a/examples/bluetooth/esp_ble_mesh/ble_mesh_vendor_model/vendor_client/main/ble_mesh_demo_main.c b/examples/bluetooth/esp_ble_mesh/ble_mesh_vendor_model/vendor_client/main/main.c similarity index 99% rename from examples/bluetooth/esp_ble_mesh/ble_mesh_vendor_model/vendor_client/main/ble_mesh_demo_main.c rename to examples/bluetooth/esp_ble_mesh/ble_mesh_vendor_model/vendor_client/main/main.c index ba897d73d..1c5fd7e3c 100644 --- a/examples/bluetooth/esp_ble_mesh/ble_mesh_vendor_model/vendor_client/main/ble_mesh_demo_main.c +++ b/examples/bluetooth/esp_ble_mesh/ble_mesh_vendor_model/vendor_client/main/main.c @@ -19,7 +19,7 @@ #include "esp_ble_mesh_networking_api.h" #include "esp_ble_mesh_config_model_api.h" -#include "ble_mesh_demo_init.h" +#include "ble_mesh_example_init.h" #include "board.h" #define CID_ESP 0x02E5 diff --git a/examples/bluetooth/esp_ble_mesh/ble_mesh_vendor_model/vendor_server/main/CMakeLists.txt b/examples/bluetooth/esp_ble_mesh/ble_mesh_vendor_model/vendor_server/main/CMakeLists.txt index cc77bd488..98d0fc613 100644 --- a/examples/bluetooth/esp_ble_mesh/ble_mesh_vendor_model/vendor_server/main/CMakeLists.txt +++ b/examples/bluetooth/esp_ble_mesh/ble_mesh_vendor_model/vendor_server/main/CMakeLists.txt @@ -1,4 +1,4 @@ -set(srcs "ble_mesh_demo_main.c" +set(srcs "main.c" "board.c") idf_component_register(SRCS "${srcs}" diff --git a/examples/bluetooth/esp_ble_mesh/ble_mesh_vendor_model/vendor_server/main/ble_mesh_demo_main.c b/examples/bluetooth/esp_ble_mesh/ble_mesh_vendor_model/vendor_server/main/main.c similarity index 99% rename from examples/bluetooth/esp_ble_mesh/ble_mesh_vendor_model/vendor_server/main/ble_mesh_demo_main.c rename to examples/bluetooth/esp_ble_mesh/ble_mesh_vendor_model/vendor_server/main/main.c index f1a2f9614..94d0e36d6 100644 --- a/examples/bluetooth/esp_ble_mesh/ble_mesh_vendor_model/vendor_server/main/ble_mesh_demo_main.c +++ b/examples/bluetooth/esp_ble_mesh/ble_mesh_vendor_model/vendor_server/main/main.c @@ -22,7 +22,7 @@ #include "esp_ble_mesh_local_data_operation_api.h" #include "board.h" -#include "ble_mesh_demo_init.h" +#include "ble_mesh_example_init.h" #define CID_ESP 0x02E5 #define CID_NVAL 0xFFFF diff --git a/examples/bluetooth/esp_ble_mesh/ble_mesh_wifi_coexist/main/CMakeLists.txt b/examples/bluetooth/esp_ble_mesh/ble_mesh_wifi_coexist/main/CMakeLists.txt index cc77bd488..98d0fc613 100644 --- a/examples/bluetooth/esp_ble_mesh/ble_mesh_wifi_coexist/main/CMakeLists.txt +++ b/examples/bluetooth/esp_ble_mesh/ble_mesh_wifi_coexist/main/CMakeLists.txt @@ -1,4 +1,4 @@ -set(srcs "ble_mesh_demo_main.c" +set(srcs "main.c" "board.c") idf_component_register(SRCS "${srcs}" diff --git a/examples/bluetooth/esp_ble_mesh/ble_mesh_wifi_coexist/main/ble_mesh_demo_main.c b/examples/bluetooth/esp_ble_mesh/ble_mesh_wifi_coexist/main/main.c similarity index 99% rename from examples/bluetooth/esp_ble_mesh/ble_mesh_wifi_coexist/main/ble_mesh_demo_main.c rename to examples/bluetooth/esp_ble_mesh/ble_mesh_wifi_coexist/main/main.c index f655b5e23..d8aaf7043 100644 --- a/examples/bluetooth/esp_ble_mesh/ble_mesh_wifi_coexist/main/ble_mesh_demo_main.c +++ b/examples/bluetooth/esp_ble_mesh/ble_mesh_wifi_coexist/main/main.c @@ -42,7 +42,7 @@ #include "esp_fast_prov_operation.h" #include "esp_fast_prov_client_model.h" #include "esp_fast_prov_server_model.h" -#include "ble_mesh_demo_init.h" +#include "ble_mesh_example_init.h" extern struct _led_state led_state[3]; extern struct k_delayed_work send_self_prov_node_addr_timer; diff --git a/examples/bluetooth/esp_ble_mesh/common_components/example_init/CMakeLists.txt b/examples/bluetooth/esp_ble_mesh/common_components/example_init/CMakeLists.txt index d4ca1d299..feb053129 100644 --- a/examples/bluetooth/esp_ble_mesh/common_components/example_init/CMakeLists.txt +++ b/examples/bluetooth/esp_ble_mesh/common_components/example_init/CMakeLists.txt @@ -1,3 +1,3 @@ -idf_component_register(SRCS "ble_mesh_demo_init.c" +idf_component_register(SRCS "ble_mesh_example_init.c" INCLUDE_DIRS "." REQUIRES bt) diff --git a/examples/bluetooth/esp_ble_mesh/common_components/example_init/ble_mesh_demo_init.c b/examples/bluetooth/esp_ble_mesh/common_components/example_init/ble_mesh_example_init.c similarity index 99% rename from examples/bluetooth/esp_ble_mesh/common_components/example_init/ble_mesh_demo_init.c rename to examples/bluetooth/esp_ble_mesh/common_components/example_init/ble_mesh_example_init.c index 4d9d9d314..472bba570 100644 --- a/examples/bluetooth/esp_ble_mesh/common_components/example_init/ble_mesh_demo_init.c +++ b/examples/bluetooth/esp_ble_mesh/common_components/example_init/ble_mesh_example_init.c @@ -26,7 +26,7 @@ #endif #include "esp_ble_mesh_defs.h" -#include "ble_mesh_demo_init.h" +#include "ble_mesh_example_init.h" #ifdef CONFIG_BT_BLUEDROID_ENABLED void ble_mesh_get_dev_uuid(uint8_t *dev_uuid) diff --git a/examples/bluetooth/esp_ble_mesh/common_components/example_init/ble_mesh_demo_init.h b/examples/bluetooth/esp_ble_mesh/common_components/example_init/ble_mesh_example_init.h similarity index 79% rename from examples/bluetooth/esp_ble_mesh/common_components/example_init/ble_mesh_demo_init.h rename to examples/bluetooth/esp_ble_mesh/common_components/example_init/ble_mesh_example_init.h index 8b77b3130..4d15a84ec 100644 --- a/examples/bluetooth/esp_ble_mesh/common_components/example_init/ble_mesh_demo_init.h +++ b/examples/bluetooth/esp_ble_mesh/common_components/example_init/ble_mesh_example_init.h @@ -6,8 +6,8 @@ CONDITIONS OF ANY KIND, either express or implied. */ -#ifndef _BLE_MESH_DEMO_INIT_H_ -#define _BLE_MESH_DEMO_INIT_H_ +#ifndef _BLE_MESH_EXAMPLE_INIT_H_ +#define _BLE_MESH_EXAMPLE_INIT_H_ #include "esp_err.h" @@ -17,4 +17,4 @@ void ble_mesh_get_dev_uuid(uint8_t *dev_uuid); esp_err_t bluetooth_init(void); -#endif /* _BLE_MESH_DEMO_INIT_H_ */ +#endif /* _BLE_MESH_EXAMPLE_INIT_H_ */