Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
imu
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
plugins
imu
Commits
239e0fad
Commit
239e0fad
authored
3 years ago
by
Joan Vallvé Navarro
Browse files
Options
Downloads
Plain Diff
Merge branch 'devel' into 'master'
New release 0.4.1.1 See merge request
!40
parents
541637ca
29c71608
No related branches found
No related tags found
1 merge request
!40
New release 0.4.1.1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+4
-20
4 additions, 20 deletions
.gitlab-ci.yml
include/imu/sensor/sensor_imu2d.h
+6
-0
6 additions, 0 deletions
include/imu/sensor/sensor_imu2d.h
with
10 additions
and
20 deletions
.gitlab-ci.yml
+
4
−
20
View file @
239e0fad
...
@@ -69,10 +69,10 @@ stages:
...
@@ -69,10 +69,10 @@ stages:
-
git checkout devel
-
git checkout devel
-
git pull
-
git pull
-
git checkout $WOLF_CORE_BRANCH
-
git checkout $WOLF_CORE_BRANCH
-
git pull
-
else
-
else
-
git clone ssh://git@gitlab.iri.upc.edu:2202/mobile_robotics/wolf_projects/wolf_lib/wolf.git
-
git clone
-b $WOLF_CORE_BRANCH
ssh://git@gitlab.iri.upc.edu:2202/mobile_robotics/wolf_projects/wolf_lib/wolf.git
-
cd wolf
-
cd wolf
-
git checkout $WOLF_CORE_BRANCH
-
fi
-
fi
-
mkdir -pv build
-
mkdir -pv build
-
cd build
-
cd build
...
@@ -92,9 +92,9 @@ stages:
...
@@ -92,9 +92,9 @@ stages:
############ LICENSE HEADERS ############
############ LICENSE HEADERS ############
license_headers
:
license_headers
:
stage
:
license
stage
:
license
image
:
labrobotica/wolf_deps:
16
.04
image
:
labrobotica/wolf_deps:
20
.04
cache
:
cache
:
-
key
:
wolf-
xeni
al
-
key
:
wolf-
foc
al
paths
:
paths
:
-
ci_deps/wolf/
-
ci_deps/wolf/
except
:
except
:
...
@@ -105,22 +105,6 @@ license_headers:
...
@@ -105,22 +105,6 @@ license_headers:
script
:
script
:
-
*license_header_definition
-
*license_header_definition
############ UBUNTU 16.04 TESTS ############
build_and_test:xenial
:
stage
:
build_and_test
image
:
labrobotica/wolf_deps:16.04
cache
:
-
key
:
wolf-xenial
paths
:
-
ci_deps/wolf/
except
:
-
master
before_script
:
-
*preliminaries_definition
-
*install_wolf_definition
script
:
-
*build_and_test_definition
############ UBUNTU 18.04 TESTS ############
############ UBUNTU 18.04 TESTS ############
build_and_test:bionic
:
build_and_test:bionic
:
stage
:
build_and_test
stage
:
build_and_test
...
...
This diff is collapsed.
Click to expand it.
include/imu/sensor/sensor_imu2d.h
+
6
−
0
View file @
239e0fad
...
@@ -100,6 +100,7 @@ class SensorImu2d : public SensorBase
...
@@ -100,6 +100,7 @@ class SensorImu2d : public SensorBase
double
getAbInitialStdev
()
const
;
double
getAbInitialStdev
()
const
;
double
getWbRateStdev
()
const
;
double
getWbRateStdev
()
const
;
double
getAbRateStdev
()
const
;
double
getAbRateStdev
()
const
;
bool
isGravityOrthogonal
()
const
;
~
SensorImu2d
()
override
;
~
SensorImu2d
()
override
;
...
@@ -135,6 +136,11 @@ inline double SensorImu2d::getAbRateStdev() const
...
@@ -135,6 +136,11 @@ inline double SensorImu2d::getAbRateStdev() const
return
ab_rate_stdev
;
return
ab_rate_stdev
;
}
}
inline
bool
SensorImu2d
::
isGravityOrthogonal
()
const
{
return
true
;
}
}
// namespace wolf
}
// namespace wolf
#endif // SENSOR_Imu2D_H
#endif // SENSOR_Imu2D_H
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