diff -r 1a7067207637 -r 7bc131b92039 documentation/graphs/fsm_pdo_mapping.dot --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/documentation/graphs/fsm_pdo_mapping.dot Fri Aug 10 15:27:08 2007 +0000 @@ -0,0 +1,19 @@ + +/* $Id$ */ + +digraph pdomapping { + size="7,9" + center=1 + ratio=fill + + next [shape=point,label=""] + + start -> next [label="first SM"] + next -> end [label="no more SMs"] + next -> zero_count [label="next SM"] + zero_count -> next [label="no PDOs"] + zero_count -> add_pdo [label="map first PDO", weight=5] + add_pdo -> add_pdo [label="map next PDO"] + add_pdo -> set_count [label="no more PDOs", weight=5] + set_count -> next +}