Fix gyro field name

This commit is contained in:
Willem Melching
2020-10-07 13:43:35 +02:00
parent 1a2efdc139
commit 2e739aa77c
+1 -1
View File
@@ -58,7 +58,7 @@ void LSM6DS3_Gyro::get_event(cereal::SensorEventData::Builder &event){
float xyz[] = {y, -x, z};
kj::ArrayPtr<const float> vs(&xyz[0], 3);
auto svec = event.initAcceleration();
auto svec = event.initGyroUncalibrated();
svec.setV(vs);
svec.setStatus(true);