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
585af1bb
Commit
585af1bb
authored
4 years ago
by
Raphael Grimm
Browse files
Options
Downloads
Patches
Plain Diff
Output debug info
parent
224f5afb
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/RobotAPI/libraries/ArmarXEtherCAT/EtherCAT.cpp
+31
-3
31 additions, 3 deletions
source/RobotAPI/libraries/ArmarXEtherCAT/EtherCAT.cpp
with
31 additions
and
3 deletions
source/RobotAPI/libraries/ArmarXEtherCAT/EtherCAT.cpp
+
31
−
3
View file @
585af1bb
...
...
@@ -31,6 +31,7 @@
#include
<ethercatmain.h>
#include
<ethercatbase.h>
#include
<ArmarXCore/core/util/OnScopeExit.h>
#include
<ArmarXCore/util/CPPUtility/Iterator.h>
//EtherCAT definitions only used for the ethercat stuff
#define SDO_READ_TIMEOUT 100000
...
...
@@ -439,18 +440,44 @@ std::pair<std::vector<ControlDevicePtr>, std::vector<SensorDevicePtr>> EtherCAT:
{
throw
LocalException
(
"no robot Container set! set a robotContainer before you start the bus!"
);
}
//dump infos about the device container
{
ARMARX_DEBUG
<<
"device container:
\n
#functional devices"
<<
deviceContainerPtr
->
getAllFunctionalDevices
().
size
()
<<
ARMARX_STREAM_PRINTER
{
const
auto
devs
=
deviceContainerPtr
->
getAllFunctionalDevices
();
for
(
const
auto
&
[
idx
,
dev
]
:
MakeIndexedContainer
(
devs
))
{
out
<<
"
\n
idx "
<<
idx
<<
" initialized "
<<
dev
->
isInitialized
()
<<
" class: "
<<
dev
->
getClassName
()
<<
"
\n
cfg nodes:"
;
for
(
const
auto
&
c
:
dev
->
getNode
().
getChildPaths
())
{
out
<<
"
\n
"
<<
c
;
}
}
};
}
auto
etherCATFactoryNames
=
EtherCATDeviceFactory
::
getAvailableClasses
();
ARMARX_INFO
<<
"
PPP
: "
<<
etherCATFactoryNames
;
ARMARX_INFO
<<
"
etherCATFactoryNames
: "
<<
etherCATFactoryNames
;
std
::
map
<
std
::
string
,
std
::
vector
<
uint16_t
>>
devicesOfType
;
for
(
uint16_t
currentSlaveIndex
=
1
;
currentSlaveIndex
<=
ec_slavecount
;
currentSlaveIndex
++
)
{
ARMARX_TRACE
;
const
std
::
string
messageSlaveIdentifier
=
"[Slave index: "
+
std
::
to_string
(
currentSlaveIndex
)
+
"] "
;
//DEBUG for EtherCAT HUB
//check the device type to identify the EtherCAT Hub
// uint32 deviceType = ETHTERCAT_HUB_DEVICE_TYPE;
//uint32 vendorID = 0;
ARMARX_INFO
<<
messageSlaveIdentifier
<<
" device type: "
<<
ec_slave
[
currentSlaveIndex
].
Dtype
<<
"
\n
itype: "
<<
std
::
hex
<<
ec_slave
[
currentSlaveIndex
].
Itype
<<
"
\n
eep_id: "
<<
ec_slave
[
currentSlaveIndex
].
eep_id
<<
"
\n
eep_man: "
<<
ec_slave
[
currentSlaveIndex
].
eep_man
<<
"
\n
eep_rev: "
<<
ec_slave
[
currentSlaveIndex
].
eep_rev
;
ARMARX_INFO
<<
messageSlaveIdentifier
<<
'\n'
<<
"device type: "
<<
std
::
hex
<<
"0x"
<<
ec_slave
[
currentSlaveIndex
].
Dtype
<<
std
::
dec
<<
" (dec: "
<<
ec_slave
[
currentSlaveIndex
].
Dtype
<<
")
\n
"
<<
"itype: "
<<
std
::
hex
<<
"0x"
<<
ec_slave
[
currentSlaveIndex
].
Itype
<<
std
::
dec
<<
" (dec: "
<<
ec_slave
[
currentSlaveIndex
].
Itype
<<
")
\n
"
<<
"eep_id: "
<<
std
::
hex
<<
"0x"
<<
ec_slave
[
currentSlaveIndex
].
eep_id
<<
std
::
dec
<<
" (dec: "
<<
ec_slave
[
currentSlaveIndex
].
eep_id
<<
")
\n
"
<<
"eep_man: "
<<
std
::
hex
<<
"0x"
<<
ec_slave
[
currentSlaveIndex
].
eep_man
<<
std
::
dec
<<
" (dec: "
<<
ec_slave
[
currentSlaveIndex
].
eep_man
<<
")
\n
"
<<
"eep_rev: "
<<
std
::
hex
<<
"0x"
<<
ec_slave
[
currentSlaveIndex
].
eep_rev
<<
std
::
dec
<<
" (dec: "
<<
ec_slave
[
currentSlaveIndex
].
eep_rev
<<
")
\n
"
;
ARMARX_INFO
<<
messageSlaveIdentifier
<<
"CoE details "
<<
(
int
)(
ec_slave
[
currentSlaveIndex
].
mbx_proto
&
ECT_MBXPROT_COE
);
bool
foundDevice
=
false
;
...
...
@@ -460,6 +487,7 @@ std::pair<std::vector<ControlDevicePtr>, std::vector<SensorDevicePtr>> EtherCAT:
{
ARMARX_INFO
<<
"Trying factory "
<<
facName
;
auto
device
=
EtherCATDeviceFactory
::
fromName
(
facName
,
std
::
make_tuple
(
this
,
currentSlaveIndex
,
deviceContainerPtr
));
ARMARX_INFO
<<
"Device is "
<<
device
.
get
();
if
(
device
)
{
devicesOfType
[
device
->
getClassName
()].
emplace_back
(
currentSlaveIndex
);
...
...
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