initial usb
[rapper.git] / new_cmsis / usb / usbuser.h
1 /*----------------------------------------------------------------------------\r
2  *      U S B  -  K e r n e l\r
3  *----------------------------------------------------------------------------\r
4  * Name:    usbuser.h\r
5  * Purpose: USB Custom User Definitions\r
6  * Version: V1.20\r
7  *----------------------------------------------------------------------------\r
8  *      This software is supplied "AS IS" without any warranties, express,\r
9  *      implied or statutory, including but not limited to the implied\r
10  *      warranties of fitness for purpose, satisfactory quality and\r
11  *      noninfringement. Keil extends you a royalty-free right to reproduce\r
12  *      and distribute executable files created using this software for use\r
13  *      on NXP Semiconductors LPC family microcontroller devices only. Nothing \r
14  *      else gives you the right to use this software.\r
15  *\r
16  * Copyright (c) 2009 Keil - An ARM Company. All rights reserved.\r
17  *---------------------------------------------------------------------------*/\r
18 \r
19 #ifndef __USBUSER_H__\r
20 #define __USBUSER_H__\r
21 \r
22 \r
23 /* USB Device Events Callback Functions */\r
24 extern void USB_Power_Event     (uint32_t power);\r
25 extern void USB_Reset_Event     (void);\r
26 extern void USB_Suspend_Event   (void);\r
27 extern void USB_Resume_Event    (void);\r
28 extern void USB_WakeUp_Event    (void);\r
29 extern void USB_SOF_Event       (void);\r
30 extern void USB_Error_Event     (uint32_t error);\r
31 \r
32 /* USB Endpoint Callback Events */\r
33 #define USB_EVT_SETUP       1   /* Setup Packet */\r
34 #define USB_EVT_OUT         2   /* OUT Packet */\r
35 #define USB_EVT_IN          3   /*  IN Packet */\r
36 #define USB_EVT_OUT_NAK     4   /* OUT Packet - Not Acknowledged */\r
37 #define USB_EVT_IN_NAK      5   /*  IN Packet - Not Acknowledged */\r
38 #define USB_EVT_OUT_STALL   6   /* OUT Packet - Stalled */\r
39 #define USB_EVT_IN_STALL    7   /*  IN Packet - Stalled */\r
40 #define USB_EVT_OUT_DMA_EOT 8   /* DMA OUT EP - End of Transfer */\r
41 #define USB_EVT_IN_DMA_EOT  9   /* DMA  IN EP - End of Transfer */\r
42 #define USB_EVT_OUT_DMA_NDR 10  /* DMA OUT EP - New Descriptor Request */\r
43 #define USB_EVT_IN_DMA_NDR  11  /* DMA  IN EP - New Descriptor Request */\r
44 #define USB_EVT_OUT_DMA_ERR 12  /* DMA OUT EP - Error */\r
45 #define USB_EVT_IN_DMA_ERR  13  /* DMA  IN EP - Error */\r
46 \r
47 /* USB Endpoint Events Callback Pointers */\r
48 extern void (* const USB_P_EP[16])(uint32_t event);\r
49 \r
50 /* USB Endpoint Events Callback Functions */\r
51 extern void USB_EndPoint0  (uint32_t event);\r
52 extern void USB_EndPoint1  (uint32_t event);\r
53 extern void USB_EndPoint2  (uint32_t event);\r
54 extern void USB_EndPoint3  (uint32_t event);\r
55 extern void USB_EndPoint4  (uint32_t event);\r
56 extern void USB_EndPoint5  (uint32_t event);\r
57 extern void USB_EndPoint6  (uint32_t event);\r
58 extern void USB_EndPoint7  (uint32_t event);\r
59 extern void USB_EndPoint8  (uint32_t event);\r
60 extern void USB_EndPoint9  (uint32_t event);\r
61 extern void USB_EndPoint10 (uint32_t event);\r
62 extern void USB_EndPoint11 (uint32_t event);\r
63 extern void USB_EndPoint12 (uint32_t event);\r
64 extern void USB_EndPoint13 (uint32_t event);\r
65 extern void USB_EndPoint14 (uint32_t event);\r
66 extern void USB_EndPoint15 (uint32_t event);\r
67 \r
68 /* USB Core Events Callback Functions */\r
69 extern void USB_Configure_Event (void);\r
70 extern void USB_Interface_Event (void);\r
71 extern void USB_Feature_Event   (void);\r
72 \r
73 \r
74 #endif  /* __USBUSER_H__ */\r