Ignore:
Timestamp:
2018-01-07T01:01:42Z (6 years ago)
Author:
Ondřej Hlavatý <aearsis@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
63431db
Parents:
9efad54
git-author:
Ondřej Hlavatý <aearsis@…> (2018-01-07 01:01:41)
git-committer:
Ondřej Hlavatý <aearsis@…> (2018-01-07 01:01:42)
Message:

usbhost: manage endpoints by library + get/set_toggle → reset_toggle

That simplifies things A LOT. Now you can find endpoints for device in
an array inside device. This array is managed automatically in
register/unregister endpoint. HC drivers still needs to write to it when
setting up/tearing down the device.

Sorry for these two changes being in one commit, but splitting them
would be simply more work for no benefit.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usbhost/include/usb/host/endpoint.h

    r9efad54 r56257ba  
    6262        /** Reserved bandwidth. */
    6363        size_t bandwidth;
    64         /** Value of the toggle bit. */
     64        /** Value of the toggle bit. Untouched by the library. */
    6565        unsigned toggle:1;
    6666        /** The currently active transfer batch. Write using methods, read under guard. */
     
    107107void endpoint_abort(endpoint_t *);
    108108
    109 /* Manage the toggle bit */
    110 extern int endpoint_toggle_get(endpoint_t *);
    111 extern void endpoint_toggle_set(endpoint_t *, bool);
    112 
    113109/* Calculate bandwidth */
    114110ssize_t endpoint_count_bw(endpoint_t *, size_t);
Note: See TracChangeset for help on using the changeset viewer.