documentation/graphs/fsm_pdo_assign.dot
author Richard Hacker <ha@igh-essen.com>
Tue, 24 Jun 2008 10:55:40 +0000
changeset 1054 4c16fe64b403
parent 879 9b395c5646ab
permissions -rw-r--r--
Return out of ecrt_slave_config_pdos() when pdo_infos == NULL

/* $Id$ */

digraph pdomapping {
    size="7,9"
    center=1
	ratio=fill

    next_sync [shape=point,label=""]

    start -> next_sync [label="First SM"]
    next_sync -> end [label="No more SMs"]
    next_sync -> zero_count [label="Next SM"]
    zero_count -> next_sync [label="No Pdos"]
    zero_count -> add_pdo [label="Map first Pdo", weight=5]
    add_pdo -> add_pdo [label="Map next Pdo"]
    add_pdo -> pdo_count [label="No more Pdos", weight=5]
    pdo_count -> next_sync
}