USB Mouse (relative) example for mbed NXP LPC11U24 beta

Committer:
chris
Date:
Mon Oct 24 10:26:27 2011 +0000
Revision:
0:163560051396

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
chris 0:163560051396 1 /* USBEvents.h */
chris 0:163560051396 2 /* USB device and endpoint event handlers */
chris 0:163560051396 3 /* Copyright (c) 2011 ARM Limited. All rights reserved. */
chris 0:163560051396 4
chris 0:163560051396 5 #ifndef _USB_EBVENTS_
chris 0:163560051396 6 #define _USB_EBVENTS_
chris 0:163560051396 7
chris 0:163560051396 8 /* Endpoint events that must be implemented by device layer: */
chris 0:163560051396 9 void USBDevice_EP0setup(void);
chris 0:163560051396 10 void USBDevice_EP0out(void);
chris 0:163560051396 11 void USBDevice_EP0in(void);
chris 0:163560051396 12
chris 0:163560051396 13 /* Endpoint events that are optionally implemented by device layer: */
chris 0:163560051396 14 void USBDevice_busReset(void);
chris 0:163560051396 15 void USBDevice_SOF(int frameNumber);
chris 0:163560051396 16 void USBDevice_connectStateChanged(unsigned int state);
chris 0:163560051396 17 void USBDevice_suspendStateChanged(unsigned int state);
chris 0:163560051396 18
chris 0:163560051396 19 #endif