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
This commit is contained in:
@@ -39,21 +39,85 @@
|
||||
// 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;
|
||||
|
||||
//--------------------------------------------------------------------+
|
||||
// tinyusb callback (ISR context)
|
||||
//--------------------------------------------------------------------+
|
||||
void tusbh_hid_keyboard_isr(uint8_t dev_addr, uint8_t instance_num, tusb_event_t event)
|
||||
{
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------+
|
||||
// APPLICATION
|
||||
//--------------------------------------------------------------------+
|
||||
void keyboard_app_init(void)
|
||||
{
|
||||
q_kbd_report_hdl = osal_queue_create(&queue_kbd_report);
|
||||
|
||||
// TODO keyboard_app_task create
|
||||
}
|
||||
|
||||
//------------- main task -------------//
|
||||
OSAL_TASK_DECLARE( keyboard_app_task )
|
||||
{
|
||||
tusb_error_t error;
|
||||
tusb_keyboard_report_t kbd_report;
|
||||
|
||||
OSAL_TASK_LOOP_BEGIN
|
||||
|
||||
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
|
||||
@@ -61,62 +125,3 @@ static inline uint8_t keycode_to_ascii(uint8_t keycode)
|
||||
( KEYBOARD_KEYCODE_1 <= keycode && keycode < KEYBOARD_KEYCODE_0) ? ( (keycode - KEYBOARD_KEYCODE_1) + '1' ) :
|
||||
( KEYBOARD_KEYCODE_0 == keycode) ? '0' : 'x';
|
||||
}
|
||||
|
||||
|
||||
//--------------------------------------------------------------------+
|
||||
// tinyusb callback (ISR context)
|
||||
//--------------------------------------------------------------------+
|
||||
//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_task(void)
|
||||
{
|
||||
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;
|
||||
|
||||
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;
|
||||
|
||||
case TUSB_INTERFACE_STATUS_BUSY:
|
||||
break;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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
|
||||
}
|
||||
|
||||
@@ -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)
|
||||
{
|
||||
|
||||
@@ -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_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);
|
||||
}
|
||||
case TUSB_EVENT_INTERFACE_CLOSE: // application tear-down
|
||||
|
||||
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;
|
||||
break;
|
||||
|
||||
case TUSB_INTERFACE_STATUS_BUSY:
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------+
|
||||
// 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);
|
||||
|
||||
// TODO mouse_app_task create
|
||||
}
|
||||
|
||||
//------------- 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
|
||||
}
|
||||
|
||||
@@ -51,13 +51,16 @@
|
||||
#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
|
||||
|
||||
Reference in New Issue
Block a user