diff -r 167ae3e76cc7 -r 2962baf7e6d1 tools/main.cpp --- a/tools/main.cpp Mon Jun 09 13:24:16 2008 +0000 +++ b/tools/main.cpp Mon Jun 09 13:45:22 2008 +0000 @@ -41,6 +41,7 @@ << " sdos List Sdo dictionaries." << endl << " sdo_download (sd) Write an Sdo entry." << endl << " sdo_upload (su) Read an Sdo entry." << endl + << " sii_read (sr) Output a slave's SII contents." << endl << " state Request slave states." << endl << " xml Generate slave information xmls." << endl << "Global options:" << endl @@ -183,6 +184,8 @@ master.sdoDownload(slavePosition, dataTypeStr, commandArgs); } else if (command == "sdo_upload" || command == "su") { master.sdoUpload(slavePosition, dataTypeStr, commandArgs); + } else if (command == "sii_read" || command == "sr") { + master.siiRead(slavePosition); } else if (command == "state") { master.requestStates(slavePosition, commandArgs); } else if (command == "xml") {