Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Control
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Software
ArmarX
Skills
Control
Commits
0e3fbd84
Commit
0e3fbd84
authored
1 year ago
by
Fabian Reister
Committed by
Fabian Reister
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
fixing build
parent
40d10ea4
Branches
skills/dev
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
source/armarx/control/skills/skills/MoveJoints.cpp
+15
-17
15 additions, 17 deletions
source/armarx/control/skills/skills/MoveJoints.cpp
source/armarx/control/skills/skills/MoveJoints.h
+6
-7
6 additions, 7 deletions
source/armarx/control/skills/skills/MoveJoints.h
with
21 additions
and
24 deletions
source/armarx/control/skills/skills/MoveJoints.cpp
+
15
−
17
View file @
0e3fbd84
...
...
@@ -39,13 +39,13 @@ namespace armarx::control::skills::skills
if
(
not
virtualRobot
)
{
ARMARX_ERROR
<<
"Could not get robot '"
<<
remote
.
robotName
<<
"'"
;
return
{
::
armarx
::
skills
::
TerminatedSkillStatus
::
Failed
}
;
return
MakeFailedResult
()
;
}
// check jointsTargetValues are valid (joints exist, target values are within limits)
if
(
not
checkJointsTargetValuesValid
(
in
.
parameters
.
jointsTargetValues
,
virtualRobot
))
{
return
{
::
armarx
::
skills
::
TerminatedSkillStatus
::
Failed
}
;
return
MakeFailedResult
()
;
}
// request joints
...
...
@@ -54,11 +54,11 @@ namespace armarx::control::skills::skills
{
remote
.
kinematicUnit
->
requestJoints
(
jointNames
);
}
catch
(
armarx
::
KinematicUnitUnavailable
e
)
catch
(
const
armarx
::
KinematicUnitUnavailable
&
e
)
{
ARMARX_IMPORTANT
<<
"Failed to request joints. Terminating. Joints unavailable:"
<<
e
.
nodeOwners
;
return
{
::
armarx
::
skills
::
TerminatedSkillStatus
::
Failed
}
;
return
MakeFailedResult
()
;
}
// move joints
...
...
@@ -82,7 +82,7 @@ namespace armarx::control::skills::skills
in
.
parameters
.
accuracyOverride
,
virtualRobot
);
}
return
{
::
armarx
::
skills
::
TerminatedSkillStatus
::
Succeeded
}
;
return
Make
Succeeded
Result
()
;
}
bool
...
...
@@ -132,12 +132,14 @@ namespace armarx::control::skills::skills
ARMARX_INFO
<<
"Waiting until target values are reached"
;
const
Clock
clock
;
const
Duration
sleepTime
=
Duration
::
MilliSeconds
(
2
0
);
const
Duration
sleepTime
=
Duration
::
MilliSeconds
(
5
0
);
auto
do_if_terminate_and_not_reached
=
[
&
]()
{
ARMARX_INFO
<<
"Skill got aborted, stopping movement"
;
syncVirtualRobot
(
virtualRobot
);
ARMARX_CHECK
(
remote
.
virtualRobotReader
.
synchronizeRobot
(
*
virtualRobot
,
armarx
::
DateTime
::
Now
()))
<<
"Robot state synchronization failed"
;
// stop movement
switchControlMode
(
jointsTargetValues
,
eVelocityControl
);
...
...
@@ -158,7 +160,9 @@ namespace armarx::control::skills::skills
while
(
not
reached
)
{
throwIfSkillShouldTerminate
(
do_if_terminate_and_not_reached
);
syncVirtualRobot
(
virtualRobot
);
ARMARX_CHECK
(
remote
.
virtualRobotReader
.
synchronizeRobot
(
*
virtualRobot
,
armarx
::
DateTime
::
Now
()))
<<
"Robot state synchronization failed"
;
reached
=
true
;
for
(
const
auto
&
[
jointName
,
targetValue
]
:
jointsTargetValues
)
...
...
@@ -187,7 +191,9 @@ namespace armarx::control::skills::skills
const
NameValueMap
&
speedOverride
,
const
VirtualRobot
::
RobotPtr
&
virtualRobot
)
{
syncVirtualRobot
(
virtualRobot
);
ARMARX_CHECK
(
remote
.
virtualRobotReader
.
synchronizeRobot
(
*
virtualRobot
,
armarx
::
DateTime
::
Now
()))
<<
"Robot state synchronization failed"
;
//build trajectory
armarx
::
trajectory
::
Trajectory
trajectory
;
...
...
@@ -235,12 +241,4 @@ namespace armarx::control::skills::skills
ARMARX_INFO
<<
"Target values reached"
;
}
void
MoveJoints
::
syncVirtualRobot
(
const
VirtualRobot
::
RobotPtr
&
virtualRobot
)
{
ARMARX_CHECK
(
remote
.
virtualRobotReader
.
synchronizeRobot
(
*
virtualRobot
,
armarx
::
DateTime
::
Now
()))
<<
"Robot state synchronization failed"
;
}
}
// namespace armarx::control::skills::skills
This diff is collapsed.
Click to expand it.
source/armarx/control/skills/skills/MoveJoints.h
+
6
−
7
View file @
0e3fbd84
...
...
@@ -32,11 +32,12 @@ namespace armarx::control::skills::skills
static
::
armarx
::
skills
::
SkillDescription
GetSkillDescription
()
{
return
{
armarx
::
skills
::
SkillID
(
"MoveJoints"
),
"Moves joints to specified target values using the KinematicUnit"
,
nullptr
,
::
armarx
::
Duration
::
Minutes
(
1
),
ParamType
::
ToAronType
()};
return
::
armarx
::
skills
::
SkillDescription
{
.
skillId
=
{.
skillName
=
"MoveJoints"
},
.
description
=
"Moves joints to specified target values using the KinematicUnit"
,
.
rootProfileDefaults
=
nullptr
,
.
timeout
=
::
armarx
::
Duration
::
Minutes
(
1
),
.
parametersType
=
ParamType
::
ToAronType
()};
}
MoveJoints
(
const
Remote
&
);
...
...
@@ -62,8 +63,6 @@ namespace armarx::control::skills::skills
const
NameValueMap
&
speedOverride
,
const
VirtualRobot
::
RobotPtr
&
virtualRobot
);
void
syncVirtualRobot
(
const
VirtualRobot
::
RobotPtr
&
virtualRobot
);
private
:
Remote
remote
;
};
...
...
This diff is collapsed.
Click to expand it.
Rainer Kartmann
@kartmann
mentioned in merge request
!38 (closed)
·
1 year ago
mentioned in merge request
!38 (closed)
mentioned in merge request !38
Toggle commit list
Rainer Kartmann
@kartmann
mentioned in merge request
!39 (closed)
·
1 year ago
mentioned in merge request
!39 (closed)
mentioned in merge request !39
Toggle commit list
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