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.*
This commit is contained in:
lly
2020-05-13 16:16:07 +08:00
parent 6149b640c9
commit 0e4faac0ee
23 changed files with 25 additions and 25 deletions

View File

@@ -1,4 +1,4 @@
set(COMPONENT_SRCS "ble_mesh_demo_init.c")
set(COMPONENT_SRCS "ble_mesh_example_init.c")
set(COMPONENT_ADD_INCLUDEDIRS ".")

View File

@@ -27,7 +27,7 @@
#endif
#include "esp_ble_mesh_defs.h"
#include "ble_mesh_demo_init.h"
#include "ble_mesh_example_init.h"
#ifdef CONFIG_BLUEDROID_ENABLED

View File

@@ -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_ */