documentation/graphs/fsm_coe_map.dot
author Florian Pose <fp@igh-essen.com>
Wed, 16 Apr 2008 09:21:51 +0000
changeset 894 440c43d56b33
parent 752 3d5cd81674bd
permissions -rw-r--r--
Improved EC_WRITE macros by replacing in-situ conversions
(cpu_to_lexxs()) by by-value ones (cpu_to_lexx()).

/* $Id$ */

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

    next_sync [shape=point,label=""]
    next_pdo [shape=point,label=""]
    next_pdo_entry [shape=point,label=""]

    start -> next_sync [label="first SM"]

    next_sync -> pdo_count [weight=5]
    next_sync -> end

    pdo_count -> next_pdo [weight=5]

    next_pdo -> pdo [weight=5]
    next_pdo -> next_sync

    pdo -> pdo_entry_count [weight=5]

    pdo_entry_count -> next_pdo_entry [weight=10]

    next_pdo_entry -> pdo_entry [weight=5]
    next_pdo_entry -> next_pdo

    pdo_entry -> next_pdo_entry

    end
}