Domain datagram working counter calculation bugfix: increment expected wc for a given slave & direction just once for each datagram
This bug occurs if you configure more than one SM in the same direction on the same slave
#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------
FIGS := \
app-config.fig \
architecture.fig \
attach.fig \
dc.fig \
fmmus.fig \
fsm-coedown.fig \
fsm-eoe.fig \
interrupt.fig \
master-locks.fig \
masters.fig \
phases.fig \
statetrans.fig
PDFS = $(FIGS:.fig=.pdf)
all: $(PDFS)
%.pdf: %.fig
fig2dev -L pdf -z A4 -p xxx -c $< $@
clean:
@rm -rv $(PDFS)
#-----------------------------------------------------------------------------