From dcc4c457f0cad15b9d60e8fc3afa913bacacdbc6 Mon Sep 17 00:00:00 2001 From: AJM Date: Thu, 20 May 2010 22:47:59 -0400 Subject: moved the usb directory to its proper home in ./libmaple also, removed some old usb file, bootVect.h, which setup the static table for the runtime usb lib that no longer exists and was provided by the bootloader rev 1 --- libmaple/usb/usb.h | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 libmaple/usb/usb.h (limited to 'libmaple/usb/usb.h') diff --git a/libmaple/usb/usb.h b/libmaple/usb/usb.h new file mode 100644 index 0000000..e76772e --- /dev/null +++ b/libmaple/usb/usb.h @@ -0,0 +1,64 @@ +/* insert license */ + +#ifndef __USB_H_ +#define __USB_H_ + + +#include "usb_lib.h" +#include "libmaple.h" + +#ifdef __cplusplus +extern "C" { +#endif + +typedef enum + { + RESUME_EXTERNAL, + RESUME_INTERNAL, + RESUME_LATER, + RESUME_WAIT, + RESUME_START, + RESUME_ON, + RESUME_OFF, + RESUME_ESOF + } RESUME_STATE; + +typedef enum + { + UNCONNECTED, + ATTACHED, + POWERED, + SUSPENDED, + ADDRESSED, + CONFIGURED + } DEVICE_STATE; + + extern volatile uint32 bDeviceState; + + void setupUSB(void); + void usbSuspend(void); + void usbResumeInit(void); + void usbResume(RESUME_STATE); + + RESULT usbPowerOn(void); + RESULT usbPowerOff(void); + + void usbDsbISR(void); + void usbEnbISR(void); + + /* overloaded ISR routine, this is the main usb ISR */ + void usb_lpIRQHandler(void); + void usbWaitReset(void); + + /* blocking functions for send/receive */ + int16 usbSendBytes(uint8* sendBuf,uint16 len); + uint8 usbBytesAvailable(void); + uint8 usbReceiveBytes(uint8* recvBuf, uint8 len); + + void usbSendHello(void); + +#ifdef __cplusplus +} // extern "C" +#endif + +#endif //_USB_H -- cgit v1.2.3