Bluenet
5.7.0
Bluenet, firmware for nRF52 smart home devices
|
#include <mesh/cs_MeshDefines.h>
#include <protocol/cs_AssetFilterPackets.h>
#include <protocol/cs_CmdSource.h>
#include <protocol/cs_RssiAndChannel.h>
#include <protocol/cs_Typedefs.h>
Go to the source code of this file.
Variables | |
static constexpr uint8_t | MAX_MESH_MSG_SIZE = 3 * 12 - 4 - 3 |
Max message size. More... | |
static constexpr uint8_t | MAX_MESH_MSG_NON_SEGMENTED_SIZE = 15 - 4 - 3 |
static constexpr uint8_t | MESH_HEADER_SIZE = 1 |
Size of the header of each mesh model message. More... | |
static constexpr uint8_t | MAX_MESH_MSG_PAYLOAD_SIZE = MAX_MESH_MSG_NON_SEGMENTED_SIZE - MESH_HEADER_SIZE |
enum cs_mesh_model_id_t |
Author: Crownstone Team Copyright: Crownstone (https://crownstone.rocks) Date: 7 May., 2019 License: LGPLv3+, Apache License 2.0, and/or MIT (triple-licensed)
Model IDs
Not sure if these are part of protocol, but it doesn't hurt to have them fixed.
Enumerator | |
---|---|
CS_MESH_MODEL_ID_MULTICAST | |
CS_MESH_MODEL_ID_MULTICAST_ACKED | |
CS_MESH_MODEL_ID_UNICAST | |
CS_MESH_MODEL_ID_NEIGHBOURS |
Message opcodes.
Must be in the range 0xC0 - 0xFF See access_opcode_t
|
staticconstexpr |
|
staticconstexpr |
|
staticconstexpr |
Max message size.
When you send packets that are longer than 15 bytes (including opCode of 1-3B, and MIC of 4 or 8B), they will be sent as segmented packets of 12 byte each. See https://devzone.nordicsemi.com/f/nordic-q-a/32854/max-size-of-data-to-send-from-one-node-to-other-ble-mesh The minimum advertising interval that mesh are using now is 20ms, so each advertisement / segment, takes 20ms.
|
staticconstexpr |
Size of the header of each mesh model message.
1B for the message type.