documentation/graphs/fsm_pdo_entry_read.dot
author Gavin Lambert <gavinl@compacsort.com>
Tue, 14 Apr 2015 09:34:15 -0400
changeset 2619 f2bc4000e47a
parent 2589 2b9c78543663
permissions -rw-r--r--
When detaching a slave from a slave_config, fail any pending register requests instead of leaving them BUSY forever.

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