MeshX 0.3
This repository provides an implementation for Bluetooth Low Energy (BLE) Mesh network nodes. The project allows you to create BLE mesh nodes that can communicate with each other, enabling the development of smart home solutions or other IoT-based applications.
|
Platform-specific initialization and BLE Mesh provisioning for ESP32. This file contains functions to initialize the platform, Bluetooth, and BLE Mesh stack for the MeshX framework. More...
#include "esp_err.h"
#include "esp_log.h"
#include "nvs_flash.h"
#include "interface/meshx_platform.h"
#include "interface/ble_mesh/server/meshx_ble_mesh_prov_srv.h"
Go to the source code of this file.
Functions | |
meshx_err_t | meshx_platform_init (void) |
Initializes the MeshX platform for the ESP32. | |
void | meshx_platform_reset (void) |
Resets the MeshX platform. This function performs a system reset, restarting the platform. | |
Platform-specific initialization and BLE Mesh provisioning for ESP32. This file contains functions to initialize the platform, Bluetooth, and BLE Mesh stack for the MeshX framework.
Copyright (c) 2024 - 2025 MeshX
Definition in file esp_platform.c.
meshx_err_t meshx_platform_init | ( | void | ) |
Initializes the MeshX platform for the ESP32.
Initializes the MeshX platform.
This function sets up the necessary components and configurations required for the MeshX platform to operate on the ESP32. It ensures that the platform is ready for use by other components of the MeshX system.
Definition at line 31 of file esp_platform.c.
void meshx_platform_reset | ( | void | ) |
Resets the MeshX platform. This function performs a system reset, restarting the platform.
Definition at line 54 of file esp_platform.c.