我正在尝试通过设置系统时间来同步多个传感器,如Movesense开发人员研讨会(https://youtu.be/GGMXJ8FWMSw?t=4335)中所述。由于某些原因,以下设置系统时间的方法不起作用,onPutResult给出错误。
//Example value
int64_t utcTimestamp = 1619510994204;
asyncPut(WB_RES::LOCAL::TIME(), AsyncRequestOptions::Empty, utcTimestamp);有没有其他方法可以做到这一点?
发布于 2021-04-28 17:01:16
结果是我读错了文档,时间值必须以微秒而不是毫秒来传递。此处回答的最小时间值为1483228800000000 -> Movesense, setting the system time
https://stackoverflow.com/questions/67279622
复制相似问题