documentation/graphs/fsm_pdo_entry_read.dot
author Florian Pose <fp@igh-essen.com>
Fri, 16 Sep 2016 12:35:09 +0200
changeset 2663 b101637f503c
parent 2589 2b9c78543663
permissions -rw-r--r--
Use SYNC0 + SYNC1 cycle times for cyclic start time generation.

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