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

Improved a few debugging outputs.

parent 5ab7c522
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,6 @@ Version 1.4.0:
* Check the position of the acknowledge state.
* Remove the xmldev files.
* Remove some debugging (add_sync_manager, clearing station addresses).
* Rename "Scanning pdo mapping/configuration".
* Separate CoE debugging.
* Make ecrt_master_slave_config() return no error when slave is not present
or invalid.
......
......@@ -209,7 +209,7 @@ void ec_fsm_coe_map_state_pdo_count(
if (ec_fsm_coe_exec(fsm->fsm_coe)) return;
if (!ec_fsm_coe_success(fsm->fsm_coe)) {
EC_ERR("Failed to read number of mapped Pdos from slave %u.\n",
EC_ERR("Failed to read number of assigned Pdos from slave %u.\n",
fsm->slave->ring_position);
fsm->state = ec_fsm_coe_map_state_error;
return;
......
......@@ -636,7 +636,7 @@ void ec_fsm_slave_scan_enter_pdos(
ec_slave_t *slave = fsm->slave;
if (slave->master->debug_level)
EC_DBG("Scanning Pdo mapping/configuration of slave %u.\n",
EC_DBG("Scanning Pdo assignment and mapping of slave %u.\n",
slave->ring_position);
fsm->state = ec_fsm_slave_scan_state_pdos;
ec_fsm_coe_map_start(fsm->fsm_coe_map, slave);
......@@ -659,7 +659,7 @@ void ec_fsm_slave_scan_state_pdos(
return;
}
// fetching of Pdo mapping finished
// fetching of Pdo assignment/mapping finished
fsm->state = ec_fsm_slave_scan_state_end;
}
......
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