Improved a few debugging outputs.
This commit is contained in:
parent
c294906bbf
commit
e8f2b80a61
1
TODO
1
TODO
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue