-
Notifications
You must be signed in to change notification settings - Fork 345
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
Simulated Quadcopter: Where to find urdf and xacro file #117
Comments
Hello, |
@Alexey-Kamenev |
Clarification: PX4 firmware is cloned during Docker image build (see here) and stored in the home directory of the container so it's not shared among the containers and/or host. Any changes made in this directory will be lost if you delete the container. You can either change the Docker script and rebuild the image, or, which is likely simpler in your case, just clone the repo in the host directory accessible from the container and copy your files there. You can also fork PX4 repo and and commit/push your files there to make sure you don't lose any of your changes. As for upgrading PX4 firmware: I wish it was as simple as changing the version :( Historically, the reason we decided to stick with 1.4.4 (even though the newer version was available at that time, 1.5.2 AFAIR) was stability of the firmware when flying our Irises. Newer firmware sometimes caused some strange behavior which we did not have time to debug. Also, be aware that newer versions will have different parameter names which might make the upgrade process a bit complicated. |
I checked PX4 sitl_gazebo repo but it contains only SDF files. Maybe I am wrong. Are there any URDF files of Iris? Reason being, for motion planning MoveIt requires URDF files of the robots. Thanks in advance. |
@Alexey-Kamenev
I want to modify the gazebo simulation by adding a camera node onto the simulated iris quadcopter. I understand the URDF or XACRO file needs to be modified to add the camera, but I cannot find the file in the docker container:
~/px4/Firmware/
Could someone point me in the right direction on where I could find the urdf or xacro file for the iris quadcopter? Currently, I am looking in the redtail-sim docker container after running
build_redtail.sh
.Thanks.
The text was updated successfully, but these errors were encountered: