-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add remote manager #91
base: main
Are you sure you want to change the base?
Conversation
void Drive(const geometry_msgs::Twist& cmd_vel_used); | ||
void Stop(); | ||
void Pause(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For consistent naming of functions.
void Drive(const geometry_msgs::Twist& cmd_vel_used); | |
void Stop(); | |
void Pause(); | |
void drive(const geometry_msgs::Twist& cmd_vel_used); | |
void stop(); | |
void pause(); |
<exec_depend>roscpp</exec_depend> | ||
<exec_depend>std_msgs</exec_depend> | ||
<exec_depend>geometry_msgs</exec_depend> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<exec_depend>mqtt_client</exec_depend> | |
int frequency; | ||
pn.param<int>("frequency", frequency, 20); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ref: https://docs.ros.org/en/diamondback/api/rostime/html/classros_1_1Rate.html
int frequency; | |
pn.param<int>("frequency", frequency, 20); | |
double frequency; | |
pn.param<double>("frequency", frequency, 20.0); |
@@ -56,7 +57,15 @@ | |||
<node pkg="nvt_core" type="launch_delayed.sh" args="5 roslaunch nvt_core perception.launch" name="nvt_perception" output="screen" /> | |||
|
|||
<!-- ======== Planning ======== --> | |||
<group unless="$(arg remote)"> | |||
<node pkg="nvt_core" type="launch_delayed.sh" args="5 roslaunch nvt_core planning.launch" name="nvt_planning" output="screen" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<node pkg="nvt_core" type="launch_delayed.sh" args="5 roslaunch nvt_core planning.launch" name="nvt_planning" output="screen" /> | |
<node pkg="nvt_core" type="launch_delayed.sh" args="5 roslaunch nvt_core planning.launch" name="nvt_planning" output="screen" /> |
#define REMOTE_MANAGER_H | ||
|
||
#include <ros/ros.h> | ||
#include <time.h> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe unused
No description provided.