From d8dab33197acf7a8ebd8af2126068cb04cdefc47 Mon Sep 17 00:00:00 2001 From: CM Date: Fri, 14 Jul 2023 18:36:30 -0700 Subject: [PATCH] Add missing catkin workspace source to build instructions Most ROS repos mention sourcing `~//devel/setup.bash`, but these instructions are missing here. Without this step, the `allan_variance_ros` commands are not found. This can be helpful information for devs that aren't super familiar with ROS. --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 85ac176..1ffcc0d 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,17 @@ This tool is designed for Ubuntu 20.04. Attempting to use on another distro or v ## How to build -``catkin build allan_variance_ros`` +``` +$ cd ~/allan_var_workspace +$ catkin build allan_variance_ros +``` + +To run, you'll need to source the catkin workspace setup. +``` +$ source devel/setup.bash +$ rosrun allan_variance_ros +allan_variance analysis.py cookbag.py imu_simulator +``` ## How to use