Skip to content

Commit 6dae76d

Browse files
committed
changing namespace from dls2_interfaces to dls2_interface
1 parent 331b31a commit 6dae76d

19 files changed

Lines changed: 16 additions & 16 deletions

deploy/ros2_ws/src/dls2_interfaces/CMakeLists.txt renamed to deploy/ros2_ws/src/dls2_interface/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
cmake_minimum_required(VERSION 3.8)
3-
project(dls2_interfaces)
3+
project(dls2_interface)
44

55
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
66
add_compile_options(-Wall -Wextra -Wpedantic)
File renamed without changes.

deploy/ros2_ws/src/dls2_interfaces/idl/BaseState.idl renamed to deploy/ros2_ws/src/dls2_interface/idl/BaseState.idl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include "Pose.idl"
33
#include "Screw.idl"
44

5-
module dls2_interfaces {
5+
module dls2_interface {
66
module msg {
77
@Robot
88
struct BaseState
@@ -15,13 +15,13 @@ module dls2_interfaces {
1515
string robot_name;
1616

1717
// Base Pose
18-
dls2_interfaces::msg::Pose pose;
18+
dls2_interface::msg::Pose pose;
1919

2020
// Base velocity
21-
dls2_interfaces::msg::Screw velocity;
21+
dls2_interface::msg::Screw velocity;
2222

2323
// Base acceleration
24-
dls2_interfaces::msg::Screw acceleration;
24+
dls2_interface::msg::Screw acceleration;
2525

2626
// Stance status
2727
@LimbDataMap sequence<boolean> stance_status;

deploy/ros2_ws/src/dls2_interfaces/idl/BlindState.idl renamed to deploy/ros2_ws/src/dls2_interface/idl/BlindState.idl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include "DlsAnnotation.idl"
22

3-
module dls2_interfaces {
3+
module dls2_interface {
44
module msg {
55
@Robot @Eigen
66
struct BlindState

deploy/ros2_ws/src/dls2_interfaces/idl/DlsAnnotation.idl renamed to deploy/ros2_ws/src/dls2_interface/idl/DlsAnnotation.idl

File renamed without changes.

deploy/ros2_ws/src/dls2_interfaces/idl/Imu.idl renamed to deploy/ros2_ws/src/dls2_interface/idl/Imu.idl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module dls2_interfaces {
1+
module dls2_interface {
22
module msg {
33
struct Imu
44
{

deploy/ros2_ws/src/dls2_interfaces/idl/Pose.idl renamed to deploy/ros2_ws/src/dls2_interface/idl/Pose.idl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module dls2_interfaces {
1+
module dls2_interface {
22
module msg {
33
struct Pose
44
{

deploy/ros2_ws/src/dls2_interfaces/idl/Screw.idl renamed to deploy/ros2_ws/src/dls2_interface/idl/Screw.idl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module dls2_interfaces {
1+
module dls2_interface {
22
module msg {
33
struct Screw
44
{

deploy/ros2_ws/src/dls2_interfaces/idl/TrajectoryGenerator.idl renamed to deploy/ros2_ws/src/dls2_interface/idl/TrajectoryGenerator.idl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include "Pose.idl"
33
#include "Screw.idl"
44

5-
module dls2_interfaces {
5+
module dls2_interface {
66
module msg {
77
@Robot @Eigen
88
struct TrajectoryGenerator
@@ -12,11 +12,11 @@ module dls2_interfaces {
1212
unsigned long sequence_id;
1313
double timestamp;
1414

15-
dls2_interfaces::msg::Pose com_pose;
15+
dls2_interface::msg::Pose com_pose;
1616

17-
dls2_interfaces::msg::Screw com_vel;
17+
dls2_interface::msg::Screw com_vel;
1818

19-
dls2_interfaces::msg::Screw com_acc;
19+
dls2_interface::msg::Screw com_acc;
2020

2121
@JointState sequence<double> joints_position;
2222
@JointState sequence<double> joints_velocity;
File renamed without changes.

0 commit comments

Comments
 (0)