documentation/graphs/fsm_pdo_entry_read.dot
author Patrick Bruenn <p.bruenn@beckhoff.com>
Mon, 26 Oct 2015 08:28:10 +0100
branchstable-1.5
changeset 2637 1d9be5716dee
parent 2513 e60c68f33e4f
permissions -rw-r--r--
fix ccat startup stall. In case the dma memory was allocated above 4 GB limit, CCAT is unable to access it.
-> limit the dma_mask to 32-bit to omit this situation

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