summaryrefslogtreecommitdiff
path: root/demos
diff options
context:
space:
mode:
authorhathach <[email protected]>2013-04-10 02:34:40 +0700
committerhathach <[email protected]>2013-04-10 02:34:40 +0700
commit2d7fbb5153dcbeedf01378d1a02b8fe6e4ed400f (patch)
treec8e685e6e060d086a16c0ed3ad1c35230a8f7fa3 /demos
parente14aa4197d290fc7f294d42d4886fb5892c9f360 (diff)
change keyboard_app.c & mouse_app.c from polling API to interrupt-based (callback isr)
and using OSAL for task-base demo - fix ehci error with XFER_COMPLETE callback to usbh_isr, TD need to be freed & unlink before invoking callback - fix bug in usbh.c set device state to CONFIGURED right after SET_CONFIGURE control xfer
Diffstat (limited to 'demos')
-rw-r--r--demos/host/keyboard_app.c121
-rw-r--r--demos/host/keyboard_app.h8
-rw-r--r--demos/host/main.c4
-rw-r--r--demos/host/mouse_app.c88
-rw-r--r--demos/host/mouse_app.h9
5 files changed, 138 insertions, 92 deletions
diff --git a/demos/host/keyboard_app.c b/demos/host/keyboard_app.c
index cb3f569ff..3b4e0beb4 100644
--- a/demos/host/keyboard_app.c
+++ b/demos/host/keyboard_app.c
@@ -39,84 +39,89 @@
// INCLUDE
//--------------------------------------------------------------------+
#include "keyboard_app.h"
+
//--------------------------------------------------------------------+
// MACRO CONSTANT TYPEDEF
//--------------------------------------------------------------------+
+#define QUEUE_KEYBOARD_REPORT_DEPTH 5
//--------------------------------------------------------------------+
// INTERNAL OBJECT & FUNCTION DECLARATION
//--------------------------------------------------------------------+
-tusb_keyboard_report_t keyboard_report TUSB_CFG_ATTR_USBRAM;
+static tusb_keyboard_report_t usb_keyboard_report TUSB_CFG_ATTR_USBRAM;
-//--------------------------------------------------------------------+
-// IMPLEMENTATION
-//--------------------------------------------------------------------+
+OSAL_QUEUE_DEF(queue_kbd_report, QUEUE_KEYBOARD_REPORT_DEPTH, tusb_keyboard_report_t);
+static osal_queue_handle_t q_kbd_report_hdl;
// only convert a-z (case insensitive) + 0-9
static inline uint8_t keycode_to_ascii(uint8_t keycode) ATTR_CONST ATTR_ALWAYS_INLINE;
-static inline uint8_t keycode_to_ascii(uint8_t keycode)
+
+//--------------------------------------------------------------------+
+// tinyusb callback (ISR context)
+//--------------------------------------------------------------------+
+void tusbh_hid_keyboard_isr(uint8_t dev_addr, uint8_t instance_num, tusb_event_t event)
{
- return
- ( KEYBOARD_KEYCODE_a <= keycode && keycode <= KEYBOARD_KEYCODE_z) ? ( (keycode - KEYBOARD_KEYCODE_a) + 'a' ) :
- ( KEYBOARD_KEYCODE_1 <= keycode && keycode < KEYBOARD_KEYCODE_0) ? ( (keycode - KEYBOARD_KEYCODE_1) + '1' ) :
- ( KEYBOARD_KEYCODE_0 == keycode) ? '0' : 'x';
-}
+ switch(event)
+ {
+ case TUSB_EVENT_INTERFACE_OPEN: // application set-up
+ osal_queue_flush(q_kbd_report_hdl);
+ tusbh_hid_keyboard_get_report(dev_addr, instance_num, (uint8_t*) &usb_keyboard_report); // first report
+ break;
+
+ case TUSB_EVENT_INTERFACE_CLOSE: // application tear-down
+ break;
+
+ case TUSB_EVENT_XFER_COMPLETE:
+ osal_queue_send(q_kbd_report_hdl, &usb_keyboard_report);
+ tusbh_hid_keyboard_get_report(dev_addr, instance_num, (uint8_t*) &usb_keyboard_report);
+ break;
+
+ case TUSB_EVENT_XFER_ERROR:
+ tusbh_hid_keyboard_get_report(dev_addr, instance_num, (uint8_t*) &usb_keyboard_report); // ignore & continue
+ break;
+
+ default :
+ break;
+ }
+}
//--------------------------------------------------------------------+
-// tinyusb callback (ISR context)
+// APPLICATION
//--------------------------------------------------------------------+
-//void tusbh_hid_keyboard_isr(uint8_t dev_addr, uint8_t instance_num, tusb_event_t event)
-//{
-// switch(event)
-// {
-// case TUSB_EVENT_INTERFACE_OPEN:
-// tusbh_hid_keyboard_get_report(dev_addr, 0, (uint8_t*) &keyboard_report); // first report
-// break;
-//
-// case TUSB_EVENT_INTERFACE_CLOSE:
-//
-// break;
-//
-// case TUSB_EVENT_XFER_COMPLETE:
-// tusbh_hid_keyboard_get_report(dev_addr, 0, (uint8_t*) &keyboard_report);
-// break;
-//
-// case TUSB_EVENT_XFER_ERROR:
-// break;
-//
-// default:
-// }
-//}
+void keyboard_app_init(void)
+{
+ q_kbd_report_hdl = osal_queue_create(&queue_kbd_report);
+
+ // TODO keyboard_app_task create
+}
-void keyboard_app_task(void)
+//------------- main task -------------//
+OSAL_TASK_DECLARE( keyboard_app_task )
{
- for (uint8_t dev_addr = 1; dev_addr <= TUSB_CFG_HOST_DEVICE_MAX; dev_addr++)
- {
- if ( tusbh_hid_keyboard_is_supported(dev_addr) )
- {
- switch (tusbh_hid_keyboard_status(dev_addr,0))
- {
- case TUSB_INTERFACE_STATUS_READY:
- case TUSB_INTERFACE_STATUS_ERROR: // skip error, get next key
- tusbh_hid_keyboard_get_report(dev_addr, 0, (uint8_t*) &keyboard_report);
- break;
+ tusb_error_t error;
+ tusb_keyboard_report_t kbd_report;
- case TUSB_INTERFACE_STATUS_COMPLETE:
- // TODO buffer in queue
- for(uint8_t i=0; i<6; i++)
- {
- if ( keyboard_report.keycode[i] != 0 )
- printf("%c", keycode_to_ascii(keyboard_report.keycode[i]));
- }
- memclr_(&keyboard_report, sizeof(tusb_keyboard_report_t)); // TODO use callback to synchronize
- tusbh_hid_keyboard_get_report(dev_addr, 0, (uint8_t*) &keyboard_report);
- break;
+ OSAL_TASK_LOOP_BEGIN
- case TUSB_INTERFACE_STATUS_BUSY:
- break;
+ osal_queue_receive(q_kbd_report_hdl, &kbd_report, OSAL_TIMEOUT_WAIT_FOREVER, &error);
- }
- }
+ for(uint8_t i=0; i<6; i++)
+ {
+ if ( kbd_report.keycode[i] != 0 )
+ printf("%c", keycode_to_ascii(kbd_report.keycode[i]));
}
+
+ OSAL_TASK_LOOP_END
+}
+
+//--------------------------------------------------------------------+
+// HELPER
+//--------------------------------------------------------------------+
+static inline uint8_t keycode_to_ascii(uint8_t keycode)
+{
+ return
+ ( KEYBOARD_KEYCODE_a <= keycode && keycode <= KEYBOARD_KEYCODE_z) ? ( (keycode - KEYBOARD_KEYCODE_a) + 'a' ) :
+ ( KEYBOARD_KEYCODE_1 <= keycode && keycode < KEYBOARD_KEYCODE_0) ? ( (keycode - KEYBOARD_KEYCODE_1) + '1' ) :
+ ( KEYBOARD_KEYCODE_0 == keycode) ? '0' : 'x';
}
diff --git a/demos/host/keyboard_app.h b/demos/host/keyboard_app.h
index f7a257292..23109ca51 100644
--- a/demos/host/keyboard_app.h
+++ b/demos/host/keyboard_app.h
@@ -51,12 +51,16 @@
#ifndef _TUSB_KEYBOARD_APP_H_
#define _TUSB_KEYBOARD_APP_H_
+#include <stdint.h>
+#include <stdbool.h>
+
+#include "boards/board.h"
+#include "tusb.h"
+
#ifdef __cplusplus
extern "C" {
#endif
-#include "boards/board.h"
-#include "tusb.h"
#ifdef __cplusplus
}
diff --git a/demos/host/main.c b/demos/host/main.c
index bb2084a59..7b935670c 100644
--- a/demos/host/main.c
+++ b/demos/host/main.c
@@ -21,6 +21,10 @@ int main(void)
board_init();
tusb_init();
+ //------------- application task init -------------//
+ keyboard_app_init();
+ mouse_app_init();
+
printf("reset\n");
while (1)
{
diff --git a/demos/host/mouse_app.c b/demos/host/mouse_app.c
index b3df965bc..d1c37e245 100644
--- a/demos/host/mouse_app.c
+++ b/demos/host/mouse_app.c
@@ -39,50 +39,80 @@
// INCLUDE
//--------------------------------------------------------------------+
#include "mouse_app.h"
+
//--------------------------------------------------------------------+
// MACRO CONSTANT TYPEDEF
//--------------------------------------------------------------------+
+#define QUEUE_MOUSE_REPORT_DEPTH 5
//--------------------------------------------------------------------+
// INTERNAL OBJECT & FUNCTION DECLARATION
//--------------------------------------------------------------------+
-tusb_mouse_report_t mouse_report TUSB_CFG_ATTR_USBRAM;
+static tusb_mouse_report_t usb_mouse_report TUSB_CFG_ATTR_USBRAM;
+
+OSAL_QUEUE_DEF(queue_mouse_report, QUEUE_MOUSE_REPORT_DEPTH, tusb_mouse_report_t);
+static osal_queue_handle_t q_mouse_report_hdl;
//--------------------------------------------------------------------+
-// IMPLEMENTATION
+// tinyusb callback (ISR context)
//--------------------------------------------------------------------+
-void mouse_app_task(void)
+void tusbh_hid_mouse_isr(uint8_t dev_addr, uint8_t instance_num, tusb_event_t event)
{
- for (uint8_t dev_addr = 1; dev_addr <= TUSB_CFG_HOST_DEVICE_MAX; dev_addr++)
+ switch(event)
{
- if ( tusbh_hid_mouse_is_supported(dev_addr) )
- {
- switch (tusbh_hid_mouse_status(dev_addr,0))
- {
- case TUSB_INTERFACE_STATUS_READY:
- case TUSB_INTERFACE_STATUS_ERROR: // skip error, get next key
- tusbh_hid_mouse_get_report(dev_addr, 0, (uint8_t*) &mouse_report);
- break;
+ case TUSB_EVENT_INTERFACE_OPEN: // application set-up
+ osal_queue_flush(q_mouse_report_hdl);
+ tusbh_hid_mouse_get_report(dev_addr, instance_num, (uint8_t*) &usb_mouse_report); // first report
+ break;
+
+ case TUSB_EVENT_INTERFACE_CLOSE: // application tear-down
+
+ break;
+
+ case TUSB_EVENT_XFER_COMPLETE:
+ osal_queue_send(q_mouse_report_hdl, &usb_mouse_report);
+ tusbh_hid_mouse_get_report(dev_addr, instance_num, (uint8_t*) &usb_mouse_report);
+ break;
+
+ case TUSB_EVENT_XFER_ERROR:
+ tusbh_hid_mouse_get_report(dev_addr, instance_num, (uint8_t*) &usb_mouse_report); // ignore & continue
+ break;
+
+ default :
+ break;
+ }
+}
- case TUSB_INTERFACE_STATUS_COMPLETE:
- // TODO buffer in queue
- if ( mouse_report.buttons || mouse_report.x || mouse_report.y)
- {
- printf("buttons: %c%c%c (x, y) = (%d, %d)\n",
- mouse_report.buttons & HID_MOUSEBUTTON_LEFT ? 'L' : '-',
- mouse_report.buttons & HID_MOUSEBUTTON_MIDDLE ? 'M' : '-',
- mouse_report.buttons & HID_MOUSEBUTTON_RIGHT ? 'R' : '-',
- mouse_report.x, mouse_report.y);
- }
+//--------------------------------------------------------------------+
+// APPLICATION
+// NOTICE: MOUSE REPORT IS NOT CORRECT UNTIL A DECENT HID PARSER IS
+// IMPLEMENTED, MEANWHILE IT CAN MISS DISPLAY BUTTONS OR X,Y etc
+//--------------------------------------------------------------------+
+void mouse_app_init(void)
+{
+ q_mouse_report_hdl = osal_queue_create(&queue_mouse_report);
- memclr_(&mouse_report, sizeof(tusb_mouse_report_t)); // TODO use callback to synchronize
- tusbh_hid_mouse_get_report(dev_addr, 0, (uint8_t*) &mouse_report);
- break;
+ // TODO mouse_app_task create
+}
- case TUSB_INTERFACE_STATUS_BUSY:
- break;
+//------------- main task -------------//
+OSAL_TASK_DECLARE( mouse_app_task )
+{
+ tusb_error_t error;
+ tusb_mouse_report_t mouse_report;
- }
- }
+ OSAL_TASK_LOOP_BEGIN
+
+ osal_queue_receive(q_mouse_report_hdl, &mouse_report, OSAL_TIMEOUT_WAIT_FOREVER, &error);
+
+ if ( mouse_report.buttons || mouse_report.x || mouse_report.y)
+ {
+ printf("buttons: %c%c%c (x, y) = (%d, %d)\n",
+ mouse_report.buttons & HID_MOUSEBUTTON_LEFT ? 'L' : '-',
+ mouse_report.buttons & HID_MOUSEBUTTON_MIDDLE ? 'M' : '-',
+ mouse_report.buttons & HID_MOUSEBUTTON_RIGHT ? 'R' : '-',
+ mouse_report.x, mouse_report.y);
}
+
+ OSAL_TASK_LOOP_END
}
diff --git a/demos/host/mouse_app.h b/demos/host/mouse_app.h
index 373aa1f07..6d494c006 100644
--- a/demos/host/mouse_app.h
+++ b/demos/host/mouse_app.h
@@ -51,14 +51,17 @@
#ifndef _TUSB_MOUSE_APP_H_
#define _TUSB_MOUSE_APP_H_
-#ifdef __cplusplus
- extern "C" {
-#endif
+#include <stdint.h>
+#include <stdbool.h>
#include "boards/board.h"
#include "tusb.h"
#ifdef __cplusplus
+ extern "C" {
+#endif
+
+#ifdef __cplusplus
}
#endif