Formula Student Autonomous Systems
The code for the main driverless system
Loading...
Searching...
No Matches
inspection.cpp
Go to the documentation of this file.
1#include <cstdio>
2
4
5int main(int argc, char** argv) {
6 rclcpp::init(argc, argv);
7 auto node = std::make_shared<InspectionMission>();
8 try {
9 rclcpp::spin(node);
10 } catch (const std::exception& e) {
11 RCLCPP_ERROR(node->get_logger(), e.what());
12 }
13 rclcpp::shutdown();
14 return 0;
15}
Definition main.py:1