# HG changeset patch
# User Florian Pose <fp@igh-essen.com>
# Date 1488553235 -3600
# Node ID 5d7a83195c80e129fcd81dd6f0842a54438c0b1c
# Parent  dd32f74ee76ef95442b6f0470f9df5d4bb66edc5
Display alias adressing in graph.

diff -r dd32f74ee76e -r 5d7a83195c80 tool/CommandGraph.cpp
--- a/tool/CommandGraph.cpp	Fri Mar 03 13:55:01 2017 +0100
+++ b/tool/CommandGraph.cpp	Fri Mar 03 16:00:35 2017 +0100
@@ -120,9 +120,18 @@
     }
     cout << endl;
 
+    uint16_t alias = 0x0000;
+    uint16_t pos = 0;
+
     for (si = slaves.begin(); si != slaves.end(); si++) {
+        if (si->alias) {
+            alias = si->alias;
+            pos = 0;
+        }
+
         cout << "    slave" << si->position << " [shape=\"box\""
-            << ",label=\"" << si->position;
+            << ",label=\"" << si->position
+            << " / " << alias << ":" << pos;
         if (string(si->order).size())
             cout << "\\n" << si->order;
         if (si->dc_supported) {
@@ -188,6 +197,7 @@
         }
 
         cout << endl;
+        pos++;
     }
 
     cout << "}" << endl;