-
Notifications
You must be signed in to change notification settings - Fork 755
Correct rover param download #1546
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
Conversation
|
On Tue, 8 Apr 2025, Stephen Dade wrote:
For the rover param downloads, there was an inconsistency between using
"APMrover2.xml" and "Rover.xml", leading to the param module not using the
correct xml file.
I've standardised on "APMrover2.xml"
Any particular reason? I believe I added APMrover2.xml as a symlink on
the server, expecting to kill it eventually!
|
I was going off https://autotest.ardupilot.org/Parameters/, where it was the other way around - Rover was symlinked to APMRover2. Happy to change to PR to using Rover.xml - makes more sense that way |
Yep, thanks. I've also added symlinks so we can refer to just Copter / Plane / Sub: |
|
Fixed up to the new download locations. I also removed some old |
| $wc.DownloadFile('https://autotest.ardupilot.org/Parameters/Rover/apm.pdef.xml', 'Parameters\Rover.xml') | ||
| $wc.DownloadFile('https://autotest.ardupilot.org/Parameters/Copter/apm.pdef.xml', 'Parameters\Copter.xml') | ||
| $wc.DownloadFile('https://autotest.ardupilot.org/Parameters/Plane/apm.pdef.xml', 'Parameters\Plane.xml') | ||
| $wc.DownloadFile('https://autotest.ardupilot.org/Parameters/Sub/apm.pdef.xml', 'Parameters\Sub.xml') |
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.
Not your bug, but missing Blimp here
| powershell.exe "Start-BitsTransfer -Source 'http://autotest.ardupilot.org/Parameters/Rover/apm.pdef.xml' -Destination 'Parameters\Rover.xml'" | ||
| powershell.exe "Start-BitsTransfer -Source 'http://autotest.ardupilot.org/Parameters/Copter/apm.pdef.xml' -Destination 'Parameters\Copter.xml'" | ||
| powershell.exe "Start-BitsTransfer -Source 'http://autotest.ardupilot.org/Parameters/Plane/apm.pdef.xml' -Destination 'Parameters\Plane.xml'" | ||
| powershell.exe "Start-BitsTransfer -Source 'http://autotest.ardupilot.org/Parameters/Sub/apm.pdef.xml' -Destination 'Parameters\Sub.xml'" |
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.
Missing Blimp here, too
|
Great. I've added the Blimp param downloads now as well :) |
For the rover param downloads, there was an inconsistency between using "APMrover2.xml" and "Rover.xml", leading to the param module not using the correct xml file.
I've standardised on "APMrover2.xml"