Skip to content

Commit 7d41086

Browse files
committed
Updated doc.h with LeadLag controller and edited .travis.yml ROS_DISTRO variable
1 parent 2707516 commit 7d41086

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ notifications:
1616
on_failure: change #[always|never|change] # default: always
1717
before_install: # Use this to prepare the system to install prerequisites or dependencies
1818
# Define some config vars
19-
- export ROS_DISTRO=hydro
19+
- export ROS_DISTRO=indigo
2020
- export CI_SOURCE_PATH=$(pwd)
2121
- export REPOSITORY_NAME=${PWD##*/}
2222
- echo "Testing branch $TRAVIS_BRANCH of $REPOSITORY_NAME"

CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ include_directories(
5252
)
5353

5454
add_library(${PROJECT_NAME}
55-
${HEADERS}
5655
src/lead_lag.cpp
5756
src/lead_lag_gains_setter.cpp
5857
src/pid.cpp

doc.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@
44
55
The control_toolbox package contains the following C++ classes which may be useful when implementing controllers.
66
\li \ref control_toolbox::Pid "Pid" for implementing position/integral/derivative control loops.
7+
\li \ref control_toolbox::LeadLag "Lead Lag" for implementing lead or lag compensator control loops.
78
\li \ref control_toolbox::Ramp "Ramp Output"
89
\li \ref control_toolbox::SineSweep "Sine Sweep"
910
\li \ref control_toolbox::Dither "Dither" for giving white noise at specified amplitude
1011
\li \ref control_toolbox::PidGainsSetter "Pid gains setter" for advertising a service for automatically changing PID gains.
12+
\li \ref control_toolbox::LeadLagGainsSetter "Lead Lag gains setter" for advertising a service for automatically changing LeadLag gains.
1113
1214
**/

0 commit comments

Comments
 (0)