summaryrefslogtreecommitdiff
path: root/tinyusb/host/usbh.c
diff options
context:
space:
mode:
authorhathach <[email protected]>2013-07-01 10:35:37 +0700
committerhathach <[email protected]>2013-07-01 10:35:37 +0700
commita4f7dc1105f2a2f9aa27fdef810024eebbb7f2ba (patch)
tree33eb906a997038d36ac32d68e9a3dcac1103c05d /tinyusb/host/usbh.c
parenta943cce99110eabeaea98a390a41842a15de715f (diff)
add & pass a first few test for cdc host
implement cdch_open_subtask
Diffstat (limited to 'tinyusb/host/usbh.c')
-rw-r--r--tinyusb/host/usbh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyusb/host/usbh.c b/tinyusb/host/usbh.c
index fa366cb66..71a994443 100644
--- a/tinyusb/host/usbh.c
+++ b/tinyusb/host/usbh.c
@@ -298,7 +298,7 @@ void usbh_device_unplugged_isr(uint8_t hostid)
//--------------------------------------------------------------------+
// ENUMERATION TASK
//--------------------------------------------------------------------+
-tusb_error_t enumeration_body_subtask(void);
+static tusb_error_t enumeration_body_subtask(void);
// To enable the TASK_ASSERT style (quick return on false condition) in a real RTOS, a task must act as a wrapper
// and is used mainly to call subtasks. Within a subtask return statement can be called freely, the task with