projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Removed new Start of Frame event from the library; performance suffered far too much...
[pub/USBasp.git]
/
Demos
/
Device
/
USBtoSerial
/
Descriptors.c
diff --git
a/Demos/Device/USBtoSerial/Descriptors.c
b/Demos/Device/USBtoSerial/Descriptors.c
index
d5ab8b7
..
c369d16
100644
(file)
--- a/
Demos/Device/USBtoSerial/Descriptors.c
+++ b/
Demos/Device/USBtoSerial/Descriptors.c
@@
-54,7
+54,7
@@
USB_Descriptor_Device_t PROGMEM DeviceDescriptor =
.Endpoint0Size = FIXED_CONTROL_ENDPOINT_SIZE,
\r
\r
.VendorID = 0x03EB,
\r
.Endpoint0Size = FIXED_CONTROL_ENDPOINT_SIZE,
\r
\r
.VendorID = 0x03EB,
\r
- .ProductID = 0x204
4
,
\r
+ .ProductID = 0x204
B
,
\r
.ReleaseNumber = 0x0000,
\r
\r
.ManufacturerStrIndex = 0x01,
\r
.ReleaseNumber = 0x0000,
\r
\r
.ManufacturerStrIndex = 0x01,
\r
@@
-220,7
+220,7
@@
USB_Descriptor_String_t PROGMEM ProductString =
* is called so that the descriptor details can be passed back and the appropriate descriptor sent back to the
\r
* USB host.
\r
*/
\r
* is called so that the descriptor details can be passed back and the appropriate descriptor sent back to the
\r
* USB host.
\r
*/
\r
-uint16_t USB_GetDescriptor(const uint16_t wValue, const uint8_t wIndex, void** const DescriptorAddress)
\r
+uint16_t
CALLBACK_
USB_GetDescriptor(const uint16_t wValue, const uint8_t wIndex, void** const DescriptorAddress)
\r
{
\r
const uint8_t DescriptorType = (wValue >> 8);
\r
const uint8_t DescriptorNumber = (wValue & 0xFF);
\r
{
\r
const uint8_t DescriptorType = (wValue >> 8);
\r
const uint8_t DescriptorNumber = (wValue & 0xFF);
\r