documentation/graphs/fsm_pdo_mapping.dot
author Florian Pose <fp@igh-essen.com>
Mon, 12 Mar 2007 18:21:42 +0000
changeset 656 370aa8c2d1b1
parent 617 3c628bb7f68b
child 803 c9e147567924
permissions -rw-r--r--
Slave configuration exclusively from master thread; removed
ec_master_sync_io(); introduced events in the master state machine;
locking of slave scanning and slave configuration through allow_scan
and allow_config flags.

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