Eoe mac address now derived from unique mac.
The EoE MAC address is now derived from the NIC part of the first global
unique MAC address of the linked list of available network interfaces or
otherwise the MAC address used by the EtherCAT master. The EoE MAC address
will get the format 02:NIC:NIC:NIC:RP:RP where NIC comes from the unique MAC
address (if available) and RP is the ring position of the EoE slave.
/* $Id$ */
digraph sii {
node [fontname="Helvetica"]
edge [fontname="Helvetica", fontsize="12"]
start_reading
start_reading -> read_check [weight=5]
read_check
read_check -> error
read_check -> read_fetch [weight=5]
read_fetch
read_fetch -> error
read_fetch -> end [weight=5]
read_fetch -> read_fetch
start_writing
start_writing -> write_check [weight=5]
write_check
write_check -> error
write_check -> write_check2 [weight=5]
write_check2
write_check2 -> error
write_check2 -> end [weight=5]
write_check2 -> write_check2
end
error
}