tool/CommandConfig.cpp
branchstable-1.4
changeset 1686 e206f4485f60
parent 1188 3b4e82d9904b
--- a/tool/CommandConfig.cpp	Mon Dec 29 14:10:27 2008 +0000
+++ b/tool/CommandConfig.cpp	Mon Dec 29 15:19:16 2008 +0000
@@ -47,8 +47,8 @@
     	<< "|          hexadecimal)." << endl
     	<< "\\- Alias address and relative position (both decimal)." << endl
     	<< endl
-    	<< "With the --verbose option given, the configured Pdos and" << endl
-    	<< "Sdos are output in addition." << endl
+    	<< "With the --verbose option given, the configured PDOs and" << endl
+    	<< "SDOs are output in addition." << endl
         << endl
         << "Configuration selection:" << endl
         << "  Slave configurations can be selected with" << endl
@@ -139,13 +139,13 @@
                 for (k = 0; k < configIter->syncs[j].pdo_count; k++) {
                     m.getConfigPdo(&pdo, configIter->config_index, j, k);
 
-                    cout << "  Pdo 0x" << hex << setw(4) << pdo.index << endl;
+                    cout << "  PDO 0x" << hex << setw(4) << pdo.index << endl;
 
                     for (l = 0; l < pdo.entry_count; l++) {
                         m.getConfigPdoEntry(&entry,
                                 configIter->config_index, j, k, l);
 
-                        cout << "    Pdo entry 0x" << hex << setfill('0')
+                        cout << "    PDO entry 0x" << hex << setfill('0')
                             << setw(4) << entry.index << ":"
                             << setw(2) << (unsigned int) entry.subindex
                             << ", " << dec << setfill(' ')
@@ -156,7 +156,7 @@
             }
         }
 
-        cout << "Sdo configuration:" << endl;
+        cout << "SDO configuration:" << endl;
         if (configIter->sdo_count) {
             for (j = 0; j < configIter->sdo_count; j++) {
                 m.getConfigSdo(&sdo, configIter->config_index, j);