documentation/graphs/fsm_change.dot
author Gavin Lambert <uecasm@users.sourceforge.net>
Sat, 31 May 2014 18:08:27 +1200
changeset 2622 1aee02c1e294
parent 2589 2b9c78543663
permissions -rw-r--r--
Mark download data as const.
Remove redundant code.
[07-sdo-up-download]

/* $Id$ */

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

    start
    start -> check [weight=5]

    check
    check -> status [weight=5]
    check -> error [label="Response\ntimeout"]

    status
    status -> end [label="Success", weight=5]
    status -> code [label="Refuse", weight=5]
    status -> error [label="Change\ntimeout"]

    code
    code -> ack [weight=2]

    start_ack
    start_ack -> ack [label="Ack only"]

    ack
    ack -> check_ack [weight=2]

    check_ack
    check_ack -> end [label="Ack only"]
    check_ack -> error [weight=2]

    end

    error
}