tool/CommandSlaves.cpp
changeset 1419 8fc38c37d86e
parent 1379 cbceb0e2f2a0
child 1420 5eb814732c46
equal deleted inserted replaced
1418:8b10ba4d3302 1419:8fc38c37d86e
   266         cout << "DL information:" << endl
   266         cout << "DL information:" << endl
   267             << "  FMMU bit operation: "
   267             << "  FMMU bit operation: "
   268             << (si->fmmu_bit ? "yes" : "no") << endl
   268             << (si->fmmu_bit ? "yes" : "no") << endl
   269             << "  Distributed clocks: ";
   269             << "  Distributed clocks: ";
   270         if (si->dc_supported) {
   270         if (si->dc_supported) {
   271             cout << "yes (";
   271             if (si->has_dc_system_time) {
   272             switch (si->dc_range) {
   272                 cout << "yes, ";
   273                 case EC_DC_32:
   273                 switch (si->dc_range) {
   274                     cout << "32 bit";
   274                     case EC_DC_32:
   275                     break;
   275                         cout << "32 bit";
   276                 case EC_DC_64:
   276                         break;
   277                     cout << "64 bit";
   277                     case EC_DC_64:
   278                     break;
   278                         cout << "64 bit";
   279                 default:
   279                         break;
   280                     cout << "???";
   280                     default:
   281             }
   281                         cout << "???";
   282             cout << ")";
   282                 }
       
   283             } else {
       
   284                 cout << "yes, delay measurement only";
       
   285             }
   283         } else {
   286         } else {
   284             cout << "no";
   287             cout << "no";
   285         }
   288         }
   286         cout << endl;
   289         cout << endl;
   287 
   290