diff options
| author | HiFiPhile <[email protected]> | 2024-05-18 23:10:55 +0200 |
|---|---|---|
| committer | Andrew Leech <[email protected]> | 2024-05-27 20:35:35 +1000 |
| commit | a9745c9818da85a0b31ef04c556530a3bef18ec1 (patch) | |
| tree | 99a67917069a5c98e8ef1ec572c69f1c6b9fea1c /src/device/usbd.h | |
| parent | 8f0459c89e61dfb50a2da73dd6935f6e317b50ac (diff) | |
Fix tud_sof_cb_enable() return type.
Diffstat (limited to 'src/device/usbd.h')
| -rw-r--r-- | src/device/usbd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device/usbd.h b/src/device/usbd.h index cba94fdae..e439dd961 100644 --- a/src/device/usbd.h +++ b/src/device/usbd.h @@ -98,7 +98,7 @@ bool tud_disconnect(void); bool tud_connect(void); // Enable or disable the Start Of Frame callback support -bool tud_sof_cb_enable(bool en); +void tud_sof_cb_enable(bool en); // Carry out Data and Status stage of control transfer // - If len = 0, it is equivalent to sending status only |
