Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
iri_lidar_lite_driver
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
labrobotica
ros
sensors
ranger1d
iri_lidar_lite_driver
Commits
5a85592a
Commit
5a85592a
authored
6 years ago
by
asantamaria
Browse files
Options
Downloads
Patches
Plain Diff
Update code according with new driver naming convention
parent
546a1dfb
No related branches found
No related tags found
1 merge request
!1
Dev/fixes updates and maintenance
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
include/lidar_lite_driver.h
+2
-2
2 additions, 2 deletions
include/lidar_lite_driver.h
launch/iri_lidar_lite.launch
+1
-0
1 addition, 0 deletions
launch/iri_lidar_lite.launch
src/lidar_lite_driver_node.cpp
+5
-5
5 additions, 5 deletions
src/lidar_lite_driver_node.cpp
with
8 additions
and
7 deletions
include/lidar_lite_driver.h
+
2
−
2
View file @
5a85592a
...
...
@@ -30,8 +30,8 @@
#include
<iri_base_driver/iri_base_driver.h>
#include
<iri_lidar_lite_driver/LidarLiteDriverConfig.h>
#include
<iridrivers/lidar_lite.h>
#include
<iridrivers/lidar_lite_exceptions.h>
#include
<iridrivers/lidar_lite
/lidar_lite
.h>
#include
<iridrivers/lidar_lite
/lidar_lite
_exceptions.h>
/**
* \brief IRI ROS Specific Driver Class
...
...
This diff is collapsed.
Click to expand it.
launch/iri_lidar_lite.launch
+
1
−
0
View file @
5a85592a
...
...
@@ -2,6 +2,7 @@
<launch>
<node pkg="iri_lidar_lite_driver" type="iri_lidar_lite_driver" name="iri_lidar_lite_driver" output="screen">
<node pkg="iri_lidar_lite" type="iri_lidar_lite" name="iri_lidar_lite" output="screen">
<param name="serial_num" type="string" value="A700evSl"/>
<param name="config_mode" type="int" value="0"/>
...
...
This diff is collapsed.
Click to expand it.
src/lidar_lite_driver_node.cpp
+
5
−
5
View file @
5a85592a
...
...
@@ -7,15 +7,15 @@ LidarLiteDriverNode::LidarLiteDriverNode(ros::NodeHandle& nh)
// , RunThread_(true)
// , Thread_(boost::bind(&LidarLiteDriverNode::ThreadFunc, this))
{
this
->
setRate
(
3
0
);
this
->
setRate
(
10
0
);
// Read from launch file
std
::
string
serial
;
int
config_mode
;
this
->
public_node_handle_
.
param
<
std
::
string
>
(
"serial_num"
,
serial
,
"A
700evSl
"
);
this
->
public_node_handle_
.
param
<
int
>
(
"config_mode"
,
config_mode
,
0
);
this
->
public_node_handle_
.
param
<
std
::
string
>
(
"frame_id"
,
this
->
frame_id_
,
this
->
public_node_handle_
.
param
<
std
::
string
>
(
"
lidar_lite_driver_node/
serial_num"
,
serial
,
"A
60124OL
"
);
this
->
public_node_handle_
.
param
<
int
>
(
"
lidar_lite_driver_node/
config_mode"
,
config_mode
,
0
);
this
->
public_node_handle_
.
param
<
std
::
string
>
(
"
lidar_lite_driver_node/
frame_id"
,
this
->
frame_id_
,
"lidar_lite"
);
// Set device parameters
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment