Jacob Perron

Results 64 issues of Jacob Perron

It is now properly included in the rosidl dependency chain. **This should not be backported to Humble or earlier.** It is only available in Rolling, pending https://github.com/ros2/rosidl_defaults/pull/22

This is more of a nitpick, but the default names of the nodes in the parameter class tutorials are inconsistent. The C++ tutorials uses the name `parameter_node` and the Python...

enhancement
help wanted

This ticket is to track adding support for ROS actions to ros2_java. Some early work related to code generation for actions was done in #66, #76, and #108. There has...

enhancement

Each callback is guarded by mutex, so even though they are happening in different threads, they are processed in series: https://github.com/ros2-java/ros2_java/blob/ae5edaa0f07f14938913bb5e395544e3ca4d91c5/rcljava/src/main/java/org/ros2/rcljava/executors/MultiThreadedExecutor.java#L85-L87 I proposed a patch to actually execute callbacks in...

enhancement

In short, I think it is more intuitive for users to reference Request, Response, Goal, Feedback, and Result interfaces as members of the top-level interface instead of having them as...

enhancement

This builds on #151. Switching from `java.util.List` to arrays significantly improves performance when converting from C to Java types. Though, for some applications it is still nice to use a...

enhancement

Useful for getting the current time from the Clock instance. This is a prerequisite for the action server implementation.

enhancement

The ROS 2 design document [Clock and Time](http://design.ros2.org/articles/clock_and_time.html) describes "ROS time" and its relation to the node parameter `use_sim_time`. This ticket is to implement the design of ROS time in...

enhancement