Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Erik Strand
lufa
Commits
bf041e8b
Commit
bf041e8b
authored
Jun 05, 2009
by
Dean Camera
Browse files
Add new Incomplete device subdirectory for work-in-progress demos. Add incomplete SideShow demo.
parent
dd2cc7ed
Changes
14
Expand all
Hide whitespace changes
Inline
Side-by-side
Demos/Device/Incomplete/Sideshow/Descriptors.c
0 → 100644
View file @
bf041e8b
/*
LUFA Library
Copyright (C) Dean Camera, 2009.
dean [at] fourwalledcubicle [dot] com
www.fourwalledcubicle.com
*/
/*
Copyright 2009 Dean Camera (dean [at] fourwalledcubicle [dot] com)
Permission to use, copy, modify, and distribute this software
and its documentation for any purpose and without fee is hereby
granted, provided that the above copyright notice appear in all
copies and that both that the copyright notice and this
permission notice and warranty disclaimer appear in supporting
documentation, and that the name of the author not be used in
advertising or publicity pertaining to distribution of the
software without specific, written prior permission.
The author disclaim all warranties with regard to this
software, including all implied warranties of merchantability
and fitness. In no event shall the author be liable for any
special, indirect or consequential damages or any damages
whatsoever resulting from loss of use, data or profits, whether
in an action of contract, negligence or other tortious action,
arising out of or in connection with the use or performance of
this software.
*/
#include
"Descriptors.h"
USB_Descriptor_Device_t
PROGMEM
DeviceDescriptor
=
{
Header:
{
Size
:
sizeof
(
USB_Descriptor_Device_t
),
Type
:
DTYPE_Device
},
USBSpecification:
VERSION_BCD
(
02
.
00
),
Class:
0x00
,
SubClass:
0x00
,
Protocol:
0x00
,
Endpoint0Size:
8
,
VendorID:
0x03EB
,
ProductID:
0xDC03
,
ReleaseNumber:
0x0000
,
ManufacturerStrIndex:
0x01
,
ProductStrIndex:
0x02
,
SerialNumStrIndex:
0x03
,
NumberOfConfigurations:
1
};
USB_Descriptor_Configuration_t
PROGMEM
ConfigurationDescriptor
=
{
Config:
{
Header:
{
Size
:
sizeof
(
USB_Descriptor_Configuration_Header_t
),
Type
:
DTYPE_Configuration
},
TotalConfigurationSize:
sizeof
(
USB_Descriptor_Configuration_t
),
TotalInterfaces:
1
,
ConfigurationNumber:
1
,
ConfigurationStrIndex:
NO_DESCRIPTOR
,
ConfigAttributes:
(
USB_CONFIG_ATTR_BUSPOWERED
|
USB_CONFIG_ATTR_SELFPOWERED
),
MaxPowerConsumption:
USB_CONFIG_POWER_MA
(
100
)
},
Interface:
{
Header:
{
Size
:
sizeof
(
USB_Descriptor_Interface_t
),
Type
:
DTYPE_Interface
},
InterfaceNumber:
0
,
AlternateSetting:
0
,
TotalEndpoints:
2
,
Class:
0xFF
,
SubClass:
0x00
,
Protocol:
0x00
,
InterfaceStrIndex:
NO_DESCRIPTOR
},
DataInEndpoint:
{
Header:
{
Size
:
sizeof
(
USB_Descriptor_Endpoint_t
),
Type
:
DTYPE_Endpoint
},
EndpointAddress:
(
ENDPOINT_DESCRIPTOR_DIR_IN
|
SIDESHOW_IN_EPNUM
),
Attributes:
EP_TYPE_BULK
,
EndpointSize:
SIDESHOW_IO_EPSIZE
,
PollingIntervalMS:
0x00
},
DataOutEndpoint:
{
Header:
{
Size
:
sizeof
(
USB_Descriptor_Endpoint_t
),
Type
:
DTYPE_Endpoint
},
EndpointAddress:
(
ENDPOINT_DESCRIPTOR_DIR_OUT
|
SIDESHOW_OUT_EPNUM
),
Attributes:
EP_TYPE_BULK
,
EndpointSize:
SIDESHOW_IO_EPSIZE
,
PollingIntervalMS:
0x00
}
};
USB_Descriptor_String_t
PROGMEM
LanguageString
=
{
Header:
{
Size
:
USB_STRING_LEN
(
1
),
Type
:
DTYPE_String
},
UnicodeString:
{
LANGUAGE_ID_ENG
}
};
USB_Descriptor_String_t
PROGMEM
ManufacturerString
=
{
Header:
{
Size
:
USB_STRING_LEN
(
11
),
Type
:
DTYPE_String
},
UnicodeString:
L"Dean Camera"
};
USB_Descriptor_String_t
PROGMEM
ProductString
=
{
Header:
{
Size
:
USB_STRING_LEN
(
22
),
Type
:
DTYPE_String
},
UnicodeString:
L"LUFA Sideshow Demo"
};
USB_Descriptor_String_t
PROGMEM
SerialNumberString
=
{
Header:
{
Size
:
USB_STRING_LEN
(
12
),
Type
:
DTYPE_String
},
UnicodeString:
L"000000000000"
};
USB_OSDescriptor_t
PROGMEM
OSDescriptorString
=
{
Header:
{
Size
:
sizeof
(
USB_OSDescriptor_t
),
Type
:
DTYPE_String
},
Signature:
L"MSFT100"
,
VendorCode:
REQ_GetOSFeatureDescriptor
};
USB_OSCompatibleIDDescriptor_t
PROGMEM
DevCompatIDs
=
{
TotalLength:
sizeof
(
USB_OSCompatibleIDDescriptor_t
),
Version:
0x0100
,
Index:
EXTENDED_COMPAT_ID_DESCRIPTOR
,
TotalSections:
1
,
SideshowCompatID:
{
FirstInterfaceNumber
:
0x00
,
CompatibleID:
"SIDESHW"
,
SubCompatibleID:
"UNIV1"
}
};
uint16_t
USB_GetDescriptor
(
const
uint16_t
wValue
,
const
uint8_t
wIndex
,
void
**
const
DescriptorAddress
)
{
const
uint8_t
DescriptorType
=
(
wValue
>>
8
);
const
uint8_t
DescriptorNumber
=
(
wValue
&
0xFF
);
void
*
Address
=
NULL
;
uint16_t
Size
=
NO_DESCRIPTOR
;
switch
(
DescriptorType
)
{
case
DTYPE_Device
:
Address
=
DESCRIPTOR_ADDRESS
(
DeviceDescriptor
);
Size
=
sizeof
(
USB_Descriptor_Device_t
);
break
;
case
DTYPE_Configuration
:
Address
=
DESCRIPTOR_ADDRESS
(
ConfigurationDescriptor
);
Size
=
sizeof
(
USB_Descriptor_Configuration_t
);
break
;
case
DTYPE_String
:
switch
(
DescriptorNumber
)
{
case
0x00
:
Address
=
DESCRIPTOR_ADDRESS
(
LanguageString
);
Size
=
pgm_read_byte
(
&
LanguageString
.
Header
.
Size
);
break
;
case
0x01
:
Address
=
DESCRIPTOR_ADDRESS
(
ManufacturerString
);
Size
=
pgm_read_byte
(
&
ManufacturerString
.
Header
.
Size
);
break
;
case
0x02
:
Address
=
DESCRIPTOR_ADDRESS
(
ProductString
);
Size
=
pgm_read_byte
(
&
ProductString
.
Header
.
Size
);
break
;
case
0x03
:
Address
=
DESCRIPTOR_ADDRESS
(
SerialNumberString
);
Size
=
pgm_read_byte
(
&
SerialNumberString
.
Header
.
Size
);
break
;
case
0xEE
:
/* Great, another Microsoft-proprietary extention. String address 0xEE is used
by Windows for "OS Descriptors", which in this case allows us to indicate that
our device is Sideshow compatible. Most people would be happy using the normal
0xFF 0x?? 0x?? Class/Subclass/Protocol values like the USBIF intended. */
Address
=
DESCRIPTOR_ADDRESS
(
OSDescriptorString
);
Size
=
pgm_read_byte
(
&
OSDescriptorString
.
Header
.
Size
);
break
;
}
break
;
}
*
DescriptorAddress
=
Address
;
return
Size
;
}
bool
USB_GetOSFeatureDescriptor
(
const
uint16_t
wValue
,
const
uint8_t
wIndex
,
void
**
const
DescriptorAddress
,
uint16_t
*
const
DescriptorSize
)
{
void
*
Address
=
NULL
;
uint16_t
Size
=
0
;
/* Check if a device level OS feature descriptor is being requested */
if
(
wValue
==
0x0000
)
{
/* Only the Extended Device Compatibility descriptor is supported */
if
(
wIndex
==
EXTENDED_COMPAT_ID_DESCRIPTOR
)
{
Address
=
DESCRIPTOR_ADDRESS
(
DevCompatIDs
);
Size
=
sizeof
(
USB_OSCompatibleIDDescriptor_t
);
}
}
if
(
Address
!=
NULL
)
{
*
DescriptorAddress
=
Address
;
*
DescriptorSize
=
Size
;
return
true
;
}
return
false
;
}
\ No newline at end of file
Demos/Device/Incomplete/Sideshow/Descriptors.h
0 → 100644
View file @
bf041e8b
/*
LUFA Library
Copyright (C) Dean Camera, 2009.
dean [at] fourwalledcubicle [dot] com
www.fourwalledcubicle.com
*/
/*
Copyright 2009 Dean Camera (dean [at] fourwalledcubicle [dot] com)
Permission to use, copy, modify, and distribute this software
and its documentation for any purpose and without fee is hereby
granted, provided that the above copyright notice appear in all
copies and that both that the copyright notice and this
permission notice and warranty disclaimer appear in supporting
documentation, and that the name of the author not be used in
advertising or publicity pertaining to distribution of the
software without specific, written prior permission.
The author disclaim all warranties with regard to this
software, including all implied warranties of merchantability
and fitness. In no event shall the author be liable for any
special, indirect or consequential damages or any damages
whatsoever resulting from loss of use, data or profits, whether
in an action of contract, negligence or other tortious action,
arising out of or in connection with the use or performance of
this software.
*/
#ifndef _DESCRIPTORS_H_
#define _DESCRIPTORS_H_
/* Includes: */
#include
<LUFA/Drivers/USB/USB.h>
#include
<avr/pgmspace.h>
#include
"Sideshow.h"
/* Macros: */
#define SIDESHOW_IN_EPNUM 3
#define SIDESHOW_OUT_EPNUM 4
#define SIDESHOW_IO_EPSIZE 64
/* Type Defines: */
typedef
struct
{
USB_Descriptor_Configuration_Header_t
Config
;
USB_Descriptor_Interface_t
Interface
;
USB_Descriptor_Endpoint_t
DataInEndpoint
;
USB_Descriptor_Endpoint_t
DataOutEndpoint
;
}
USB_Descriptor_Configuration_t
;
typedef
struct
{
USB_Descriptor_Header_t
Header
;
int
Signature
[
7
];
uint16_t
VendorCode
;
}
USB_OSDescriptor_t
;
typedef
struct
{
uint8_t
FirstInterfaceNumber
;
uint8_t
RESERVED
;
uint8_t
CompatibleID
[
8
];
uint8_t
SubCompatibleID
[
8
];
uint8_t
RESERVED2
[
6
];
}
USB_OSCompatibleSection_t
;
typedef
struct
{
uint32_t
TotalLength
;
uint16_t
Version
;
uint16_t
Index
;
uint8_t
TotalSections
;
uint8_t
RESERVED
[
7
];
USB_OSCompatibleSection_t
SideshowCompatID
;
}
USB_OSCompatibleIDDescriptor_t
;
/* Function Prototypes: */
uint16_t
USB_GetDescriptor
(
const
uint16_t
wValue
,
const
uint8_t
wIndex
,
void
**
const
DescriptorAddress
)
ATTR_WARN_UNUSED_RESULT
ATTR_WEAK
ATTR_NON_NULL_PTR_ARG
(
3
);
bool
USB_GetOSFeatureDescriptor
(
const
uint16_t
wValue
,
const
uint8_t
wIndex
,
void
**
const
DescriptorAddress
,
uint16_t
*
const
DescriptorSize
)
ATTR_WARN_UNUSED_RESULT
ATTR_WEAK
ATTR_NON_NULL_PTR_ARG
(
3
,
4
);
#endif
Demos/Device/Incomplete/Sideshow/Sideshow.c
0 → 100644
View file @
bf041e8b
/*
LUFA Library
Copyright (C) Dean Camera, 2009.
dean [at] fourwalledcubicle [dot] com
www.fourwalledcubicle.com
*/
/*
Copyright 2009 Dean Camera (dean [at] fourwalledcubicle [dot] com)
Permission to use, copy, modify, and distribute this software
and its documentation for any purpose and without fee is hereby
granted, provided that the above copyright notice appear in all
copies and that both that the copyright notice and this
permission notice and warranty disclaimer appear in supporting
documentation, and that the name of the author not be used in
advertising or publicity pertaining to distribution of the
software without specific, written prior permission.
The author disclaim all warranties with regard to this
software, including all implied warranties of merchantability
and fitness. In no event shall the author be liable for any
special, indirect or consequential damages or any damages
whatsoever resulting from loss of use, data or profits, whether
in an action of contract, negligence or other tortious action,
arising out of or in connection with the use or performance of
this software.
*/
/*
SideShow Class demonstration application. This give a reference
for implementing Microsoft SideShow compatible devices in an
embedded environment. SideShow allows for gadget data displayed
on a Vista machine to also be displayed on an externally connected
interactive display. Upon enumeration on a Vista system, this will
appear as a new SideShow device which can have gadgets loaded onto
it.
Note that while the incomming content is buffered in packet struct
form, the data is not actually displayed. It is left to the user to
write sufficient code to read out the packed data for display to a
screen.
Installed gadgets can be accessed through the InstalledApplications
array, with entries that have their InUse flag set being active. As
only the active content is displayed on the device due to memory
constraints, new content can be requested as needed.
*/
/*
USB Mode: Device
USB Class: Sideshow Device (Microsoft Only)
USB Subclass: Bulk Only
Relevant Standards: Microsoft Sideshow Specification
Microsoft OS Descriptors Specification
XML Specification
Usable Speeds: Full Speed Mode
*/
#include
"Sideshow.h"
/* Project Tags, for reading out using the ButtLoad project */
BUTTLOADTAG
(
ProjName
,
"LUFA Sideshow App"
);
BUTTLOADTAG
(
BuildTime
,
__TIME__
);
BUTTLOADTAG
(
BuildDate
,
__DATE__
);
BUTTLOADTAG
(
LUFAVersion
,
"LUFA V"
LUFA_VERSION_STRING
);
/* Scheduler Task List */
TASK_LIST
{
{
Task
:
USB_USBTask
,
TaskStatus
:
TASK_STOP
},
{
Task
:
USB_Sideshow
,
TaskStatus
:
TASK_STOP
},
};
int
main
(
void
)
{
/* Disable watchdog if enabled by bootloader/fuses */
MCUSR
&=
~
(
1
<<
WDRF
);
wdt_disable
();
/* Disable Clock Division */
SetSystemClockPrescaler
(
0
);
/* Hardware Initialization */
SerialStream_Init
(
9600
,
false
);
LEDs_Init
();
HWB_Init
();
/* Indicate USB not ready */
LEDs_SetAllLEDs
(
LEDS_LED1
|
LEDS_LED3
);
/* Initialize Scheduler so that it can be used */
Scheduler_Init
();
/* Initialize USB Subsystem */
USB_Init
();
/* Scheduling - routine never returns, so put this last in the main function */
Scheduler_Start
();
}
EVENT_HANDLER
(
USB_Connect
)
{
/* Start USB management task */
Scheduler_SetTaskMode
(
USB_USBTask
,
TASK_RUN
);
/* Indicate USB enumerating */
LEDs_SetAllLEDs
(
LEDS_LED1
|
LEDS_LED4
);
}
EVENT_HANDLER
(
USB_Disconnect
)
{
/* Stop running mass storage and USB management tasks */
Scheduler_SetTaskMode
(
USB_Sideshow
,
TASK_STOP
);
Scheduler_SetTaskMode
(
USB_USBTask
,
TASK_STOP
);
/* Indicate USB not ready */
LEDs_SetAllLEDs
(
LEDS_LED1
|
LEDS_LED3
);
}
EVENT_HANDLER
(
USB_ConfigurationChanged
)
{
/* Setup Sideshow In and Out Endpoints */
Endpoint_ConfigureEndpoint
(
SIDESHOW_IN_EPNUM
,
EP_TYPE_BULK
,
ENDPOINT_DIR_IN
,
SIDESHOW_IO_EPSIZE
,
ENDPOINT_BANK_SINGLE
);
Endpoint_ConfigureEndpoint
(
SIDESHOW_OUT_EPNUM
,
EP_TYPE_BULK
,
ENDPOINT_DIR_OUT
,
SIDESHOW_IO_EPSIZE
,
ENDPOINT_BANK_SINGLE
);
/* Indicate USB connected and ready */
LEDs_SetAllLEDs
(
LEDS_LED2
|
LEDS_LED4
);
/* Start Sideshow task */
Scheduler_SetTaskMode
(
USB_Sideshow
,
TASK_RUN
);
}
EVENT_HANDLER
(
USB_UnhandledControlPacket
)
{
/* Process UFI specific control requests */
switch
(
bRequest
)
{
case
REQ_GetOSFeatureDescriptor
:
if
(
bmRequestType
==
(
REQDIR_DEVICETOHOST
|
REQTYPE_VENDOR
|
REQREC_DEVICE
))
{
uint16_t
wValue
=
Endpoint_Read_Word_LE
();
uint16_t
wIndex
=
Endpoint_Read_Word_LE
();
uint16_t
wLength
=
Endpoint_Read_Word_LE
();
void
*
DescriptorPointer
;
uint16_t
DescriptorSize
;
bool
SendZLP
=
true
;
if
(
!
(
USB_GetOSFeatureDescriptor
(
wValue
,
wIndex
,
&
DescriptorPointer
,
&
DescriptorSize
)))
return
;
Endpoint_ClearSetupReceived
();
if
(
wLength
>
DescriptorSize
)
wLength
=
DescriptorSize
;
while
(
wLength
&&
(
!
(
Endpoint_IsSetupOUTReceived
())))
{
while
(
!
(
Endpoint_IsSetupINReady
()));
while
(
wLength
&&
(
Endpoint_BytesInEndpoint
()
<
USB_ControlEndpointSize
))
{
#if defined(USE_RAM_DESCRIPTORS)
Endpoint_Write_Byte
(
*
((
uint8_t
*
)
DescriptorPointer
++
));
#elif defined (USE_EEPROM_DESCRIPTORS)
Endpoint_Write_Byte
(
eeprom_read_byte
(
DescriptorPointer
++
));
#else
Endpoint_Write_Byte
(
pgm_read_byte
(
DescriptorPointer
++
));
#endif
wLength
--
;
}
SendZLP
=
(
Endpoint_BytesInEndpoint
()
==
USB_ControlEndpointSize
);
Endpoint_ClearSetupIN
();
}
if
(
Endpoint_IsSetupOUTReceived
())
{
Endpoint_ClearSetupOUT
();
return
;
}
if
(
SendZLP
)
{
while
(
!
(
Endpoint_IsSetupINReady
()));
Endpoint_ClearSetupIN
();
}
while
(
!
(
Endpoint_IsSetupOUTReceived
()));
Endpoint_ClearSetupOUT
();
}
break
;
}
}
TASK
(
USB_Sideshow
)
{
/* Check if the USB System is connected to a Host */
if
(
USB_IsConnected
)
{
/* Select the SideShow data out endpoint */
Endpoint_SelectEndpoint
(
SIDESHOW_OUT_EPNUM
);
/* Check to see if a new SideShow message has been received */
if
(
Endpoint_ReadWriteAllowed
())
{
/* Process the received SideShow message */
Sideshow_ProcessCommandPacket
();
}
}
}
Demos/Device/Incomplete/Sideshow/Sideshow.h
0 → 100644
View file @
bf041e8b
/*
LUFA Library
Copyright (C) Dean Camera, 2009.
dean [at] fourwalledcubicle [dot] com
www.fourwalledcubicle.com
*/
/*
Copyright 2009 Dean Camera (dean [at] fourwalledcubicle [dot] com)
Permission to use, copy, modify, and distribute this software
and its documentation for any purpose and without fee is hereby
granted, provided that the above copyright notice appear in all
copies and that both that the copyright notice and this
permission notice and warranty disclaimer appear in supporting
documentation, and that the name of the author not be used in
advertising or publicity pertaining to distribution of the
software without specific, written prior permission.
The author disclaim all warranties with regard to this
software, including all implied warranties of merchantability
and fitness. In no event shall the author be liable for any
special, indirect or consequential damages or any damages
whatsoever resulting from loss of use, data or profits, whether
in an action of contract, negligence or other tortious action,
arising out of or in connection with the use or performance of
this software.
*/
#ifndef _SIDESHOW_H_
#define _SIDESHOW_H_
/* Includes: */
#include
<avr/io.h>
#include
<avr/wdt.h>
#include
"Descriptors.h"
#include
"SideshowCommands.h"
#include
<LUFA/Version.h>
// Library Version Information
#include
<LUFA/Common/ButtLoadTag.h>
// PROGMEM tags readable by the ButtLoad project
#include
<LUFA/Drivers/USB/USB.h>
// USB Functionality
#include
<LUFA/Drivers/Board/HWB.h>
// HWB button driver
#include
<LUFA/Drivers/Board/LEDs.h>
// LEDs driver
#include
<LUFA/Drivers/Board/Dataflash.h>
// Dataflash chip driver
#include
<LUFA/Scheduler/Scheduler.h>
// Simple scheduler for task management
#include
<LUFA/Drivers/AT90USBXXX/Serial_Stream.h>
// Serial stream driver
/* Macros: */
#define REQ_GetOSFeatureDescriptor 0x01
#define EXTENDED_COMPAT_ID_DESCRIPTOR 0x0004
/* Task Definitions: */
TASK
(
USB_Sideshow
);
/* Event Handlers: */
HANDLES_EVENT
(
USB_Connect
);
HANDLES_EVENT
(
USB_Disconnect
);
HANDLES_EVENT
(
USB_ConfigurationChanged
);
HANDLES_EVENT
(
USB_UnhandledControlPacket
);
#endif
Demos/Device/Incomplete/Sideshow/SideshowApplications.c
0 → 100644
View file @
bf041e8b
/*
LUFA Library
Copyright (C) Dean Camera, 2009.