documentation/graphs/fsm_pdo_entry_read.dot
author Patrick Bruenn <p.bruenn@beckhoff.com>
Tue, 06 May 2014 17:23:33 +0200
branchstable-1.5
changeset 2565 f7b06b264646
parent 2513 e60c68f33e4f
permissions -rw-r--r--
- restored examples/user/
- removed /devices/ccat/COPYING
- replaced DRV_NAME with KBUILD_MODNAME

/* $Id$ */

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

    start
    start -> count [weight=5]

    count
    count -> action_next [weight=5]

    action_next [shape=point,label=""]
    action_next -> pdo_entry [label="Next entry", weight=5]
    action_next -> end [label="No more entries"]

    pdo_entry
    pdo_entry -> action_next

    end
}