From f51017f8fb5a02029bce577e3d7226cb5158d830 Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Fri, 5 Jun 2009 07:52:53 +0000 Subject: Conversion of old incomplete SideShow demo to new APIs. --- Demos/Device/Incomplete/Sideshow/Sideshow.h | 39 ++++++++++++++++++----------- 1 file changed, 24 insertions(+), 15 deletions(-) (limited to 'Demos/Device/Incomplete/Sideshow/Sideshow.h') diff --git a/Demos/Device/Incomplete/Sideshow/Sideshow.h b/Demos/Device/Incomplete/Sideshow/Sideshow.h index 7b8818292..4cdcb372b 100644 --- a/Demos/Device/Incomplete/Sideshow/Sideshow.h +++ b/Demos/Device/Incomplete/Sideshow/Sideshow.h @@ -34,31 +34,40 @@ /* Includes: */ #include #include + #include #include "Descriptors.h" #include "SideshowCommands.h" - #include // Library Version Information - #include // PROGMEM tags readable by the ButtLoad project - #include // USB Functionality - #include // HWB button driver - #include // LEDs driver - #include // Dataflash chip driver - #include // Simple scheduler for task management - #include // Serial stream driver + #include + #include + #include + #include /* Macros: */ #define REQ_GetOSFeatureDescriptor 0x01 #define EXTENDED_COMPAT_ID_DESCRIPTOR 0x0004 - /* Task Definitions: */ - TASK(USB_Sideshow); + /** LED mask for the library LED driver, to indicate that the USB interface is not ready. */ + #define LEDMASK_USB_NOTREADY LEDS_LED1 + + /** LED mask for the library LED driver, to indicate that the USB interface is enumerating. */ + #define LEDMASK_USB_ENUMERATING (LEDS_LED2 | LEDS_LED3) + + /** LED mask for the library LED driver, to indicate that the USB interface is ready. */ + #define LEDMASK_USB_READY (LEDS_LED2 | LEDS_LED4) + + /** LED mask for the library LED driver, to indicate that an error has occurred in the USB interface. */ + #define LEDMASK_USB_ERROR (LEDS_LED1 | LEDS_LED3) - /* Event Handlers: */ - HANDLES_EVENT(USB_Connect); - HANDLES_EVENT(USB_Disconnect); - HANDLES_EVENT(USB_ConfigurationChanged); - HANDLES_EVENT(USB_UnhandledControlPacket); + /* Function Prototypes: */ + void SetupHardware(void); + void SideShow_Task(void); + + void EVENT_USB_Connect(void); + void EVENT_USB_Disconnect(void); + void EVENT_USB_ConfigurationChanged(void); + void EVENT_USB_UnhandledControlPacket(void); #endif -- cgit v1.2.3