Skip to content
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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

add remote manager #91

wants to merge 1 commit into from

Conversation

SoshiroMaruoka
Copy link

No description provided.

@hrjp hrjp requested a review from Autumn60 January 25, 2025 12:43
Comment on lines +19 to +21
void Drive(const geometry_msgs::Twist& cmd_vel_used);
void Stop();
void Pause();
Copy link
Collaborator

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.

Suggested change
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>

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<exec_depend>mqtt_client</exec_depend>

Comment on lines +9 to +10
int frequency;
pn.param<int>("frequency", frequency, 20);
Copy link
Collaborator

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

Suggested change
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" />
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<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>
Copy link
Collaborator

@Autumn60 Autumn60 Jan 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe unused

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants