Formula Student Autonomous Systems
The code for the main driverless system
Loading...
Searching...
No Matches
main.cpp
Go to the documentation of this file.
1#include <cstdio>
2
3#include "rclcpp/rclcpp.hpp"
5
13int main(int argc, char **argv) {
14 (void)argc;
15 (void)argv;
16 rclcpp::init(argc, argv);
17
18 auto speed_est = std::make_shared<SENode>();
19 rclcpp::spin(speed_est);
20 rclcpp::shutdown();
21
22 return 0;
23}
Definition main.py:1