summaryrefslogtreecommitdiff
path: root/src/device/dcd.h
diff options
context:
space:
mode:
authorhathach <[email protected]>2019-03-30 02:26:15 +0700
committerhathach <[email protected]>2019-03-30 02:26:15 +0700
commit93a853cd5b5a7840536939d5a43c5ea3a0dcdfc3 (patch)
tree5937c57910ae79078ab9d729c3397916eac9d497 /src/device/dcd.h
parent28610198dfe70e98d3c2dcadb229f5ff12e2faf1 (diff)
usbd add connected, suspended, remote_wakeup
- remove use of osal_queue_reset
Diffstat (limited to 'src/device/dcd.h')
-rw-r--r--src/device/dcd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/device/dcd.h b/src/device/dcd.h
index f47c3714a..8dafef66d 100644
--- a/src/device/dcd.h
+++ b/src/device/dcd.h
@@ -48,7 +48,7 @@ typedef enum
DCD_EVENT_SETUP_RECEIVED,
DCD_EVENT_XFER_COMPLETE,
- USBD_EVT_FUNC_CALL
+ USBD_EVENT_FUNC_CALL
} dcd_eventid_t;
typedef struct ATTR_ALIGNED(4)
@@ -67,7 +67,7 @@ typedef struct ATTR_ALIGNED(4)
uint32_t len;
}xfer_complete;
- // USBD_EVT_FUNC_CALL
+ // USBD_EVENT_FUNC_CALL
struct {
void (*func) (void*);
void* param;