simdata: implement bundle streams

This commit is contained in:
2026-03-09 10:17:44 +01:00
parent f0d7968843
commit caefdfe131
3 changed files with 60 additions and 16 deletions

View File

@@ -96,7 +96,8 @@ impl From<StreamType> for SensorSource {
match value {
StreamType::Annotations => Self::Annotations,
StreamType::GPS => Self::GPS,
StreamType::IMU => Self::IMU
StreamType::IMU => Self::IMU,
StreamType::Bundle => unimplemented!()
}
}
}