Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RobotAPI
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
Container Registry
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software
ArmarX
RobotAPI
Commits
7ccad6e8
Commit
7ccad6e8
authored
2 years ago
by
Fabian Reister
Browse files
Options
Downloads
Patches
Plain Diff
+ GlobalRobotPoseLocalizationCorrectionListener interface
parent
76e81504
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!258
RobotUnit with global robot pose information
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/RobotAPI/interface/core/RobotLocalization.ice
+12
-4
12 additions, 4 deletions
source/RobotAPI/interface/core/RobotLocalization.ice
with
12 additions
and
4 deletions
source/RobotAPI/interface/core/RobotLocalization.ice
+
12
−
4
View file @
7ccad6e8
...
...
@@ -29,18 +29,26 @@
#include
<RobotAPI/interface/core/PoseBase.ice>
module
armarx
{
interface
GlobalRobotPoseProvider
extends
armem
::
server
::
MemoryInterface
{
interface
GlobalRobotPoseProvider
extends
armem
::
server
::
MemoryInterface
{
// timestamp in microseconds
PoseBase
getGlobalRobotPose
(
long
timestamp
,
string
robotName
);
}
interface
GlobalRobotPoseLocalizationListener
{
interface
GlobalRobotPoseLocalizationListener
{
void
reportGlobalRobotPose
(
TransformStamped
currentPose
);
}
interface
GlobalRobotPoseLocalizationCorrectionListener
{
void
reportGlobalRobotPoseCorrection
(
TransformStamped
global_T_odom
);
}
interface
OdometryListener
{
interface
OdometryListener
{
void
reportOdometryVelocity
(
TwistStamped
platformVelocity
);
void
reportOdometryPose
(
TransformStamped
odometryPose
);
}
}
// module armarx
\ No newline at end of file
}
// module armarx
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