documentation/graphs/fsm_pdo_mapping.dot
author Florian Pose <fp@igh-essen.com>
Thu, 03 Apr 2008 13:34:13 +0000
changeset 879 9b395c5646ab
parent 804 documentation/graphs/fsm_pdo_config.dot@f1c8a12919bc
permissions -rw-r--r--
Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
-> "Pdo mapping"; created ecrt_slave_config_pdo_assign_clear() and
ecrt_slave_config_pdo_mapping_clear().

/* $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
}