tool/CommandMaster.cpp
changeset 1956 f461dc0d145a
parent 1869 14f634f5b613
child 1962 df9b00bda8dc
equal deleted inserted replaced
1955:09c2bd224d3f 1956:f461dc0d145a
   158                 cout << endl
   158                 cout << endl
   159                     << "      Tx rate [KByte/s]:   "
   159                     << "      Tx rate [KByte/s]:   "
   160                     << setprecision(1) << fixed;
   160                     << setprecision(1) << fixed;
   161                 for (j = 0; j < EC_RATE_COUNT; j++) {
   161                 for (j = 0; j < EC_RATE_COUNT; j++) {
   162                     cout << setw(5)
   162                     cout << setw(5)
   163                         << data.devices[i].tx_byte_rates[j] / 1024000.0;
   163                         << data.devices[i].tx_byte_rates[j] / 1024.0;
   164                     if (j < EC_RATE_COUNT - 1) {
   164                     if (j < EC_RATE_COUNT - 1) {
   165                         cout << " ";
   165                         cout << " ";
   166                     }
   166                     }
   167                 }
   167                 }
   168                 cout << endl
   168                 cout << endl