123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /*
- * File : adk.h
- * This file is part of RT-Thread RTOS
- * COPYRIGHT (C) 2011, RT-Thread Development Team
- *
- * 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.
- *
- * 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;
- };
- typedef struct uadkinst* uadk_t;
- #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
|