Skip to content
Snippets Groups Projects
Commit 8e2d6e7d authored by Florian Pose's avatar Florian Pose
Browse files

Better outputs concerning responding slaves.

parent 2c3f752b
No related branches found
No related tags found
No related merge requests found
...@@ -241,8 +241,8 @@ void ec_domain_response_count(ec_domain_t *domain, /**< Dom ...@@ -241,8 +241,8 @@ void ec_domain_response_count(ec_domain_t *domain, /**< Dom
{ {
if (count != domain->response_count) { if (count != domain->response_count) {
domain->response_count = count; domain->response_count = count;
EC_INFO("Domain %08X state change - %i slave%s responding.\n", EC_INFO("Domain 0x%08X working counter change: %i\n",
(u32) domain, count, count == 1 ? "" : "s"); (u32) domain, count);
} }
} }
......
...@@ -956,8 +956,8 @@ int ecrt_master_activate(ec_master_t *master /**< EtherCAT-Master */) ...@@ -956,8 +956,8 @@ int ecrt_master_activate(ec_master_t *master /**< EtherCAT-Master */)
return -1; return -1;
} }
master->slaves_responding = master->slave_count; master->slaves_responding = 0;
master->slave_states = EC_SLAVE_STATE_OP; master->slave_states = EC_SLAVE_STATE_INIT;
return 0; return 0;
} }
......
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