documentation/graphs/fsm_pdo_read.dot
author Patrick Bruenn <p.bruenn@beckhoff.com>
Thu, 05 Jun 2014 16:40:01 +0200
branchstable-1.5
changeset 2570 144e11d93e99
parent 2513 e60c68f33e4f
permissions -rw-r--r--
- don't use compat.h in the mainline driver
- correct constness of function pointer declarations

/* $Id$ */

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

    start
    start -> action_next_sync [label="First SM", weight=5]

    action_next_sync [shape=point,label=""]
    action_next_sync -> pdo_count [weight=5]
    action_next_sync -> end

    pdo_count
    pdo_count -> action_next_pdo [weight=5]

    action_next_pdo [shape=point,label=""]
    action_next_pdo -> pdo [label="Next PDO", weight=5]
    action_next_pdo -> action_next_sync [label="No more PDOs"]

    pdo
    pdo -> pdo_entries [weight=5]

    pdo_entries
    pdo_entries -> action_next_pdo

    end
}