Formula Student Autonomous Systems
The code for the main driverless system
Loading...
Searching...
No Matches
imu.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <rclcpp/rclcpp.hpp>
4
6
7struct ImuData {
14
15 rclcpp::Time timestamp_ = rclcpp::Time(0); //< Time of sensor data collection
16
17 ImuData() = default;
19 rclcpp::Time timestamp = rclcpp::Time(0), double rotational_velocity_noise = 0.0,
20 double acceleration_x_noise = 0.0, double acceleration_y_noise = 0.0);
21};
22} // namespace common_lib::sensor_data