Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
wolf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
mobile_robotics
wolf_projects
wolf_lib
wolf
Merge requests
!448
Draft: Resolve "Implementation of new nodes creation"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Draft: Resolve "Implementation of new nodes creation"
454-implementation-of-new-nodes-creation
into
devel
Overview
2
Commits
456
Pipelines
460
Changes
12
Open
Joan Vallvé Navarro
requested to merge
454-implementation-of-new-nodes-creation
into
devel
3 years ago
Overview
2
Commits
456
Pipelines
460
Changes
12
Expand
Closes
#454
,
#318
,
#364
,
#449
,
#381
,
#376
,
#208
,
#485
Edited
10 months ago
by
Joan Vallvé Navarro
0
0
Merge request reports
Viewing commit
5df868fb
Show latest version
12 files
+
820
−
91
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
12
Search (e.g. *.vue) (Ctrl+P)
5df868fb
sensor_odom_2d and new test working
· 5df868fb
Joan Vallvé Navarro
authored
2 years ago
include/core/sensor/sensor_base.h
+
4
−
4
Options
@@ -53,9 +53,9 @@ namespace wolf {
* must have a constructor available with the API:
*
* SensorClass(const std::string& _unique_name,
* SizeEigen _dim,
*
const
ParamsSe
rver& _server,
* ParamsSe
nsorClassPtr _params
)
* SizeEigen _dim,
* ParamsSe
nsorClassPtr _params,
*
const
ParamsSe
rver& _server
)
*
*/
#define WOLF_SENSOR_CREATE(SensorClass, ParamsSensorClass) \
@@ -100,7 +100,7 @@ struct ParamsSensorBase: public ParamsBase
std
::
string
print
()
const
override
{
return
"noise_std: "
+
to
_s
tring
(
noise_std
)
+
"
\n
"
;
return
"noise_std: "
+
to
S
tring
(
noise_std
)
+
"
\n
"
;
}
};
Loading