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.
|
Structure for Tx Control module requests. More...
#include <meshx_txcm.h>
Data Fields | |
uint16_t | dest_addr |
uint16_t | msg_param_len |
meshx_ptr_t | msg_param |
meshx_txcm_sig_t | request_type |
meshx_txcm_fn_model_send_t | send_fn |
Structure for Tx Control module requests.
This structure holds the details of a transmission request, including the type of signal, the send function callback, and parameters for the message to be transmitted.
Definition at line 102 of file meshx_txcm.h.
uint16_t meshx_txcm_request::dest_addr |
Destination address of the message
Definition at line 104 of file meshx_txcm.h.
meshx_ptr_t meshx_txcm_request::msg_param |
Pointer to model specific parameter structure
Definition at line 106 of file meshx_txcm.h.
uint16_t meshx_txcm_request::msg_param_len |
Length of the msg_param
Definition at line 105 of file meshx_txcm.h.
meshx_txcm_sig_t meshx_txcm_request::request_type |
Type of transmission command request
Definition at line 107 of file meshx_txcm.h.
meshx_txcm_fn_model_send_t meshx_txcm_request::send_fn |
Function pointer to the model-specific send function
Definition at line 108 of file meshx_txcm.h.