documentation/graphs/fsm_pdo_entry_conf.dot
author Dave Page <dave.page@gleeble.com>
Thu, 26 Mar 2015 15:16:21 -0400
changeset 2609 777d1a8b3a27
parent 2589 2b9c78543663
permissions -rw-r--r--
Integrate skeleton of allow_overlapping_pdos from af21f0bdc7c9
Overlapping PDO API added, but not active/working.
No more changes than required to build.
EC_IOCTL_VERSION_MAGIC now 30

/* $Id$ */

digraph pdo_entry_conf {
    node [fontname="Helvetica"]
    edge [fontname="Helvetica", fontsize="12"]

    start
    start -> zero_entry_count [weight=10]

    zero_entry_count
    zero_entry_count -> end [label="No Entries"]
    zero_entry_count -> action_map [label="Add first entry", weight=10]

    action_map [shape=point,label=""]
    action_map -> map_entry [weight=10]

    map_entry
    map_entry -> action_map [label="Next entry"]
    map_entry -> set_entry_count [label="No more Entries", weight=10]

    set_entry_count
    set_entry_count -> end [weight=10]

    end
    end
}