# HG changeset patch # User Florian Pose # Date 1203438571 0 # Node ID f1c8a12919bcb08cd7a0ee771ac6b79dd2e6f44f # Parent c9e147567924d91c735c8f62c92ba43a2963e243 Added graph for Pdo configuration. diff -r c9e147567924 -r f1c8a12919bc documentation/graphs/Makefile --- a/documentation/graphs/Makefile Tue Feb 19 16:24:45 2008 +0000 +++ b/documentation/graphs/Makefile Tue Feb 19 16:29:31 2008 +0000 @@ -7,6 +7,7 @@ GRAPHS := \ fsm_slave_conf.ps \ fsm_pdo_mapping.ps \ + fsm_pdo_config.ps \ fsm_master.ps \ fsm_coe_map.ps diff -r c9e147567924 -r f1c8a12919bc documentation/graphs/fsm_pdo_config.dot --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/documentation/graphs/fsm_pdo_config.dot Tue Feb 19 16:29:31 2008 +0000 @@ -0,0 +1,19 @@ + +/* $Id$ */ + +digraph pdoconfig { + size="7,9" + center=1 + ratio=fill + + next_pdo [shape=point,label=""] + + start -> next_pdo [label="First Pdo"] + next_pdo -> end [label="No more Pdos"] + next_pdo -> zero_count [label="Next Pdo"] + zero_count -> next_pdo [label="No Entries"] + zero_count -> add_entry [label="Add first entry", weight=5] + add_entry -> add_entry [label="Add next entry"] + add_entry -> entry_count [label="No more Entries", weight=5] + entry_count -> next_pdo +}