-
Notifications
You must be signed in to change notification settings - Fork 226
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
Changing parameters will now affect the drone, rather than doing nothing! #26
Closed
Closed
Changes from 2 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
d1d4cd1
.gitignore results of build operation and added launch file
4f568c1
Bug Fix
b5c57a3
Launch file moved to its own folder. README updated for launch file.
mani-monaj 0b58364
Add backward compatibilty support for -ip command line argument
mani-monaj 0dc6a2a
Manually merging #25 to add magnetometer topic (by @sameerparekh)
mani-monaj 3ec0db0
will now only read rosparams for writeable drone parameters
699fa5a
Revert "will now only read rosparams for writeable drone parameters"
mikehamer b72793b
Will now only read rosparams for writeable drone parameters
mikehamer d1de363
A more sensible launch file for most people
mikehamer 712a24b
Fixed launch file
mikehamer 73e9a53
Information about branch added to the README
mani-monaj 13bb31f
Minor formatting
mani-monaj 5d48b4d
Updated README to include tm format
mikehamer 13145dc
Merge pull request #27 from mikehamer/master
mani-monaj efaa64c
Added custom navdata messages and message generator
mikehamer f46a7ad
NOT FINISHED: Incorporating custom messages into code
mikehamer 2fc267c
Revert "NOT FINISHED: Incorporating custom messages into code"
mikehamer ca5fadf
Added custom messages and handling code
mikehamer 54d6fff
Enabling all messages
mikehamer 24529cd
Added the ability to disable hover mode and constantly send commands
mikehamer 1b7074d
Added enable_legacy_navdata (true by default)
mikehamer 0c42f25
No more cache stuff!
mikehamer 96a7a48
Merge branch 'more-navdata'
mikehamer 4057b6e
Updated to include some new flags and enable more aggressive flight
mikehamer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<launch> | ||
<node name="ardrone_driver" pkg="ardrone_autonomy" type="ardrone_driver" output="screen" clear_params="true"> | ||
<param name="outdoor" value="1" /> | ||
<param name="max_bitrate" value="4000" /> | ||
<param name="bitrate" value="4000" /> | ||
<param name="navdata_demo" value="0" /> | ||
<param name="flight_without_shell" value="1" /> | ||
<param name="altitude_max" value="4000" /> | ||
<param name="altitude_min" value="150" /> | ||
<param name="euler_angle_max" value="0.5" /> | ||
<param name="control_vz_max" value="2000" /> | ||
<param name="control_yaw" value="350" /> | ||
<param name="detect_type" value="10" /> | ||
<param name="enemy_colors" value="3" /> | ||
<param name="groundstripe_colors" value="8" /> | ||
<param name="detections_select_h" value="32" /> | ||
<param name="detections_select_v_hsync" value="128" /> | ||
<param name="enemy_without_shell" value="0" /> | ||
<param name="do_imu_caliberation" value="false" /> | ||
<param name="tf_prefix" value="mydrone" /> | ||
</node> | ||
</launch> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
You should add the
clear_params="true"
line to your launch file, otherwise removing parameters will have no effect as the values still exist in the ros parameter server.