We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8eb94d7 commit 90087faCopy full SHA for 90087fa
1 file changed
infinite_sense_core/include/data.h
@@ -9,7 +9,6 @@ inline void ProcessTriggerData(const nlohmann::json &data) {
9
}
10
const uint64_t time_stamp = data["t"];
11
const uint16_t status = data["s"];
12
- const uint64_t count = data["c"];
13
SET_LAST_TRIGGER_STATUS(time_stamp, status);
14
};
15
@@ -21,7 +20,6 @@ inline void ProcessIMUData(const nlohmann::json &data) {
21
20
22
const uint64_t count = data["c"];
23
imu.time_stamp_us = time_stamp;
24
- // std::cout << imu.time_stamp_us << std::endl;
25
imu.a[0] = data["d"][0];
26
imu.a[1] = data["d"][1];
27
imu.a[2] = data["d"][2];
0 commit comments