/* * SPDX-FileCopyrightText: 2017-2021 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */#ifndef_CLIENT_COMMON_H_#define_CLIENT_COMMON_H_#include"mesh/access.h"#ifdef__cplusplusextern"C"{#endif/** Client model opcode pair table */typedefstruct{uint32_tcli_op;/* Client message opcode */uint32_tstatus_op;/* Corresponding status message opcode */}{ ... }bt_mesh_client_op_pair_t;/** Client model user data context */typedefstruct{/** Pointer to the client model */structbt_mesh_model*model;/** Size of the opcode pair table */uint32_top_pair_size;/** Pointer to the opcode pair table */constbt_mesh_client_op_pair_t*op_pair;/** * @brief This function is a callback function used to push the received unsolicited * messages to the application layer. * * @param[in] opcode: Opcode of received status message * @param[in] model: Model associated with the status message * @param[in] ctx: Context information of the status message * @param[in] buf: Buffer contains the status message value * * @return None *//* ... */void(*publish_status)(uint32_topcode,structbt_mesh_model*model,structbt_mesh_msg_ctx*ctx,structnet_buf_simple*buf);/** Pointer to the internal data of client model */void*internal_data;/** Pointer to the vendor data of client model */void*vendor_data;/** Role of the device to which the client model belongs */uint8_tmsg_role__attribute__((deprecated));}{ ... }bt_mesh_client_user_data_t;/** Client model internal data context */typedefstruct{sys_slist_tqueue;}{ ... }bt_mesh_client_internal_data_t;/** Client model sending message related context */typedefstruct{sys_snode_tclient_node;structbt_mesh_model*model;/* Pointer to the client model */structbt_mesh_msg_ctxctx;/* Message context */uint32_topcode;/* Message opcode */uint32_top_pending;/* Expected status message opcode */int32_ttimeout;/* Calculated message timeout value */structk_delayed_worktimer;/* Time used to get response. Only for internal use. */}{ ... }bt_mesh_client_node_t;/** Client model sending message parameters */typedefstruct{uint32_topcode;/* Message opcode */structbt_mesh_model*model;/* Pointer to the client model */structbt_mesh_msg_ctxctx;/* Message context */int32_tmsg_timeout;/* Time to get corresponding response */uint8_tmsg_role__attribute__((deprecated));/* Role (Node/Provisioner) of the device */conststructbt_mesh_send_cb*cb;/* User defined callback function */void*cb_data;/* User defined callback value */}{ ... }bt_mesh_client_common_param_t;voidbt_mesh_client_model_lock(void);voidbt_mesh_client_model_unlock(void);intbt_mesh_client_init(structbt_mesh_model*model);intbt_mesh_client_deinit(structbt_mesh_model*model);/** * @brief Check if the msg received by client model is a publish msg or not * * @param model Mesh (client) Model that the message belongs to. * @param ctx Message context, includes keys, TTL, etc. * @param buf The message buffer * @param need_pub Indicate if the msg sent to app layer as a publish msg * @return 0 on success, or (negative) error code on failure. *//* ... */bt_mesh_client_node_t*bt_mesh_is_client_recv_publish_msg(structbt_mesh_model*model,structbt_mesh_msg_ctx*ctx,structnet_buf_simple*buf,boolneed_pub);intbt_mesh_client_send_msg(bt_mesh_client_common_param_t*param,structnet_buf_simple*msg,boolneed_ack,k_work_handler_ttimer_handler);intbt_mesh_client_free_node(bt_mesh_client_node_t*node);intbt_mesh_client_clear_list(void*data);#ifdef__cplusplus}{...}#endif/* ... */#endif/* _CLIENT_COMMON_H_ */
Details
Show: from
Types: Columns:
All items filtered out
All items filtered out
This file uses the notable symbols shown below. Click anywhere in the file to view more details.