diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-09-18 11:18:02 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-09-18 11:18:02 -0600 |
commit | 4469398272d78adb81968178276180f16cc8e647 (patch) | |
tree | c360226922c543a5d2fd985ca1e078bb8a603f72 /usb_common.h | |
parent | 05ce08877ff420ca9fc77599dd947ff610d02cb0 (diff) |
fixes for arm?
Diffstat (limited to 'usb_common.h')
-rw-r--r-- | usb_common.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usb_common.h b/usb_common.h index a6006fa..3b45246 100644 --- a/usb_common.h +++ b/usb_common.h @@ -7,6 +7,8 @@ #ifndef _USB_COMMON_H_ #define _USB_COMMON_H_ +#include "coroutine.h" + /* Strings ********************************************************************/ enum { @@ -25,7 +27,9 @@ enum { /* Globals ********************************************************************/ extern uint8_t cfgnum_std; -void usb_common_init(void); +void usb_common_earlyinit(void); +void usb_common_lateinit(void); +COROUTINE usb_common_cr(void *arg); /* Main utilities *************************************************************/ |