main_mag.cpp
Go to the documentation of this file.
1 #include "sbg_device.h"
2 
3 using sbg::SbgDevice;
4 
5 int main(int argc, char **argv)
6 {
7  ros::init(argc, argv, "sbg_device_mag");
8  ros::NodeHandle node_handle;
9 
10  try
11  {
12  ROS_INFO("SBG DRIVER - Init node, load params and connect to the device");
13  SbgDevice sbg_device(node_handle);
14 
15  sbg_device.initDeviceForMagCalibration();
16 
17  ros::spin();
18 
19  return 0;
20  }
21  catch (ros::Exception const& refE)
22  {
23  ROS_ERROR("SBG_DRIVER - [MagNode] Error - %s.", refE.what());
24  }
25 
26  return 0;
27 }
int main(int argc, char **argv)
Definition: main_mag.cpp:5
ROSCPP_DECL void init(int &argc, char **argv, const std::string &name, uint32_t options=0)
#define ROS_INFO(...)
ROSCPP_DECL void spin()
Handle a connected SBG device.
void initDeviceForMagCalibration(void)
Definition: sbg_device.cpp:483
#define ROS_ERROR(...)


sbg_driver
Author(s): SBG Systems
autogenerated on Thu Oct 22 2020 03:47:22