summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--demos/host/src/main.c82
-rw-r--r--tests/test/host/usbh/test_usbh.c10
-rw-r--r--tinyusb/host/ehci/ehci.c3
3 files changed, 59 insertions, 36 deletions
diff --git a/demos/host/src/main.c b/demos/host/src/main.c
index a88573fb3..c4f318de1 100644
--- a/demos/host/src/main.c
+++ b/demos/host/src/main.c
@@ -64,19 +64,38 @@
//--------------------------------------------------------------------+
// INTERNAL OBJECT & FUNCTION DECLARATION
//--------------------------------------------------------------------+
-void print_greeting(void);
-
OSAL_TASK_FUNCTION( led_blinking_task ) (void* p_task_para);
OSAL_TASK_DEF(led_blinking_task_def, "led blinking", led_blinking_task, 128, LED_BLINKING_APP_TASK_PRIO);
+void print_greeting(void);
+static inline void wait_blocking_ms(uint32_t ms);
+
//--------------------------------------------------------------------+
// IMPLEMENTATION
//--------------------------------------------------------------------+
+#if TUSB_CFG_OS == TUSB_OS_NONE
+// like a real RTOS, this function is a main loop invoking each task in application and never return
+void os_none_start_scheduler(void)
+{
+ while (1)
+ {
+ tusb_task_runner();
+ keyboard_app_task(NULL);
+ mouse_app_task(NULL);
+ led_blinking_task(NULL);
+ }
+}
+#endif
+
+
int main(void)
{
board_init();
+ // TODO blocking wait --> systick handler --> ...... freeRTOS hardfault
+ //wait_blocking_ms(1000); // wait a bit for power stable
+
// print_greeting(); TODO uart output before freeRTOS scheduler start will lead to hardfault
// find a way to fix this as tusb_init can output to uart when an error occurred
@@ -98,15 +117,7 @@ int main(void)
vTaskStartScheduler();
#elif TUSB_CFG_OS == TUSB_OS_NONE
- print_greeting();
-
- while (1)
- {
- tusb_task_runner();
- keyboard_app_task(NULL);
- mouse_app_task(NULL);
- led_blinking_task(NULL);
- }
+ os_none_start_scheduler();
#else
#error need to start RTOS schduler
#endif
@@ -122,6 +133,33 @@ int main(void)
}
//--------------------------------------------------------------------+
+// BLINKING TASK
+//--------------------------------------------------------------------+
+OSAL_TASK_FUNCTION( led_blinking_task ) (void* p_task_para)
+{
+ // task init, only executed exactly one time, real RTOS does not need this but none OS does
+ {
+ static bool is_init = false;
+ if (!is_init)
+ {
+ is_init = true;
+ print_greeting();
+ }
+ }
+
+ static uint32_t led_on_mask = 0;
+
+ OSAL_TASK_LOOP_BEGIN
+
+ osal_task_delay(1000);
+
+ board_leds(led_on_mask, 1 - led_on_mask);
+ led_on_mask = 1 - led_on_mask; // toggle
+
+ OSAL_TASK_LOOP_END
+}
+
+//--------------------------------------------------------------------+
// HELPER FUNCTION
//--------------------------------------------------------------------+
void print_greeting(void)
@@ -135,20 +173,14 @@ void print_greeting(void)
);
}
-OSAL_TASK_FUNCTION( led_blinking_task ) (void* p_task_para)
+static inline void wait_blocking_us(volatile uint32_t us)
{
- static uint32_t led_on_mask = 0;
-
-#if TUSB_CFG_OS != TUSB_OS_NONE // TODO abstract to approriate place
- print_greeting();
-#endif
-
- OSAL_TASK_LOOP_BEGIN
-
- osal_task_delay(1000);
-
- board_leds(led_on_mask, 1 - led_on_mask);
- led_on_mask = 1 - led_on_mask; // toggle
+ us *= (SystemCoreClock / 1000000) / 3;
+ while(us--);
+}
- OSAL_TASK_LOOP_END
+static inline void wait_blocking_ms(uint32_t ms)
+{
+ wait_blocking_us(ms * 1000);
}
+
diff --git a/tests/test/host/usbh/test_usbh.c b/tests/test/host/usbh/test_usbh.c
index 1058e54d6..6ec0ffcf3 100644
--- a/tests/test/host/usbh/test_usbh.c
+++ b/tests/test/host/usbh/test_usbh.c
@@ -111,16 +111,6 @@ void test_usbh_init_enum_queue_create_failed(void)
TEST_ASSERT_EQUAL(TUSB_ERROR_OSAL_QUEUE_FAILED, usbh_init());
}
-void test_usbh_init_reporter_taks_create_failed(void)
-{
- TEST_IGNORE();
-}
-
-void test_usbh_init_reporter_queue_create_failed(void)
-{
- TEST_IGNORE();
-}
-
void class_init_expect(void)
{
hidh_init_Expect();
diff --git a/tinyusb/host/ehci/ehci.c b/tinyusb/host/ehci/ehci.c
index cef713133..3c2c83f2b 100644
--- a/tinyusb/host/ehci/ehci.c
+++ b/tinyusb/host/ehci/ehci.c
@@ -482,7 +482,8 @@ void port_connect_status_change_isr(uint8_t hostid)
{
ehci_registers_t* const regs = get_operational_register(hostid);
- if (regs->portsc_bit.current_connect_status) // device plugged
+ // NOTE There is an sequence plug->unplug->…..-> plug if device is powering with pre-plugged device
+ if (regs->portsc_bit.current_connect_status)
{
usbh_device_plugged_isr(hostid);
}else // device unplugged