Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 1.49 KB

File metadata and controls

37 lines (27 loc) · 1.49 KB

Fixposition Driver Lib

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.

Dependencies

ROS1:

ROS2

Build

CMake

from the repository root dir:

cd fixposition_driver_lib
mkdir build
cd build
cmake ..
make

Catkin

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.

Colcon

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

Use this library in other projects:

A cmake file is provided in the cmake directory, please see fixposition_driver_ros1 or fixposition_driver_ros2 as examples of using this library.