From 0800eee18e7a7094cdd3c4e7c6cb53dc51e231ec Mon Sep 17 00:00:00 2001 From: kevin Date: Mon, 14 Feb 2022 22:21:39 +0800 Subject: [PATCH] fix:modify timstamp to long type Signed-off-by: kevin --- sensor/v1_0/SensorTypes.idl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sensor/v1_0/SensorTypes.idl b/sensor/v1_0/SensorTypes.idl index c3fd388a..5b3862db 100644 --- a/sensor/v1_0/SensorTypes.idl +++ b/sensor/v1_0/SensorTypes.idl @@ -70,7 +70,7 @@ struct HdfSensorInformation { struct HdfSensorEvents { int sensorId; /**< Sensor ID */ int version; /**< Sensor algorithm version */ - int timestamp; /**< Time when sensor data was generated */ + long timestamp; /**< Time when sensor data was generated */ unsigned int option; /**< Sensor data options, including the measurement range and accuracy */ int mode; /**< Sensor data reporting mode */ unsigned char[] data; /**< Sensor data vector */ -- Gitee