Fix push motion datas in callback
This commit is contained in:
parent
a57edded4b
commit
8331b8415d
|
@ -74,7 +74,9 @@ void Motions::SetMotionCallback(motion_callback_t callback) {
|
||||||
|
|
||||||
std::lock_guard<std::mutex> _(mtx_datas_);
|
std::lock_guard<std::mutex> _(mtx_datas_);
|
||||||
motion_data_t data = {imu};
|
motion_data_t data = {imu};
|
||||||
|
if (motion_datas_enabled_) {
|
||||||
motion_datas_.push_back(data);
|
motion_datas_.push_back(data);
|
||||||
|
}
|
||||||
|
|
||||||
motion_callback_(data);
|
motion_callback_(data);
|
||||||
}
|
}
|
||||||
|
|
|
@ -394,7 +394,7 @@ struct device {
|
||||||
living_count++;
|
living_count++;
|
||||||
} else {
|
} else {
|
||||||
living_count = 0;
|
living_count = 0;
|
||||||
LOG(INFO) << "UVC pulse detection,Please ignore.";
|
// LOG(INFO) << "UVC pulse detection,Please ignore.";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user