diff --git a/interfaces/inner_api/sensor_agent_type.h b/interfaces/inner_api/sensor_agent_type.h index 22ceecb4469153ad4c0fcd08d3e1b70cfb6b3159..cebae188e35e8ec220445d4eae1340de98d94bab 100644 --- a/interfaces/inner_api/sensor_agent_type.h +++ b/interfaces/inner_api/sensor_agent_type.h @@ -102,6 +102,7 @@ typedef enum SensorTypeId { SENSOR_TYPE_ID_WEAR_DETECTION = 280, /**< Wear detection sensor */ SENSOR_TYPE_ID_ACCELEROMETER_UNCALIBRATED = 281, /**< Uncalibrated acceleration sensor */ SENSOR_TYPE_ID_RPC = 282, /**< Radio power control sensor */ + SENSOR_TYPE_ID_FUSION_PRESSURE = 283, /**< Fusion pressure sensor */ SENSOR_TYPE_ID_MAX = 30, /**< Maximum number of sensor type IDs*/ } SensorTypeId; @@ -513,6 +514,10 @@ typedef struct SensorActiveInfo { int64_t maxReportDelayNs = -1; /**< Maximum Report Delay, in ns */ } SensorActiveInfo; +typedef struct FusionPressureData { + int32_t pressure = 0; +} FusionPressureData; + typedef void (*SensorActiveInfoCB)(SensorActiveInfo &sensorActiveInfo); #ifdef __cplusplus