-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
New PX4 - ROS2 Bridge Documentation update #2094
Conversation
NOte, I have converted into a "draft" as we can't merge it until it is finished |
Sure, Here |
These are some architecture overview summaries I want checked with @TSC21 . This is what provides me the delta to understand what is the difference in the microRTPS vs microDDS options. XRCE BridgePretty much the same as the old model in that you have a fastCDR channel and the client/agent bidirectionally translate uorb to DDS Presumably client source code is generated based on uorb and included in PX4.
So what is changed here is that you only need one form of IDL for DDS and no different format for ROS2. This is because the differences in forms are handed by the integration service to ROS2. What is cool about this is that in the new version you can build the agent off a release, since all the messages to share etc are known. There is no need to maintain
microROSSo microROS is a similar client/agent architecture except that it translates from ROS2 to uorb, and presumably abstracts all the IDL stuff. Again, you don't need to do anything to maintain compatibility because you build off a release. About right? Same kinds of questions thought - confirm build messages based on same YAML source. General questions
|
@@ -313,7 +313,6 @@ | |||
* [Ubuntu Setup](dev_setup/dev_env_linux_ubuntu.md) | |||
* [Windows Setup](dev_setup/dev_env_windows_wsl.md) | |||
* [Visual Studio Code IDE](dev_setup/vscode.md) | |||
* [Fast DDS installation](dev_setup/fast-dds-installation.md) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note, this was how to install the old toolchain. We will need to replaces this with a new doc. I have deleted the doc. I have not redirected - just created one redirection for the main document.
@@ -611,7 +609,7 @@ | |||
* [ROS](ros/README.md) | |||
* [ROS 2](ros/ros2.md) | |||
* [ROS 2 User Guide](ros/ros2_comm.md) | |||
* [ROS 2 microRTPS Offboard Control Example](ros/ros2_offboard_control.md) | |||
* [ROS 2 microRTPS Offboard Control Example](ros/ros2_offboard_control.md) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note the title contains RTPS. Touched this because we will need to rewrite this example for the new architecture.
@@ -538,8 +537,7 @@ | |||
* [wind](msg_docs/wind.md) | |||
* [yaw_estimator_status](msg_docs/yaw_estimator_status.md) | |||
* [MAVLink Messaging](middleware/mavlink.md) | |||
* [RTPS/DDS Interface: PX4-Fast RTPS(DDS) Bridge](middleware/micrortps.md) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Deleted link. Doc still exits, but just redirects to the DDS doc. That has a note explaining where FastRTPS went.
@@ -538,8 +537,7 @@ | |||
* [wind](msg_docs/wind.md) | |||
* [yaw_estimator_status](msg_docs/yaw_estimator_status.md) | |||
* [MAVLink Messaging](middleware/mavlink.md) | |||
* [RTPS/DDS Interface: PX4-Fast RTPS(DDS) Bridge](middleware/micrortps.md) | |||
* [Manually Generate Client/Agent](middleware/micrortps_manual_code_generation.md) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We may need to replace this link with a new doc. Could well have the same name. But will reflect microDDS.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe we don't need this anymore
|
||
Prerequisites: | ||
|
||
- You have a supported autopilot hardware with RTPS feature enabled firmware on it by using [this guide](../middleware/micrortps.md#client-px4-px4-autopilot). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note, touched this because the document refers to RTPS. Need to review whole doc verify status for XRCE microDDS and microROS.
@@ -256,7 +256,7 @@ make [VENDOR_][MODEL][_VARIANT] [VIEWER_MODEL_DEBUGGER_WORLD] | |||
- **VENDOR:** The manufacturer of the board: `px4`, `aerotenna`, `airmind`, `atlflight`, `auav`, `beaglebone`, `intel`, `nxp`, etc. | |||
The vendor name for Pixhawk series boards is `px4`. | |||
- **MODEL:** The *board model* "model": `sitl`, `fmu-v2`, `fmu-v3`, `fmu-v4`, `fmu-v5`, `navio2`, etc. | |||
- **VARIANT:** Indicates particular configurations: e.g. `rtps`, `lpe`, which contain components that are not present in the `default` configuration. Most commonly this is `default`, and may be omitted. | |||
- **VARIANT:** Indicates particular configurations: e.g. `rtps`, `lpe`, which contain components that are not present in the `default` configuration. Most commonly this is `default`, and may be omitted. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note rtps
config. Is there a new config? What are the options after the change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All rtps
config have been removed, the microdds_client
is included by default in most of the boards but the user has to manually start it acting on the appropriate parameters.
In simulation, the module is automatically started using udp protocol and port 8888
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What @beniaminopozzan said
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@beniaminopozzan Thanks. I presume by appropriate parameters etc you mean the command line here: http://docs.px4.io/main/en/modules/modules_system.html#examples-3 ?
@Jaeyoung-Lim I guess this is the same question as https://github.com/PX4/PX4-user_guide/pull/2094/files#r1008915158 - how do we get it working on real hardware? Do you know of any example/tutorial for real hardware yet?
Wouldn't it be better if all these options were presented as parameters so that you could configure these in the airframe file?
If not, is the suggestion that you do so in an SD card startup file?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@hamishwillee precisely. But on real hardware there is also the serial_config
parameter like the old micrortps. However, I never tried it yet and it does not allow for specifying custom namespaces.
@@ -7,7 +7,7 @@ See [Toolchain Installation](../dev_setup/dev_env.md) for information about the | |||
|
|||
The PX4-Autopilot repository provides a convenient script to set your Arch installation up for PX4 development: [Tools/setup/arch.sh](https://github.com/PX4/PX4-Autopilot/blob/main/Tools/setup/arch.sh). <!-- NEED px4_version --> | |||
|
|||
The script installs (by default) all tools to build PX4 (without RTPS) for NuttX targets and run simulation with *jMAVsim*. | |||
The script installs (by default) all tools to build PX4 for NuttX targets and run simulation with *jMAVsim*. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We might change this back to re-add "without DDS"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What are the current dev tools needed here other than the ones installed with ROS2? Is ROS2 installation included with the scripts?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also we get back to the same situation as before: Are we targeting to use this without or with ROS2 only? If we use ROS2, then FastDDS is installed (then we can either use the micro XRCE-DDS agent or the micro-ROS agent). If we don't install ROS 2, i.e. we want to use DDS exclusively without ROS 2 stuff and so, we use the micro XRCE-DDS agent, then we need to install Fast DDS and its dependencies.
We need to definitely state though how to install and use both micro XRCE-DDS agent and the micro-ROS agent.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@hamishwillee there are multiple ways to get micro-ROS and XRCE-dds:
- Microxrcedds client + agent built from source: xrcedds install *you can install client and/or agent, as all of these packages are part of a superbuild cmake list, and will install dependencies for you!
- Standalone microxrce-dds agent via snap install: xrce agent standalone snap
- Micro-ROS via ros2 colcon build uros ros2 package: * requires running a setup + build script using 'ros2 run' as well as the colcon build tools.
- micro-ROS via snap package: uros snap
As TSC21 stated, fastdds is still a dependency, but the microxrcedds install from source also call out fastcdr among other packages (foonathon_memory, googletest, spdlog...). However, the SuperBuild.cmake will attempt to find the package, if not found it will clone and build as a dependency. The installation process is very simplified compared to the old docs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@TSC21"Are we targeting to use this without or with ROS2 only?"
Good question - isn't that up to you to answer? For RTPS docs we did include both cases.
- My understanding is that both options are supported - right?
- My further assumption is that the vast majority of users will be accessing via ROS2. If so I suggest that we target these two cases completely separately, and start with instructions that assume ROS2 consumers. Does that make sense?
- IN that case, what are the simplest instructions we can use to set up fastDDR, microROS and XRCE-dds agent code? My assumption is that it is the stuff in this gist down to the microROS topic - Can you confirm, or is there a better way?
@dirksavage88 I think this is your option "3" above.
- Note, @beniaminopozzan says that microROS client is not installed. So presumably this install approach works because microROS dependencies include the XRCE-DDS agent.
- My understanding is that you don't need to build the microROS or XRCE-DDS modules yourself directly, this just happens as part of the build.
- is that right?
- If you don't have FastDDS / ROS installed, does that just mean the module isn't built and included in firmware, but everything else will work?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@beniaminopozzan Re your comment:
Micro ros client is "just" microdds client (the one that PX4 uses) for the low level communication (with the microdds agent) plus the ROS API to have ROS in the device https://micro.ros.org/docs/concepts/client_library/introduction/
the pipeline is something like:
low-resource-device -- microRosClient -- micro XRCE-DDS client ----- micro XRCE-DDS Agent -- microRosAgent -- ROS2
A few follow on questions.
- I do understand that microROS allows ROS2 on the embedded controller. So it is a ROS2 API layer that connects to the micro XRCE-DDS client.
- Why do you need a microROS agent? When we query our messages from ROS2 in the examples they recognise the ROS2 topics from uORB via XRCE-DDS, so what is the agent doing for us?
Right now, PX4 directly connects to micro XRCE-DDS client.
Yes. But to be precise:
2. Does PX4 support/build the microROSClient in source?
3. Does PX4 include the client in firmware?
Basically I'm trying to understand "what happens next" - my assumption is that if 2 and 3 are "yes" then next step would be for someone to write a ros2 app on PX4, and that they could do that now.
- Is there a compelling use case for microROS. We generally have been pushing people to companion for years because the FC is resource constrained and harder to write for.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I do understand that microROS allows ROS2 on the embedded controller. So it is a ROS2 API layer that connects to the micro XRCE-DDS client.
Yes, I have the same understanding of microROS.
Why do you need a microROS agent?
I really don't know. Having all components under the "ROS2" hat is nice (I mean starting the Agent with ros2 run micro_ros_agent micro_ros_agent
) but I guess there is something more, not strictly necessary, some other convenient feature maybe?
Does PX4 support/build the microROSClient in source?
Does PX4 include the client in firmware?
Not right now. Right now only micro XRCE-DDS Client is included in the firmware (in as a submodule of the microdds module).
Basically I'm trying to understand "what happens next"
I can't help you here, let me ping @dagar for these aspects.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What does it mean if ros2 topic list
works, but when you try echo one of the displayed topics you get an error?
ubuntu@ubuntu-virtual-machine:~$ ros2 topic echo /fmu/out/vehicle_status
The message type 'px4_msgs/msg/VehicleStatus' is invalid
Note @beniaminopozzan - I used your installation instructions not microROS
EDITED. OK, so if I source humble (source /opt/ros/humble/setup.bash
) then ros2 topic list
works. TO be able to echo a topic, I need to source the local environment thingy source install/local_setup.bash
Then it works. What's that all about?
Note, further, the tutorial works in this case too.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know if this applies anytime that error message appears, but in this case it means that ROS2 doesn't have the message definition for px4_msgs/msg/VehicleStatus
(or that the message definition that it has is different from the one used to build that message, I have to check that). Did you not build the package px4_msgs
o did you not source the associated environment?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @beniaminopozzan - I think I'm a slow learner. Got it.
@@ -7,7 +7,6 @@ This environment can be used to build PX4 for [most PX4 targets](../dev_setup/de | |||
* [Gazebo Simulation](../simulation/gazebo.md) | |||
* [Raspberry Pi](#raspberry-pi) | |||
* [ROS (1)](#ros-gazebo) (Robotics Operating System) | |||
* [Fast DDS](../dev_setup/fast-dds-installation.md) - Required for ROS2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IF we have an installation topic(s), this would be added back or replaced with link to new information.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FastDDS is still a dependency. Now the important thing here is what I referenced on https://github.com/PX4/PX4-user_guide/pull/2094/files#r1000132738
@@ -207,15 +206,6 @@ To install the development toolchain: | |||
::: | |||
|
|||
|
|||
<a id="fast_dds"></a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IF we have an installation topic(s), this would be added back or replaced with link to new information.
@@ -39,7 +39,7 @@ Builds will silently ignore any missing or miss-spelled modules in the `*.px4bo | |||
Each PX4 board must have a `default.px4board` configuration and can have an optional `bootloader.px4board configuration`. | |||
However you can add also separate configurations under a different label e.g. `rtps.px4board`. | |||
Note that by default the configuration of `rtps.px4board` inherits all settings set in `default.px4board`. | |||
When changing the `rtps.px4board` it only stores the delta of the Kconfig keys that are different compared to `default.px4board`, this is useful to simplify configurations management | |||
When changing the `rtps.px4board` it only stores the delta of the Kconfig keys that are different compared to `default.px4board`, this is useful to simplify configurations management. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note, rtps mentioned
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this all needs to disappear as per @beniaminopozzan' comment in https://github.com/PX4/PX4-user_guide/pull/2094/files#r1000132554
|
||
The following guide describes the new PX4 bridge architecture, and shows the reader how to write a simple *Micro DDS* application to subscribe * publish telemetry updates from the PX4 Autopilot. | ||
|
||
:::note |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@akshata-01 FYI I switched this around so this note about fast RTPS is at the bottom. The top should all be interesting info about microDDS. I haven't rewritten that.
@@ -1,384 +1,3 @@ | |||
# RTPS/DDS Interface: PX4-Fast RTPS(DDS) Bridge | |||
<Redirect to="microdds" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note, deleted content. Not relevant once PR goes in. The note on the microDDS page explains what happened to it and where you go now if you're in old versions
@@ -1,187 +0,0 @@ | |||
# Manually Generate Client and Agent Code |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So as noted in SUMMARY.md where I removed the link - we might need a topic like this for microDDS and microROS. IN which case a new one would be created explaining how.
Co-authored-by: Nuno Marques <[email protected]>
Co-authored-by: Nuno Marques <[email protected]>
cd ~/px4_ros2_ws #Intro your ROS2 directory | ||
source /opt/ros/humble/setup.bash | ||
source install/setup.bash | ||
ros2 topic list -v #Displays available topic |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Which uorb topics are available as ROS topics? This used to be done in Yaml. Is it all of them? https://github.com/PX4/PX4-Autopilot/blob/main/msg/CMakeLists.txt#L288
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@hamishwillee , the uorb topics to expose to ROS2 can be selected editing this https://github.com/PX4/PX4-Autopilot/blob/main/src/modules/microdds_client/dds_topics.yaml
ros2 topic list -v #Displays available topic | ||
ros2 topic echo fmu/out/vehicle_status #You can check any available topic | ||
``` | ||
 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This tutorial stops early. Looking at this more complete one: https://gist.github.com/julianoes/adbf76408663829cd9aed8d14c88fa29#offboard-example-and-px4_msgs
This imports the following:
git clone https://github.com/PX4/px4_msgs.git
git clone https://github.com/PX4/px4_ros_com.git src/px4_ros_com
git clone https://github.com/Jaeyoung-Lim/px4-offboard.git src/px4-offboard
- I understand that ROS needs to know what ROS nodes are present, and that these are provided by
PX4/px4_msgs
- is that right? - Presumably the definitions change depending on the build. Does that mean we'll take release snapshots of these.
- If I build locally, where do the px4_msgs get generated? Or to put it another way, if I create a custom build of PX4, how do I expose messages to my ROS setup?
- These look just like normal uorb topic definitions - how do they get turned into something your script/ROS can use?
- I thought that
px4_ros_com
was no longer needed? Why does that get imported?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, thinking about this, my guess is that you need PX4/px4_msgs
if working with XRCE-DDS "alone" in order to tell the toolchain how to build the ROS topics. I assume that the colcon build builds everything, and somewhere in the definitions there is info to tell it to build the ROS2 topics from the messages.
I don't think you need the px4_ros_com at all, ever. If I'm wrong, when is it useful?
So how is microROS different? My guess based on the presentation is that you don't need px4_msgs either. I think in this case the client sends ROS messages by default so there is no need to do any conversion later on. Is that correct? IF not, can you clarify the "usage" difference?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PX4/px4_msgs
is still needed regardless which "agent", bare XRCE-DDS or microROS, you use. Currently it provides the message definitions to ROS2 (you can try running either agents without this package sourced, no error will appear until you actually try to echo a topic, then ROS2 will complain about the missing message definition). I don't know if in the future this will change, like it will be possible to compile the messages directly from the PX4 main repo.
The best part about this new system is that the message definitions on the PX4 side and the ROS2 side are the same. Therefore you only need a copy-paste of all the .msg
files from PX4 to ROS2 to keep the two in synchronized.
px4_ros_com as you said is no more needed. It contains a few examples of nodes and a library to transform frames between ROS2 and PX4 conventions, but it is no more a dependency.
According to the official repo https://github.com/micro-ROS/micro-ROS-Agent, microROS agent is just a ROS2 node that wraps the micro XRCE-DDS Agent. So the communication is always between micro XRCE-DDS Agent and micro XRCE-DDS Client. The agent then exposes the topics to ROS2 .
I have learned a lot in this pull request. While we do not have a official documentation, the @Jaeyoung-Lim ' s offboard package has given I huge documentation. I have recorded a video trying the package in the Foxy version of ROS2. All is working as expected. I would like to share with you in case it can help somehow: https://youtu.be/f5qEXDTZOug |
@ViniciusAbrao Thanks for taking the time to post that - I've just skipped through it but looks cool - certainly useful for anyone coming to this PR. This PR is superseded by another one #2259 . This uses XRCE-DDS agent rather than microROS as for Jae's tutorial. There are a couple of things that are not obvious from this current PR and from Jae's examples:
When the docs are done, would love another video from you working through the XRCE-DDS tutorial. |
@hamishwillee thank you for your feedback. I got all your points but I have thinking about some points in the future that might have relation with what you said. For example: 1- I could see that the XRCE-DDS implemented in the modules is currently responsible for the ROS topics, but not yet for the ROS services. 2- Looking into the eProsima tutorials: https://micro-xrce-dds.docs.eprosima.com/en/latest/client.html 3- Looking into the microROS tutorials: https://micro.ros.org/docs/tutorials/programming_rcl_rclc/service/ So at this point, I think that microROS also must be in the PX4 side, in order to simplify the implementations from the client side. If not, going directly through XRCE-DDS would be harder. Does it make sense? |
Does not make sense sorry unless the summary is "until microROS is being used in PX4 we can't really talk about microROS yet". The thing to note is that XRCE-DDS is used by microROS. microROS is a layer of libraries that let you do "native" ROS nodes on PX4 rather than uORB, and translating to DDS. What actually gets sent should be pretty much the same, which is why you can use either the XRCE-DDS or microROS agent on the companion to read the topics from PX4. I don't see to much benefit in talking aobut microROS right now since PX4 doesn't implement/include the microROS client yet. YOu can use the microROS agent or the XRCE-DDS agent on the companion, but I'd rather talk about the XRCE-DDS agent for now - at least until someone explains what value it adds. |
Yes, I agree with all your comment. The only thing I am highlighting is the need of the microROS in the PX4. Otherwise I can not see how to implement Services like were done in the past by MAVROS (set_mode to arm, take off, land ... Mission pull/push ). I might be confused at this point, but I did not find yet how to do it directly in the XRCE-DDS, without the layer of libraries provided by microROS. If I am wrong, I suggest that the documentation presents how to do it in general:
|
Hey @hamishwillee, hopefully this video by @DanMesh helps with some of the concepts https://youtu.be/CiajtefNQvE |
@hamishwillee if I may complement my last comment, I think one question that guide my point of view is: Is the documentation only for users in the agent side? In case of the answer is yes, ok. The documentation does not need to talk about microROS. In case of the answer is NO: How the PX4's user is going to implement ROS services (for example) without microROS in the client? |
So MAVROS wraps MAVLink - i.e. it turns a ROS command into a MAVLink command. That MAVLink command is turned into NAV commands and uorb topics and PX4-side stuff. So 2 points:
@beniaminopozzan what's the story with standard libraries in ROS2 for doing stuff like takeoff, arm, etc? |
YES. Right now. Until PX4 starts using it client-side it is too early for docs.
See my last answer ^^^. Most of them are likely to be implementable by posting to existing uorb topics. I actually don't know of a use case that needs microROS yet. |
Thanks @mrpollo. Nothing I didn't know about ROS, but it does explain some of the work Beat is doing around flight modes in MAVLink and PX4. |
With "ros2 topic list" we can see the topics implemented by the client, and we only have access to them. In the XRCE_DDS client module of PX4 we can see that implementation. With "ros2 service list" there is not any of that services required to Mission PULL/PUSH, arm, change .... In the @Jaeyoung-Lim tutorial, He did all that directly in the QGroundControl, and after the drone is on the flight, turned to offboard (also in QGroundControl) and so the ROS node is able to act. I am trying to see how to implement all that stuffs. If directly in the Agent side, perfect, I do not need to change the firmware (as expected). However, even in this case, the implementation in the agent side probably will be done with microROS (looks like I am a supporter of it ), because, otherwise, I think posting to existing uorb topics without microROS should be harder. Sorry for extend my comment. It has been done only to clarify. |
I'm not really sure what you mean with that. At the best of my knowledge there are no such libraries. You have to manually create a publisher to
It is not trivial but neither impossible IMO. |
@beniaminopozzan I could not find a mention to the Mission PULL/PUSH, which were ROS Services in the past with MAVROS. Do you have some suggestion? |
@ViniciusAbrao oh there is no support for those features yet. |
I see ... that is the point. Should not be necessary the microROS in the client side in order to implement ROS Services? Otherwise, looks like it is not possible to do it directly with eProsima Micro XRCE-DDS Client. |
I don't know what these push/pull things do, but I'd argue that you do not require the microROS client for this. It might make thing easier to write as a ROS node on the device, or it might not. This could be done as a PX4 module that is triggered from an external ROS node via uORB. Before you started you'd want to look at the requirement: it might make sense to do it somehow by file sharing. |
@hamishwillee The push/pull are responsible for include/exclude points in the mission during the flight. This is very common when whe are working in the Mission Mode, when we previously the flight define the points where the drone needs to pass. @beniaminopozzan If both the ROS service server and ROS service client are in the agent side of the bridge, that is ok.... But I can imagine that for some security reason, or maybe in a scenario with more than one agent, the ROS service server (this is unique) should be in the Client side of the bridge, and the ROS service client would be in the Agents of the bridge (more than one if necessary in case of, for example, both companion computer and ground station computer). |
I have translated the code to Python including: arm, take off, offboard flight and land: https://github.com/ViniciusAbrao/px4_ros2_xrcedds/blob/master/offboard_control.py |
Hey everyone, I appreciate the help testing the PR. However, let's keep this comment thread about the changeset and start filing support issues here PX4/PX4-Autopilot#21120 This will help us focus on getting this PR through the finish line. |
@ViniciusAbrao Re "Working with real hardware (pixhawk 6C), looks like the client is not automatically started... " - correct, that is covered in the PR that replaces this. You would normally have a line that starts it in system startup for the particular channel you're using - probably from an SD card start file. That channel will be different than the one used for mavlink unless you invent a protocol splitter (Auterion have one, but not sure it is open sourced) |
I am closing this as most of the work has now been done elsewhere, and this has been data mined. Thank you @akshata-01 for taking the lead on this to get it kicked off. |
Thank you @akshata-01 🎉 |
This PR is conditional on: