ukbd.c 1.9 KB
Newer Older
还_没_想_好's avatar
还_没_想_好 已提交
1
/*
2
 * Copyright (c) 2006-2021, RT-Thread Development Team
还_没_想_好's avatar
还_没_想_好 已提交
3
 *
4
 * SPDX-License-Identifier: Apache-2.0
还_没_想_好's avatar
还_没_想_好 已提交
5 6 7 8 9 10 11 12 13 14 15 16
 *
 * Change Logs:
 * Date           Author       Notes
 * 2012-01-03     Yi Qiu      first version
 */

#include <rtthread.h>
#include <drivers/usb_host.h>
#include "hid.h"

#if defined(RT_USBH_HID) && defined(RT_USBH_HID_KEYBOARD)

17
static struct uprotocal kbd_protocal;
还_没_想_好's avatar
还_没_想_好 已提交
18 19 20 21

static rt_err_t rt_usbh_hid_kbd_callback(void* arg)
{
    int int1, int2;
22 23
    struct uhid* hid;

还_没_想_好's avatar
还_没_想_好 已提交
24 25 26 27 28 29 30
    hid = (struct uhid*)arg;

    int1 = *(rt_uint32_t*)hid->buffer;
    int2 = *(rt_uint32_t*)(&hid->buffer[4]);

    if(int1 != 0 || int2 != 0)
    {
31
        RT_DEBUG_LOG(RT_DEBUG_USB, ("key down 0x%x, 0x%x\n", int1, int2));
还_没_想_好's avatar
还_没_想_好 已提交
32
    }
33

还_没_想_好's avatar
还_没_想_好 已提交
34 35 36
    return RT_EOK;
}

W
Wayne 已提交
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
static rt_thread_t kbd_thread;
static void kbd_task(void* param)
{
    struct uhintf* intf = (struct uhintf*)param;
    while (1)
    {
        if (rt_usb_hcd_pipe_xfer(intf->device->hcd, ((struct uhid*)intf->user_data)->pipe_in,
            ((struct uhid*)intf->user_data)->buffer, ((struct uhid*)intf->user_data)->pipe_in->ep.wMaxPacketSize,
            USB_TIMEOUT_BASIC) == 0)
        {
            break;
        }

        rt_usbh_hid_kbd_callback(intf->user_data);
    }
}


还_没_想_好's avatar
还_没_想_好 已提交
55 56
static rt_err_t rt_usbh_hid_kbd_init(void* arg)
{
W
Wayne 已提交
57
    struct uhintf* intf = (struct uhintf*)arg;
还_没_想_好's avatar
还_没_想_好 已提交
58

59 60
    RT_ASSERT(intf != RT_NULL);

还_没_想_好's avatar
还_没_想_好 已提交
61 62 63 64
    rt_usbh_hid_set_protocal(intf, 0);

    rt_usbh_hid_set_idle(intf, 10, 0);

W
Wayne 已提交
65 66 67 68
    RT_DEBUG_LOG(RT_DEBUG_USB, ("start usb keyboard\n"));

    kbd_thread = rt_thread_create("kbd0", kbd_task, intf, 1024, 8, 100);
    rt_thread_startup(kbd_thread);
还_没_想_好's avatar
还_没_想_好 已提交
69 70 71 72 73 74

    return RT_EOK;
}

/**
 * This function will define the hid keyboard protocal, it will be register to the protocal list.
75
 *
还_没_想_好's avatar
还_没_想_好 已提交
76 77 78 79 80 81 82 83 84 85 86 87 88 89
 * @return the keyboard protocal structure.
 */
uprotocal_t rt_usbh_hid_protocal_kbd(void)
{
    kbd_protocal.pro_id = USB_HID_KEYBOARD;

    kbd_protocal.init = rt_usbh_hid_kbd_init;
    kbd_protocal.callback = rt_usbh_hid_kbd_callback;

    return &kbd_protocal;
}

#endif