forked from tianbot/rmtt_ros
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix sdk get_local_ip bug in set_sta. add vrpn launch file
- Loading branch information
Showing
2 changed files
with
35 additions
and
5 deletions.
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,25 @@ | ||
<launch> | ||
|
||
<arg name="server" default="localhost"/> | ||
|
||
<node pkg="vrpn_client_ros" type="vrpn_client_node" name="vrpn_client_node" output="screen"> | ||
<rosparam subst_value="true"> | ||
server: $(arg server) | ||
port: 3883 | ||
|
||
update_frequency: 100.0 | ||
frame_id: world | ||
|
||
# Use the VRPN server's time, or the client's ROS time. | ||
use_server_time: false | ||
broadcast_tf: true | ||
|
||
# Must either specify refresh frequency > 0.0, or a list of trackers to create | ||
refresh_tracker_frequency: 1.0 | ||
trackers: | ||
- FirstTracker | ||
- SecondTracker | ||
</rosparam> | ||
</node> | ||
|
||
</launch> |