Skip to content
Snippets Groups Projects
Commit 585af1bb authored by Raphael Grimm's avatar Raphael Grimm
Browse files

Output debug info

parent 224f5afb
No related merge requests found
......@@ -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 <<
"\neep_id: " << ec_slave[currentSlaveIndex].eep_id << "\neep_man: " << ec_slave[currentSlaveIndex].eep_man << "\neep_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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment