documentation/graphs/fsm_pdo_entry_conf.dot
author Patrick Bruenn <p.bruenn@beckhoff.com>
Thu, 05 Jun 2014 16:07:52 +0200
branchstable-1.5
changeset 2567 d70aad2f131f
parent 2513 e60c68f33e4f
permissions -rw-r--r--
- use short kernel types, add empty lines after variable declaration to conform better with linux coding style
- replace polling threads with hrtimer callback

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