Skip to content
Snippets Groups Projects
Commit 944a8a84 authored by Florian Pose's avatar Florian Pose
Browse files

Improved mapping FSM graph.

parent 8b5c9b84
No related branches found
No related tags found
No related merge requests found
/* $Id$ */
digraph pdomapping { digraph pdomapping {
size="7,9" size="7,9"
center=1 center=1
ratio=fill ratio=fill
enter_map_pdo [shape=point,label=""] next [shape=point,label=""]
start -> enter_map_pdo start -> next [label="first SM"]
enter_map_pdo -> pdo_count next -> end [label="no more SMs"]
enter_map_pdo -> map_pdo next -> zero_count [label="next SM"]
enter_map_pdo -> end zero_count -> next [label="no PDOs"]
map_pdo -> map_pdo zero_count -> add_pdo [label="map first PDO", weight=5]
map_pdo -> error add_pdo -> add_pdo [label="map next PDO"]
map_pdo -> pdo_count add_pdo -> set_count [label="no more PDOs", weight=5]
pdo_count -> pdo_count set_count -> next
pdo_count -> error
pdo_count -> enter_map_pdo
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment