Skip to content
This repository was archived by the owner on Nov 23, 2025. It is now read-only.

Commit ca63bdd

Browse files
committed
HF v0.2.8
1 parent e975811 commit ca63bdd

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

sdk/CMakeVersion

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
set(SDK_VERSION_MAJOR 0 )
22
set(SDK_VERSION_MINOR 2 )
3-
set(SDK_VERSION_COMMIT_NUMBER 7 )
3+
set(SDK_VERSION_COMMIT_NUMBER 8 )
44
set(SDK_VERSION_COMMIT_ID 0 )

sdk/include/rs/core/motion_sample.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ namespace rs
2323

2424
/**
2525
* @param timestamp
26-
* Timestamp of the IMU sample in micro-second unit.
26+
* Timestamp of the IMU sample in milliseconds units.
2727
* If the value is zero, the sample should be considered as invalid.
2828
**/
29-
uint64_t timestamp;
29+
double timestamp;
3030

3131
/**
3232
* @param frame_number

sdk/include/rs_sdk_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#define SDK_VER_MAJOR 0
22
#define SDK_VER_MINOR 2
3-
#define SDK_VER_COMMIT_NUMBER 7
3+
#define SDK_VER_COMMIT_NUMBER 8
44
#define SDK_VER_COMMIT_ID 0
5-
#define SDK_VERSION_STRING static char version_id[] = "VERSION: 0.2.7.0";
5+
#define SDK_VERSION_STRING static char version_id[] = "VERSION: 0.2.8.0";

tests/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -pie")
3939
#Add Gtest project
4040
ExternalProject_Add(
4141
gtest_lib
42-
URL http://googletest.googlecode.com/files/gtest-1.7.0.zip
43-
URL_HASH SHA1=f85f6d2481e2c6c4a18539e391aa4ea8ab0394af
42+
URL https://github.com/google/googletest/archive/release-1.7.0.zip
43+
URL_HASH SHA1=f89bc9f55477df2fde082481e2d709bfafdb057b
4444
CMAKE_ARGS -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}
4545
-DCMAKE_SYSTEM_NAME=${CMAKE_SYSTEM_NAME}
4646
-DCMAKE_CXX_FLAGS=${CMAKE_CXX_FLAGS}

0 commit comments

Comments
 (0)