/* * SPDX-FileCopyrightText: 2017-2021 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... *//** @file * @brief Bluetooth Mesh Generic Client Model APIs. *//* ... */#ifndef_GENERIC_CLIENT_H_#define_GENERIC_CLIENT_H_#include"mesh/client_common.h"#ifdef__cplusplusextern"C"{#endif/* Generic client model common structure */typedefbt_mesh_client_user_data_tbt_mesh_generic_client_t;typedefbt_mesh_client_internal_data_tgeneric_internal_data_t;/* Generic Client Model Callback */externconststructbt_mesh_model_cbbt_mesh_generic_client_cb;/* Generic OnOff Client Model Context */externconststructbt_mesh_model_opbt_mesh_gen_onoff_cli_op[];/** @def BLE_MESH_MODEL_GEN_ONOFF_CLI * * Define a new generic onoff client model. Note that this API * needs to be repeated for each element which the application * wants to have a generic onoff client model on. * @param cli_pub Pointer to a unique struct bt_mesh_model_pub. * @param cli_data Pointer to a unique struct bt_mesh_gen_onoff_cli. * * @return New generic onoff client model instance. *//* ... */#defineBLE_MESH_MODEL_GEN_ONOFF_CLI(cli_pub,cli_data)\BLE_MESH_MODEL_CB(BLE_MESH_MODEL_ID_GEN_ONOFF_CLI,\bt_mesh_gen_onoff_cli_op,cli_pub,cli_data,&bt_mesh_generic_client_cb)...typedefbt_mesh_client_user_data_tbt_mesh_gen_onoff_client_t;structbt_mesh_gen_onoff_status{boolop_en;/* Indicate whether optional parameters included */uint8_tpresent_onoff;/* Present value of Generic OnOff state */uint8_ttarget_onoff;/* Target value of Generic OnOff state (optional) */uint8_tremain_time;/* Time to complete state transition (C.1) */}{ ... };structbt_mesh_gen_onoff_set{boolop_en;/* Indicate whether optional parameters included */uint8_tonoff;/* Target value of Generic OnOff state */uint8_ttid;/* Transaction Identifier */uint8_ttrans_time;/* Time to complete state transition (optional) */uint8_tdelay;/* Indicate message execution delay (C.1) */}{ ... };/* Generic Level Client Model Context */externconststructbt_mesh_model_opbt_mesh_gen_level_cli_op[];/** @def BLE_MESH_MODEL_GEN_LEVEL_CLI * * Define a new generic level client model. Note that this API * needs to be repeated for each element which the application * wants to have a generic level client model on. * @param cli_pub Pointer to a unique struct bt_mesh_model_pub. * @param cli_data Pointer to a unique struct bt_mesh_gen_level_cli. * * @return New generic level client model instance. *//* ... */#defineBLE_MESH_MODEL_GEN_LEVEL_CLI(cli_pub,cli_data)\BLE_MESH_MODEL_CB(BLE_MESH_MODEL_ID_GEN_LEVEL_CLI,\bt_mesh_gen_level_cli_op,cli_pub,cli_data,&bt_mesh_generic_client_cb)...typedefbt_mesh_client_user_data_tbt_mesh_gen_level_client_t;structbt_mesh_gen_level_status{boolop_en;/* Indicate whether optional parameters included */int16_tpresent_level;/* Present value of Generic Level state */int16_ttarget_level;/* Target value of the Generic Level state (optional) */uint8_tremain_time;/* Time to complete state transition (C.1) */}{ ... };structbt_mesh_gen_level_set{boolop_en;/* Indicate whether optional parameters included */int16_tlevel;/* Target value of Generic Level state */uint8_ttid;/* Transaction Identifier */uint8_ttrans_time;/* Time to complete state transition (optional) */uint8_tdelay;/* Indicate message execution delay (C.1) */}{ ... };structbt_mesh_gen_delta_set{boolop_en;/* Indicate whether optional parameters included */int32_tdelta_level;/* Delta change of Generic Level state */uint8_ttid;/* Transaction Identifier */uint8_ttrans_time;/* Time to complete state transition (optional) */uint8_tdelay;/* Indicate message execution delay (C.1) */}{ ... };structbt_mesh_gen_move_set{boolop_en;/* Indicate whether optional parameters included */int16_tdelta_level;/* Delta Level step to calculate Move speed for Generic Level state */uint8_ttid;/* Transaction Identifier */uint8_ttrans_time;/* Time to complete state transition (optional) */uint8_tdelay;/* Indicate message execution delay (C.1) */}{ ... };/* Generic Default Transition Time Client Model Context */externconststructbt_mesh_model_opbt_mesh_gen_def_trans_time_cli_op[];/** @def BLE_MESH_MODEL_GEN_DEF_TRANS_TIME_CLI * * Define a new generic default transition time client model. Note * that this API needs to be repeated for each element that the * application wants to have a generic default transition client * model on. * @param cli_pub Pointer to a unique struct bt_mesh_model_pub. * @param cli_data Pointer to a unique struct bt_mesh_gen_def_trans_time_cli. * * @return New generic default transition time client model instance. *//* ... */#defineBLE_MESH_MODEL_GEN_DEF_TRANS_TIME_CLI(cli_pub,cli_data)\BLE_MESH_MODEL_CB(BLE_MESH_MODEL_ID_GEN_DEF_TRANS_TIME_CLI,\bt_mesh_gen_def_trans_time_cli_op,cli_pub,cli_data,&bt_mesh_generic_client_cb)...typedefbt_mesh_client_user_data_tbt_mesh_gen_def_trans_time_client_t;structbt_mesh_gen_def_trans_time_set{uint8_ttrans_time;/* The value of the Generic Default Transition Time state */}{ ... };structbt_mesh_gen_def_trans_time_status{uint8_ttrans_time;/* The value of the Generic Default Transition Time state */}{ ... };/* Generic Power OnOff Client Model Context */externconststructbt_mesh_model_opbt_mesh_gen_power_onoff_cli_op[];/** @def BLE_MESH_MODEL_GEN_POWER_ONOFF_CLI * * Define a new generic power onoff client model. Note that this API * needs to be repeated for each element which the application wants * to have a generic power onoff client model on. * @param cli_pub Pointer to a unique struct bt_mesh_model_pub. * @param cli_data Pointer to a unique struct bt_mesh_gen_power_onoff_cli. * * @return New generic power onoff client model instance. *//* ... */#defineBLE_MESH_MODEL_GEN_POWER_ONOFF_CLI(cli_pub,cli_data)\BLE_MESH_MODEL_CB(BLE_MESH_MODEL_ID_GEN_POWER_ONOFF_CLI,\bt_mesh_gen_power_onoff_cli_op,cli_pub,cli_data,&bt_mesh_generic_client_cb)...typedefbt_mesh_client_user_data_tbt_mesh_gen_power_onoff_client_t;structbt_mesh_gen_onpowerup_set{uint8_tonpowerup;/* The value of the Generic OnPowerUp state */}{ ... };structbt_mesh_gen_onpowerup_status{uint8_tonpowerup;/* The value of the Generic OnPowerUp state */}{ ... };/* Generic Power Level Client Model Context */externconststructbt_mesh_model_opbt_mesh_gen_power_level_cli_op[];/** @def BLE_MESH_MODEL_GEN_POWER_LEVEL_CLI * * Define a new generic power level client model. Note that this API * needs to be repeated for each element which the application wants * to have a generic power level client model on. * @param cli_pub Pointer to a unique struct bt_mesh_model_pub. * @param cli_data Pointer to a unique struct bt_mesh_gen_power_level_cli. * * @return New generic power level client model instance. *//* ... */#defineBLE_MESH_MODEL_GEN_POWER_LEVEL_CLI(cli_pub,cli_data)\BLE_MESH_MODEL_CB(BLE_MESH_MODEL_ID_GEN_POWER_LEVEL_CLI,\bt_mesh_gen_power_level_cli_op,cli_pub,cli_data,&bt_mesh_generic_client_cb)...typedefbt_mesh_client_user_data_tbt_mesh_gen_power_level_client_t;structbt_mesh_gen_power_level_status{boolop_en;/* Indicate whether optional parameters included */uint16_tpresent_power;/* Present value of Generic Power Actual state */uint16_ttarget_power;/* Target value of Generic Power Actual state (optional) */uint8_tremain_time;/* Time to complete state transition (C.1) */}{ ... };structbt_mesh_gen_power_last_status{uint16_tpower;/* The value of the Generic Power Last state */}{ ... };structbt_mesh_gen_power_default_status{uint16_tpower;/* The value of the Generic Default Last state */}{ ... };structbt_mesh_gen_power_range_status{uint8_tstatus_code;/* Status Code for the requesting message */uint16_trange_min;/* Value of Range Min field of Generic Power Range state */uint16_trange_max;/* Value of Range Max field of Generic Power Range state */}{ ... };structbt_mesh_gen_power_level_set{boolop_en;/* Indicate whether optional parameters included */uint16_tpower;/* Target value of Generic Power Actual state */uint8_ttid;/* Transaction Identifier */uint8_ttrans_time;/* Time to complete state transition (optional) */uint8_tdelay;/* Indicate message execution delay (C.1) */}{ ... };structbt_mesh_gen_power_default_set{uint16_tpower;/* The value of the Generic Power Default state */}{ ... };structbt_mesh_gen_power_range_set{uint16_trange_min;/* Value of Range Min field of Generic Power Range state */uint16_trange_max;/* Value of Range Max field of Generic Power Range state */}{ ... };/* Generic Battery Client Model Context */externconststructbt_mesh_model_opbt_mesh_gen_battery_cli_op[];/** @def BLE_MESH_MODEL_GEN_BATTERY_CLI * * Define a new generic battery client model. Note that this API * needs to be repeated for each element which the application * wants to have a generic battery client model on. * @param cli_pub Pointer to a unique struct bt_mesh_model_pub. * @param cli_data Pointer to a unique struct bt_mesh_gen_battery_cli. * * @return New generic battery client model instance. *//* ... */#defineBLE_MESH_MODEL_GEN_BATTERY_CLI(cli_pub,cli_data)\BLE_MESH_MODEL_CB(BLE_MESH_MODEL_ID_GEN_BATTERY_CLI,\bt_mesh_gen_battery_cli_op,cli_pub,cli_data,&bt_mesh_generic_client_cb)...typedefbt_mesh_client_user_data_tbt_mesh_gen_battery_client_t;structbt_mesh_gen_battery_status{uint32_tbattery_level:8;/* Value of Generic Battery Level state */uint32_ttime_to_discharge:24;/* Value of Generic Battery Time to Discharge state */uint32_ttime_to_charge:24;/* Value of Generic Battery Time to Charge state */uint32_tflags:8;/* Value of Generic Battery Flags state */}{ ... };/* Generic Location Client Model Context */externconststructbt_mesh_model_opbt_mesh_gen_location_cli_op[];/** @def BLE_MESH_MODEL_GEN_LOCATION_CLI * * Define a new generic location client model. Note that this API * needs to be repeated for each element which the application * wants to have a generic location client model on. * @param cli_pub Pointer to a unique struct bt_mesh_model_pub. * @param cli_data Pointer to a unique struct bt_mesh_gen_location_cli. * * @return New generic location client model instance. *//* ... */#defineBLE_MESH_MODEL_GEN_LOCATION_CLI(cli_pub,cli_data)\BLE_MESH_MODEL_CB(BLE_MESH_MODEL_ID_GEN_LOCATION_CLI,\bt_mesh_gen_location_cli_op,cli_pub,cli_data,&bt_mesh_generic_client_cb)...typedefbt_mesh_client_user_data_tbt_mesh_gen_location_client_t;structbt_mesh_gen_loc_global_status{int32_tglobal_latitude;/* Global Coordinates (Latitude) */int32_tglobal_longitude;/* Global Coordinates (Longitude) */int16_tglobal_altitude;/* Global Altitude */}{ ... };structbt_mesh_gen_loc_local_status{int16_tlocal_north;/* Local Coordinates (North) */int16_tlocal_east;/* Local Coordinates (East) */int16_tlocal_altitude;/* Local Altitude */uint8_tfloor_number;/* Floor Number */uint16_tuncertainty;/* Uncertainty */}{ ... };structbt_mesh_gen_loc_global_set{int32_tglobal_latitude;/* Global Coordinates (Latitude) */int32_tglobal_longitude;/* Global Coordinates (Longitude) */int16_tglobal_altitude;/* Global Altitude */}{ ... };structbt_mesh_gen_loc_local_set{int16_tlocal_north;/* Local Coordinates (North) */int16_tlocal_east;/* Local Coordinates (East) */int16_tlocal_altitude;/* Local Altitude */uint8_tfloor_number;/* Floor Number */uint16_tuncertainty;/* Uncertainty */}{ ... };/* Generic Property Client Model Context */externconststructbt_mesh_model_opbt_mesh_gen_property_cli_op[];/** @def BLE_MESH_MODEL_GEN_LOCATION_CLI * * Define a new generic location client model. Note that this API * needs to be repeated for each element which the application * wants to have a generic location client model on. * @param cli_pub Pointer to a unique struct bt_mesh_model_pub. * @param cli_data Pointer to a unique struct bt_mesh_gen_location_cli. * * @return New generic location client model instance. *//* ... */#defineBLE_MESH_MODEL_GEN_PROPERTY_CLI(cli_pub,cli_data)\BLE_MESH_MODEL_CB(BLE_MESH_MODEL_ID_GEN_PROP_CLI,\bt_mesh_gen_property_cli_op,cli_pub,cli_data,&bt_mesh_generic_client_cb)...typedefbt_mesh_client_user_data_tbt_mesh_gen_property_client_t;structbt_mesh_gen_user_properties_status{structnet_buf_simple*user_property_ids;/* Buffer contains a sequence of N User Property IDs */}{ ... };structbt_mesh_gen_user_property_status{boolop_en;/* Indicate whether optional parameters included */uint16_tuser_property_id;/* Property ID identifying a Generic User Property */uint8_tuser_access;/* Enumeration indicating user access (optional) */structnet_buf_simple*user_property_value;/* Raw value for the User Property (C.1) */}{ ... };structbt_mesh_gen_admin_properties_status{structnet_buf_simple*admin_property_ids;/* Buffer contains a sequence of N Admin Property IDs */}{ ... };structbt_mesh_gen_admin_property_status{boolop_en;/* Indicate whether optional parameters included */uint16_tadmin_property_id;/* Property ID identifying a Generic Admin Property */uint8_tadmin_user_access;/* Enumeration indicating user access (optional) */structnet_buf_simple*admin_property_value;/* Raw value for the Admin Property (C.1) */}{ ... };structbt_mesh_gen_manu_properties_status{structnet_buf_simple*manu_property_ids;/* Buffer contains a sequence of N Manufacturer Property IDs */}{ ... };structbt_mesh_gen_manu_property_status{boolop_en;/* Indicate whether optional parameters included */uint16_tmanu_property_id;/* Property ID identifying a Generic Manufacturer Property */uint8_tmanu_user_access;/* Enumeration indicating user access (optional) */structnet_buf_simple*manu_property_value;/* Raw value for the Manufacturer Property (C.1) */}{ ... };structbt_mesh_gen_client_properties_status{structnet_buf_simple*client_property_ids;/* Buffer contains a sequence of N Client Property IDs */}{ ... };structbt_mesh_gen_user_property_get{uint16_tuser_property_id;/* Property ID identifying a Generic User Property */}{ ... };structbt_mesh_gen_user_property_set{uint16_tuser_property_id;/* Property ID identifying a Generic User Property */structnet_buf_simple*user_property_value;/* Raw value for the User Property */}{ ... };structbt_mesh_gen_admin_property_get{uint16_tadmin_property_id;/* Property ID identifying a Generic Admin Property */}{ ... };structbt_mesh_gen_admin_property_set{uint16_tadmin_property_id;/* Property ID identifying a Generic Admin Property */uint8_tadmin_user_access;/* Enumeration indicating user access */structnet_buf_simple*admin_property_value;/* Raw value for the Admin Property */}{ ... };structbt_mesh_gen_manu_property_get{uint16_tmanu_property_id;/* Property ID identifying a Generic Manufacturer Property */}{ ... };structbt_mesh_gen_manu_property_set{uint16_tmanu_property_id;/* Property ID identifying a Generic Manufacturer Property */uint8_tmanu_user_access;/* Enumeration indicating user access */}{ ... };structbt_mesh_gen_client_properties_get{uint16_tclient_property_id;/* A starting Client Property ID present within an element */}{ ... };/** * @brief This function is called to get generic states. * * @param[in] common: Message common information structure * @param[in] get: Pointer of generic get message value * * @return Zero-success, other-fail *//* ... */intbt_mesh_generic_client_get_state(bt_mesh_client_common_param_t*common,void*get);/** * @brief This function is called to set generic states. * * @param[in] common: Message common information structure * @param[in] set: Pointer of generic set message value * * @return Zero-success, other-fail *//* ... */intbt_mesh_generic_client_set_state(bt_mesh_client_common_param_t*common,void*set);#ifdef__cplusplus}{...}#endif/* ... */#endif/* _GENERIC_CLIENT_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.