2013-01-08 22:40:58 +08:00
|
|
|
/*
|
|
|
|
* File : adk.h
|
|
|
|
* This file is part of RT-Thread RTOS
|
|
|
|
* COPYRIGHT (C) 2011, RT-Thread Development Team
|
|
|
|
*
|
2013-06-28 00:36:54 +08:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2013-01-08 22:40:58 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2011-12-12 Yi Qiu first version
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __HID_H__
|
|
|
|
#define __HID_H__
|
|
|
|
|
|
|
|
#include <rtthread.h>
|
|
|
|
|
|
|
|
struct uadkinst
|
|
|
|
{
|
|
|
|
upipe_t pipe_in;
|
|
|
|
upipe_t pipe_out;
|
|
|
|
|
|
|
|
struct rt_device device;
|
|
|
|
};
|
2014-03-04 08:59:53 +08:00
|
|
|
typedef struct uadkinst* uadk_t;
|
2013-01-08 22:40:58 +08:00
|
|
|
|
|
|
|
#define USB_ACCESSORY_VENDOR_ID 0x18D1
|
|
|
|
#define USB_ACCESSORY_PRODUCT_ID 0x2D00
|
|
|
|
#define USB_ACCESSORY_ADB_PRODUCT_ID 0x2D01
|
|
|
|
|
|
|
|
#define ACCESSORY_STRING_MANUFACTURER 0
|
|
|
|
#define ACCESSORY_STRING_MODEL 1
|
|
|
|
#define ACCESSORY_STRING_DESCRIPTION 2
|
|
|
|
#define ACCESSORY_STRING_VERSION 3
|
|
|
|
#define ACCESSORY_STRING_URI 4
|
|
|
|
#define ACCESSORY_STRING_SERIAL 5
|
|
|
|
|
|
|
|
#define USB_REQ_GET_PROTOCOL 51
|
|
|
|
#define USB_REQ_SEND_STRING 52
|
|
|
|
#define USB_REQ_START 53
|
|
|
|
|
|
|
|
#define USB_CLASS_ADK 0xff
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|