Fixed EtherCAT addressing problem on big-endian systems. The slaves
address is now a four-byte-array, that is filled with little-endian
(EtherCAT) values on datagram creation.
#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------
GRAPHS := fsm_slave_conf.ps fsm_pdo_mapping.ps
all: $(GRAPHS)
%.ps: %.dot
dot -Tps -o $@ $<
clean:
@rm -f *.ps
#-----------------------------------------------------------------------------