# HG changeset patch
# User Florian Pose <fp@igh-essen.com>
# Date 1173113942 0
# Node ID 3c628bb7f68bc13ed8c4ec2570307fac1f3d800f
# Parent  b777e26367c56ac426d5d26bdc51e2008a5f5987
Improved mapping FSM graph.

diff -r b777e26367c5 -r 3c628bb7f68b documentation/graphs/fsm_pdo_mapping.dot
--- a/documentation/graphs/fsm_pdo_mapping.dot	Mon Mar 05 15:50:30 2007 +0000
+++ b/documentation/graphs/fsm_pdo_mapping.dot	Mon Mar 05 16:59:02 2007 +0000
@@ -1,18 +1,19 @@
+
+/* $Id$ */
+
 digraph pdomapping {
     size="7,9"
     center=1
 	ratio=fill
 
-    enter_map_pdo [shape=point,label=""]
+    next [shape=point,label=""]
 
-    start -> enter_map_pdo
-    enter_map_pdo -> pdo_count
-    enter_map_pdo -> map_pdo
-    enter_map_pdo -> end
-    map_pdo -> map_pdo
-    map_pdo -> error
-    map_pdo -> pdo_count
-    pdo_count -> pdo_count
-    pdo_count -> error
-    pdo_count -> enter_map_pdo
+    start -> next [label="first SM"]
+    next -> end [label="no more SMs"]
+    next -> zero_count [label="next SM"]
+    zero_count -> next [label="no PDOs"]
+    zero_count -> add_pdo [label="map first PDO", weight=5]
+    add_pdo -> add_pdo [label="map next PDO"]
+    add_pdo -> set_count [label="no more PDOs", weight=5]
+    set_count -> next
 }