documentation/graphs/fsm_pdo_mapping.dot
author Florian Pose <fp@igh-essen.com>
Thu, 02 Oct 2008 08:00:18 +0000
branchstable-1.3
changeset 1758 2f7f5fa7b870
parent 1744 7bc131b92039
permissions -rw-r--r--
merge -r1464:1467 trunk: Removed unstable forcedeth and e100.

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