Zephyr API Documentation  3.5.0
A Scalable Open Source RTOS
3.5.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
health_srv.h
Go to the documentation of this file.
1
5/*
6 * Copyright (c) 2017 Intel Corporation
7 *
8 * SPDX-License-Identifier: Apache-2.0
9 */
10#ifndef ZEPHYR_INCLUDE_BLUETOOTH_MESH_HEALTH_SRV_H_
11#define ZEPHYR_INCLUDE_BLUETOOTH_MESH_HEALTH_SRV_H_
12
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
56 int (*fault_get_cur)(struct bt_mesh_model *model, uint8_t *test_id,
57 uint16_t *company_id, uint8_t *faults,
58 uint8_t *fault_count);
59
82 int (*fault_get_reg)(struct bt_mesh_model *model, uint16_t company_id,
83 uint8_t *test_id, uint8_t *faults,
84 uint8_t *fault_count);
85
94 int (*fault_clear)(struct bt_mesh_model *model, uint16_t company_id);
95
111 int (*fault_test)(struct bt_mesh_model *model, uint8_t test_id,
112 uint16_t company_id);
113
128 void (*attn_on)(struct bt_mesh_model *model);
129
137 void (*attn_off)(struct bt_mesh_model *model);
138};
139
146#define BT_MESH_HEALTH_PUB_DEFINE(_name, _max_faults) \
147 BT_MESH_MODEL_PUB_DEFINE(_name, NULL, (1 + 3 + (_max_faults)))
148
153
156
159
160#ifdef CONFIG_BT_MESH_LARGE_COMP_DATA_SRV
162 struct bt_mesh_models_metadata_entry *metadata;
163#endif
164};
165
177#ifdef CONFIG_BT_MESH_LARGE_COMP_DATA_SRV
178#define BT_MESH_MODEL_HEALTH_SRV(srv, pub) \
179 BT_MESH_MODEL_METADATA_CB(BT_MESH_MODEL_ID_HEALTH_SRV, bt_mesh_health_srv_op, \
180 pub, srv, &bt_mesh_health_srv_cb, &(srv)->metadata)
181#else
182#define BT_MESH_MODEL_HEALTH_SRV(srv, pub) \
183 BT_MESH_MODEL_CB(BT_MESH_MODEL_ID_HEALTH_SRV, bt_mesh_health_srv_op, \
184 pub, srv, &bt_mesh_health_srv_cb)
185#endif
186
191#define BT_MESH_HEALTH_TEST_INFO_METADATA_ID 0x0001
192
193#define BT_MESH_HEALTH_TEST_INFO_METADATA(tests) \
194 { \
195 .len = ARRAY_SIZE(tests), \
196 .id = BT_MESH_HEALTH_TEST_INFO_METADATA_ID, \
197 .data = tests, \
198 }
199
209#define BT_MESH_HEALTH_TEST_INFO(cid, tests...) \
210 BT_BYTES_LIST_LE16(cid), sizeof((uint8_t[]){ tests }), tests
211
223
225extern const struct bt_mesh_model_op bt_mesh_health_srv_op[];
226extern const struct bt_mesh_model_cb bt_mesh_health_srv_cb;
229#ifdef __cplusplus
230}
231#endif
232
237#endif /* ZEPHYR_INCLUDE_BLUETOOTH_MESH_HEALTH_SRV_H_ */
Bluetooth byteorder API.
int bt_mesh_health_srv_fault_update(struct bt_mesh_elem *elem)
Notify the stack that the fault array state of the given element has changed.
Bluetooth mesh Profile APIs.
__UINT8_TYPE__ uint8_t
Definition: stdint.h:88
__UINT16_TYPE__ uint16_t
Definition: stdint.h:89
Abstraction that describes a Mesh Element.
Definition: access.h:150
Callback function for the Health Server model.
Definition: health_srv.h:28
int(* fault_clear)(struct bt_mesh_model *model, uint16_t company_id)
Clear all registered faults associated with the given Company ID.
Definition: health_srv.h:94
void(* attn_off)(struct bt_mesh_model *model)
Stop the attention state.
Definition: health_srv.h:137
int(* fault_test)(struct bt_mesh_model *model, uint8_t test_id, uint16_t company_id)
Run a self-test.
Definition: health_srv.h:111
int(* fault_get_cur)(struct bt_mesh_model *model, uint8_t *test_id, uint16_t *company_id, uint8_t *faults, uint8_t *fault_count)
Callback for fetching current faults.
Definition: health_srv.h:56
void(* attn_on)(struct bt_mesh_model *model)
Start calling attention to the device.
Definition: health_srv.h:128
int(* fault_get_reg)(struct bt_mesh_model *model, uint16_t company_id, uint8_t *test_id, uint8_t *faults, uint8_t *fault_count)
Callback for fetching all registered faults.
Definition: health_srv.h:82
Mesh Health Server Model Context.
Definition: health_srv.h:150
struct bt_mesh_model * model
Composition data model entry pointer.
Definition: health_srv.h:152
const struct bt_mesh_health_srv_cb * cb
Optional callback struct.
Definition: health_srv.h:155
struct k_work_delayable attn_timer
Attention Timer state.
Definition: health_srv.h:158
Model callback functions.
Definition: access.h:794
Model opcode handler.
Definition: access.h:352
Abstraction that describes a Mesh Model instance.
Definition: access.h:872
Models Metadata Entry struct.
Definition: access.h:763
A structure used to submit work after a delay.
Definition: kernel.h:3893