tools/main.cpp
changeset 960 36e460ffbb5e
parent 957 ed5ac2e83495
child 965 1aee4aa1def3
--- a/tools/main.cpp	Thu Jun 05 15:58:25 2008 +0000
+++ b/tools/main.cpp	Fri Jun 06 08:12:34 2008 +0000
@@ -39,6 +39,7 @@
         << "  list (ls, slaves)  List all slaves (former 'lsec')." << endl
         << "  master             Show master information." << endl
         << "  pdos               List Pdo mapping of given slaves." << endl
+        << "  state              Request slave state(s)." << endl
         << "  xml                Generate slave information xml." << endl
 		<< "Global options:" << endl
         << "  --master  -m <master>  Index of the master to use. Default: "
@@ -162,6 +163,8 @@
             master.showMaster();
         } else if (command == "pdos") {
             master.listPdos(slavePosition);
+        } else if (command == "state") {
+            master.requestStates(slavePosition, commandArgs);
         } else if (command == "xml") {
             master.generateXml(slavePosition);
         } else {