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.
Loading...
Searching...
No Matches
meshx_platform.h
Go to the documentation of this file.
1
8
9#ifndef __MESHX_PLATFORM_H__
10#define __MESHX_PLATFORM_H__
11
12#include "meshx_err.h"
15
25
30
31__attribute__((noreturn)) void meshx_platform_reset(void);
32
33#endif /* __MESHX_PLATFORM_H__ */
void meshx_platform_reset(void)
Resets the MeshX platform. This function performs a system reset, restarting the platform.
Common definitions for BLE Mesh models and opcodes in the MeshX framework.
MeshX Error Codes.
meshx_err_t
MeshX Error Codes.
Definition meshx_err.h:39
__attribute__((noreturn)) void meshx_platform_reset(void)
Resets the MeshX platform. This function performs a system reset, restarting the platform.
meshx_err_t meshx_platform_init(void)
Initializes the MeshX platform.
Header file for MeshX BLE Mesh platform abstraction layer. This file provides type definitions and ma...