documentation/graphs/fsm_pdo_mapping.dot
author Florian Pose <fp@igh-essen.com>
Tue, 19 Feb 2008 16:29:31 +0000
changeset 804 f1c8a12919bc
parent 803 c9e147567924
child 805 262acb953f01
permissions -rw-r--r--
Added graph for Pdo configuration.

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