mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 10:47:19 +02:00
Merge branch 'mesh/support_for_chain_topology_backport_v4.3' into 'release/v4.3'
mesh: support for chain topology (backport v4.3) See merge request espressif/esp-idf!12805
This commit is contained in:
@ -97,6 +97,16 @@ typedef struct {
|
|||||||
uint8_t toDS; /**< toDS state */
|
uint8_t toDS; /**< toDS state */
|
||||||
} __attribute__((packed)) mesh_assoc_t;
|
} __attribute__((packed)) mesh_assoc_t;
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
uint16_t layer_cap;
|
||||||
|
uint16_t layer;
|
||||||
|
} mesh_chain_layer_t;
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
mesh_assoc_t tree;
|
||||||
|
mesh_chain_layer_t chain;
|
||||||
|
} __attribute__((packed)) mesh_chain_assoc_t;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Mesh PS duties
|
* @brief Mesh PS duties
|
||||||
*/
|
*/
|
||||||
|
Reference in New Issue
Block a user