You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Provide lifecycle services in the rclc lifecycle nodes (#51)
* Adds service callback with service context
Adds an additional callback type and handling that allows passing
additional service context (void *) to a service callback.
#35
Signed-off-by: Arne Nordmann <[email protected]>
* Fixed service callback handling
Signed-off-by: Arne Nordmann <[email protected]>
* Adds user API and tests
* Adds user API to add service with additional context
* Tests (copied and adapted from service with request id tests)
Signed-off-by: Arne Nordmann <[email protected]>
* Proper tear-down of msgs
Signed-off-by: Arne Nordmann <[email protected]>
* Fixes service call with context tests
Signed-off-by: Arne Nordmann <[email protected]>
* Adds service callbacks to lifecycle node
Declares service callbacks for lifecycle services: get state and get available states
micro-ROS#40
Signed-off-by: Arne Nordmann <[email protected]>
* Adds callback for GetState service
micro-ROS#40
Signed-off-by: Arne Nordmann <[email protected]>
* Provide GetAvailableStates service
Signed-off-by: Nordmann Arne (CR/ADT3) <[email protected]>
* Example lifecycle node proides services
Signed-off-by: Nordmann Arne (CR/ADT3) <[email protected]>
* Implemented ChangeState service
Signed-off-by: Nordmann Arne (CR/ADT3) <[email protected]>
* Linting, documentation, example
Signed-off-by: Nordmann Arne (CR/ADT3) <[email protected]>
* commnted out check for received sequence id - error in build-job for rolling https://build.ros2.org/job/Rpr__rclc__ubuntu_focal_amd64/72/ see also PR #46 and issue #49
* Cmake linting
Signed-off-by: Nordmann Arne (CR/ADT3) <[email protected]>
* Adds missing declaration of callbacks
Signed-off-by: Nordmann Arne (CR/ADT3) <[email protected]>
* Pre-initialize all strings
Signed-off-by: Nordmann Arne (CR/ADT3) <[email protected]>
* Lifecycle services working
* Functions to initialize lifecycle services for nodes
* Exemplary lifecycle nodes with services
micro-ROS#40
Signed-off-by: Nordmann Arne (CR/ADT3) <[email protected]>
* Tests for service initialization
Signed-off-by: Nordmann Arne (CR/ADT3) <[email protected]>
* commnted out check for received sequence id - error in build-job for rolling https://build.ros2.org/job/Rpr__rclc__ubuntu_focal_amd64/72/ see also PR #46 and issue #49
Signed-off-by: Jan Staschulat <[email protected]>
* commnted out check for received sequence id - error in build-job for rolling https://build.ros2.org/job/Rpr__rclc__ubuntu_focal_amd64/72/ see also PR #46 and issue #49
Signed-off-by: Jan Staschulat <[email protected]>
* Ignoring unsuccessful SERVICE_TAKE (#175)
* resolved bug by ignoring RCL_RET_SERVICE_TAKE_FAILED
Signed-off-by: Jan Staschulat <[email protected]>
* data_available has to be reset to false, if rcl_take fails - this needs to be updated for subscriptions as well.
Signed-off-by: Jan Staschulat <[email protected]>
* Fixes init and cleanup
Signed-off-by: Nordmann Arne (CR/ADT3) <[email protected]>
* commnted out check for received sequence id - error in build-job for rolling https://build.ros2.org/job/Rpr__rclc__ubuntu_focal_amd64/72/ see also PR #46 and issue #49
Signed-off-by: Jan Staschulat <[email protected]>
Co-authored-by: Jan Staschulat <[email protected]>
(cherry picked from commit 865b02b)
@@ -86,4 +77,4 @@ An example, how to use the RCLC Lifecycle Node is given in the file `lifecycle_n
86
77
87
78
## Limitations
88
79
89
-
The state machine publishes state changes, however, lifecycle services are not yet exposed via ROS 2 services (tbd).
80
+
* Lifecycle services cannot yet be called via `ros2 lifecycle` CLI, e.g., `ros2 lifecycle set /node configure`. Instead use the `ros2 service` CLI, e.g., `ros2 service call /node/change_state lifecycle_msgs/ChangeState "{transition: {id: 1, label: configure}}"`.
0 commit comments