From 944a8a8456b7cb2ba8ff29b74b671849080039f0 Mon Sep 17 00:00:00 2001
From: Florian Pose <fp@igh-essen.com>
Date: Mon, 5 Mar 2007 16:59:02 +0000
Subject: [PATCH] Improved mapping FSM graph.

---
 documentation/graphs/fsm_pdo_mapping.dot | 23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

diff --git a/documentation/graphs/fsm_pdo_mapping.dot b/documentation/graphs/fsm_pdo_mapping.dot
index a2ba7552..030eb870 100644
--- a/documentation/graphs/fsm_pdo_mapping.dot
+++ b/documentation/graphs/fsm_pdo_mapping.dot
@@ -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
 }
-- 
GitLab