| 1283 | |
| 1284 | |
| 1285 | void cliFunc_usbInitTime( char* args ) |
| 1286 | { |
| 1287 | // Calculate overall USB initialization time |
| 1288 | // XXX A protocol analyzer will be more accurate, however, this is built-in and easier to collect data |
| 1289 | print(NL); |
| 1290 | info_print("USB Init Time: "); |
| 1291 | printInt32( USBInit_TimeEnd - USBInit_TimeStart ); |
| 1292 | print(" ms - "); |
| 1293 | printInt16( USBInit_Ticks ); |
| 1294 | print(" ticks"); |
| 1295 | } |
| 1296 | |
| 1297 | |
| 1298 | void cliFunc_usbErrors( char* args ) |
nothing calls this directly
no test coverage detected
searching dependent graphs…