Skip to content

Commit

Permalink
Merge pull request #3 from ichiro-its/enhancement/refactor-run-action
Browse files Browse the repository at this point in the history
[Sprint 13 / Enhancement] Add Action Name in RunAction src
  • Loading branch information
finesaaa authored May 22, 2022
2 parents 589057d + 4b577a6 commit c9dd81f
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 59 deletions.
51 changes: 0 additions & 51 deletions .gitignore

This file was deleted.

4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ find_package(ament_cmake REQUIRED)
find_package(rosidl_default_generators REQUIRED)

rosidl_generate_interfaces(${PROJECT_NAME}
"msg/Actions.msg"
"msg/RunAction.msg"
"msg/Status.msg"
"srv/GetActions.srv"
"srv/RunAction.srv"
"srv/SaveActions.srv")

ament_export_dependencies(rosidl_default_runtime)
Expand Down
1 change: 0 additions & 1 deletion msg/Actions.msg

This file was deleted.

3 changes: 3 additions & 0 deletions msg/RunAction.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
int8 control_type 0
string action_name
string json
1 change: 1 addition & 0 deletions msg/Status.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bool is_running false
2 changes: 1 addition & 1 deletion srv/GetActions.srv
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
string json
string json
3 changes: 0 additions & 3 deletions srv/RunAction.srv

This file was deleted.

2 changes: 1 addition & 1 deletion srv/SaveActions.srv
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
string json
---
string status
string status

0 comments on commit c9dd81f

Please sign in to comment.