Skip to content

Commit 90087fa

Browse files
committed
reformat code
1 parent 8eb94d7 commit 90087fa

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

  • infinite_sense_core/include

infinite_sense_core/include/data.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ inline void ProcessTriggerData(const nlohmann::json &data) {
99
}
1010
const uint64_t time_stamp = data["t"];
1111
const uint16_t status = data["s"];
12-
const uint64_t count = data["c"];
1312
SET_LAST_TRIGGER_STATUS(time_stamp, status);
1413
};
1514

@@ -21,7 +20,6 @@ inline void ProcessIMUData(const nlohmann::json &data) {
2120
const uint64_t time_stamp = data["t"];
2221
const uint64_t count = data["c"];
2322
imu.time_stamp_us = time_stamp;
24-
// std::cout << imu.time_stamp_us << std::endl;
2523
imu.a[0] = data["d"][0];
2624
imu.a[1] = data["d"][1];
2725
imu.a[2] = data["d"][2];

0 commit comments

Comments
 (0)