无法设置系统时间
Unable to set system time
我正在尝试通过设置系统时间来同步多个传感器,如 Movesense 开发人员研讨会 (https://youtu.be/GGMXJ8FWMSw?t=4335) 中所述。由于某种原因,以下设置系统时间的方法不起作用并且 onPutResult 给我错误。
//Example value
int64_t utcTimestamp = 1619510994204;
asyncPut(WB_RES::LOCAL::TIME(), AsyncRequestOptions::Empty, utcTimestamp);
还有其他方法吗?
原来我误读了文档,时间值必须以微秒而不是毫秒传递。最小时间值为 1483228800000000,如此处回答 ->
我正在尝试通过设置系统时间来同步多个传感器,如 Movesense 开发人员研讨会 (https://youtu.be/GGMXJ8FWMSw?t=4335) 中所述。由于某种原因,以下设置系统时间的方法不起作用并且 onPutResult 给我错误。
//Example value
int64_t utcTimestamp = 1619510994204;
asyncPut(WB_RES::LOCAL::TIME(), AsyncRequestOptions::Empty, utcTimestamp);
还有其他方法吗?
原来我误读了文档,时间值必须以微秒而不是毫秒传递。最小时间值为 1483228800000000,如此处回答 ->