forked from velodynevls/velodyne_vls
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
91e15ab
commit 94a1884
Showing
70 changed files
with
8,491 additions
and
3,682 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 |
---|---|---|
@@ -1,10 +1,11 @@ | ||
Repository for VelodyneLiDAR VLS sensors (It currently supports VLS-128). | ||
|
||
The code is highly leveraged from https://github.com/ros-drivers/velodyne. | ||
The code is highly leveraged from <https://github.com/ros-drivers/velodyne>. | ||
|
||
This code is only tested in ROS Kinetic. | ||
|
||
Compile instruction: | ||
|
||
``` | ||
catkin_make -DCMAKE_BUILD=Release | ||
``` |
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
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 |
---|---|---|
@@ -1,39 +1,38 @@ | ||
<!-- -*- mode: XML -*- --> | ||
<!-- start velodyne_driver/DriverNodelet in a nodelet manager --> | ||
|
||
<launch> | ||
|
||
<arg name="device_ip" default="" /> | ||
<arg name="frame_id" default="velodyne" /> | ||
<arg name="manager" default="$(var frame_id)_nodelet_manager" /> | ||
<arg name="model" default="64E" /> | ||
<arg name="pcap" default="" /> | ||
<arg name="port" default="2368" /> | ||
<arg name="npackets" default="" /> | ||
<arg name="read_fast" default="false" /> | ||
<arg name="read_once" default="false" /> | ||
<arg name="repeat_delay" default="0.0" /> | ||
<arg name="rpm" default="600.0" /> | ||
<arg name="scan_phase" default="0.0" /> | ||
<arg name="sensor_timestamp" default="false" /> | ||
<arg name="device_ip" default=""/> | ||
<arg name="frame_id" default="velodyne"/> | ||
<arg name="manager" default="$(var frame_id)_nodelet_manager"/> | ||
<arg name="model" default="64E"/> | ||
<arg name="pcap" default=""/> | ||
<arg name="port" default="2368"/> | ||
<arg name="npackets" default=""/> | ||
<arg name="read_fast" default="false"/> | ||
<arg name="read_once" default="false"/> | ||
<arg name="repeat_delay" default="0.0"/> | ||
<arg name="rpm" default="600.0"/> | ||
<arg name="scan_phase" default="0.0"/> | ||
<arg name="sensor_timestamp" default="false"/> | ||
|
||
<!-- start nodelet manager --> | ||
<!-- <node pkg="nodelet" type="nodelet" name="$(arg manager)" args="manager" /> --> | ||
|
||
<!-- load driver nodelet into it --> | ||
<node pkg="velodyne_driver" exec="velodyne_driver_node" name="$(var manager)_driver"> | ||
<param name="device_ip" value="$(var device_ip)" /> | ||
<param name="device_ip" value="$(var device_ip)"/> | ||
<param name="frame_id" value="$(var frame_id)"/> | ||
<param name="model" value="$(var model)"/> | ||
<param name="pcap" value="$(var pcap)"/> | ||
<param name="port" value="$(var port)" /> | ||
<param name="npackets" value="$(var npackets)" /> | ||
<param name="port" value="$(var port)"/> | ||
<param name="npackets" value="$(var npackets)"/> | ||
<param name="read_fast" value="$(var read_fast)"/> | ||
<param name="read_once" value="$(var read_once)"/> | ||
<param name="repeat_delay" value="$(var repeat_delay)"/> | ||
<param name="rpm" value="$(var rpm)"/> | ||
<param name="scan_phase" value="$(var scan_phase)"/> | ||
<param name="sensor_timestamp" value="$(var sensor_timestamp)" /> | ||
<param name="sensor_timestamp" value="$(var sensor_timestamp)"/> | ||
</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
Oops, something went wrong.