diff --git a/src/mynteye/device/standard2/channels_adapter_s2.cc b/src/mynteye/device/standard2/channels_adapter_s2.cc index 42968f7..a499c18 100644 --- a/src/mynteye/device/standard2/channels_adapter_s2.cc +++ b/src/mynteye/device/standard2/channels_adapter_s2.cc @@ -85,6 +85,9 @@ struct ImuData2 { timestamp_l = (*(data + 8) << 24) | (*(data + 9) << 16) | (*(data + 10) << 8) | *(data + 11); timestamp = (static_cast(timestamp_h) << 32) | timestamp_l; +#if DEBUG_TIME_LIMIT + timestamp += 4200000000; +#endif flag = *(data + 12); temperature = *((float*)(data+ 13)); // NOLINT // LOG(INFO) << "temperature:" << temperature;