This is a CMake library used to parse Fixposition ASCII messages. The message content will be converted into a generic struct and can be processed further from there.
It can be built using plain CMake, or using catkin or colcon depending on which ROS version is used.
ROS1:
ROS2
from the repository root dir:
cd fixposition_driver_lib
mkdir build
cd build
cmake ..
make
clone this repository under the src
folder in the catkin workspace, and then run catkin build fixposition_driver_lib
or if you want to build all packages, run catkin build
.
clone this repository under the src
folder in the colcon workspace, and then run colcon build --packages-up-to fixposition_driver_lib
or if you want to build all packages, run colcon build
A cmake file is provided in the cmake directory, please see fixposition_driver_ros1 or fixposition_driver_ros2 as examples of using this library.