Skip to content

Commit

Permalink
launch #257: rename blacklist.yaml to pluginlists.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
vooon committed Mar 24, 2015
1 parent 50bb326 commit 7f0a3dd
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion mavros/launch/apm.launch
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<arg name="tgt_component" default="1" />

<include file="$(find mavros)/launch/node.launch">
<arg name="blacklist_yaml" value="$(find mavros)/launch/apm_blacklist.yaml" />
<arg name="pluginlists_yaml" value="$(find mavros)/launch/apm_pluginlists.yaml" />
<arg name="config_yaml" value="$(find mavros)/launch/apm_config.yaml" />

<arg name="fcu_url" value="$(arg fcu_url)" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,6 @@ plugin_blacklist:
- px4flow
- 'vision_*'
- visualization

plugin_whitelist: []
#- 'sys_*'
4 changes: 2 additions & 2 deletions mavros/launch/node.launch
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<arg name="gcs_url" />
<arg name="tgt_system" />
<arg name="tgt_component" />
<arg name="blacklist_yaml" />
<arg name="pluginlists_yaml" />
<arg name="config_yaml" />

<node pkg="mavros" type="mavros_node" name="mavros" required="true" clear_params="true" output="screen">
Expand All @@ -16,7 +16,7 @@
<param name="target_component_id" value="$(arg tgt_component)" />

<!-- load blacklist, config -->
<rosparam command="load" file="$(arg blacklist_yaml)" />
<rosparam command="load" file="$(arg pluginlists_yaml)" />
<rosparam command="load" file="$(arg config_yaml)" />
</node>
</launch>
2 changes: 1 addition & 1 deletion mavros/launch/px4.launch
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<arg name="tgt_component" default="50" />

<include file="$(find mavros)/launch/node.launch">
<arg name="blacklist_yaml" value="$(find mavros)/launch/px4_blacklist.yaml" />
<arg name="pluginlists_yaml" value="$(find mavros)/launch/px4_pluginlists.yaml" />
<arg name="config_yaml" value="$(find mavros)/launch/px4_config.yaml" />

<arg name="fcu_url" value="$(arg fcu_url)" />
Expand Down
2 changes: 0 additions & 2 deletions mavros/launch/px4_blacklist.yaml

This file was deleted.

5 changes: 5 additions & 0 deletions mavros/launch/px4_pluginlists.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
plugin_blacklist:
- 'image_pub'

plugin_whitelist: []
#- 'sys_*'

0 comments on commit 7f0a3dd

Please sign in to comment.