Changeset a8723748 in mainline for uspace/app/tmon/main.c
- Timestamp:
- 2017-12-15T10:55:09Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 64d138b
- Parents:
- 837d53d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tmon/main.c
r837d53d ra8723748 52 52 } 53 53 54 printf("The number is %d.\n", usb_diag_test(0)); 54 int out; 55 const int rc = usb_diag_test(0, &out); 56 if (rc) { 57 printf("Error: %d\n", rc); 58 } else { 59 printf("The number is %d.\n", out); 60 } 55 61 56 62 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.