Removed faulty polling before device->open().
This commit is contained in:
parent
7b59f69823
commit
7e373ee0c9
|
|
@ -156,8 +156,6 @@ void ec_device_detach(ec_device_t *device /**< EtherCAT device */)
|
|||
|
||||
int ec_device_open(ec_device_t *device /**< EtherCAT device */)
|
||||
{
|
||||
unsigned int i;
|
||||
|
||||
if (!device->dev) {
|
||||
EC_ERR("No net_device to open!\n");
|
||||
return -1;
|
||||
|
|
@ -168,9 +166,6 @@ int ec_device_open(ec_device_t *device /**< EtherCAT device */)
|
|||
return 0;
|
||||
}
|
||||
|
||||
// device could have received frames before
|
||||
for (i = 0; i < 4; i++) ec_device_poll(device);
|
||||
|
||||
device->link_state = 0;
|
||||
device->tx_count = 0;
|
||||
device->rx_count = 0;
|
||||
|
|
|
|||
Loading…
Reference in New Issue