Ignore:
Timestamp:
2017-12-21T09:03:55Z (6 years ago)
Author:
Petr Mánek <petr.manek@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ad2a8b1
Parents:
cec130b
Message:

usbdiag: added interrupt endpoint tests, printing tmon device path

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/drv/include/usbdiag_iface.h

    rcec130b re9d600c2  
    4545async_sess_t *usbdiag_connect(devman_handle_t);
    4646void usbdiag_disconnect(async_sess_t*);
     47int usbdiag_stress_intr_in(async_exch_t*, int, size_t);
     48int usbdiag_stress_intr_out(async_exch_t*, int, size_t);
    4749int usbdiag_stress_bulk_in(async_exch_t*, int, size_t);
    4850int usbdiag_stress_bulk_out(async_exch_t*, int, size_t);
     
    5052/** USB diagnostic device communication interface. */
    5153typedef struct {
     54        int (*stress_intr_in)(ddf_fun_t*, int, size_t);
     55        int (*stress_intr_out)(ddf_fun_t*, int, size_t);
    5256        int (*stress_bulk_in)(ddf_fun_t*, int, size_t);
    5357        int (*stress_bulk_out)(ddf_fun_t*, int, size_t);
Note: See TracChangeset for help on using the changeset viewer.