| 674 | } |
| 675 | |
| 676 | void udd_set_setup_callback(ep_callback_t cb, void *cb_data) { |
| 677 | _cb_func = cb; |
| 678 | _cb_data = cb_data; |
| 679 | udd_g_ctrlreq.over_under_run = cb_wrapper; |
| 680 | } |
| 681 | |
| 682 | int usb_ep0_tx(void *buf, size_t len, size_t reqlen, ep_callback_t cb, void *cb_data) { |
| 683 | if (len > reqlen) |
no outgoing calls
no test coverage detected
searching dependent graphs…