projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Remove serial driver use from the AVRISP project now that it is no longer needed.
[pub/USBasp.git]
/
Bootloaders
/
DFU
/
Descriptors.c
diff --git
a/Bootloaders/DFU/Descriptors.c
b/Bootloaders/DFU/Descriptors.c
index
94f7404
..
2fed768
100644
(file)
--- a/
Bootloaders/DFU/Descriptors.c
+++ b/
Bootloaders/DFU/Descriptors.c
@@
-61,7
+61,7
@@
USB_Descriptor_Device_t DeviceDescriptor =
.ProductStrIndex = 0x01,
\r
.SerialNumStrIndex = NO_DESCRIPTOR,
\r
\r
.ProductStrIndex = 0x01,
\r
.SerialNumStrIndex = NO_DESCRIPTOR,
\r
\r
- .NumberOfConfigurations =
1
\r
+ .NumberOfConfigurations =
FIXED_NUM_CONFIGURATIONS
\r
};
\r
\r
/** Configuration descriptor structure. This descriptor, located in FLASH memory, describes the usage
\r
};
\r
\r
/** Configuration descriptor structure. This descriptor, located in FLASH memory, describes the usage
\r
@@
-81,7
+81,7
@@
USB_Descriptor_Configuration_t ConfigurationDescriptor =
.ConfigurationNumber = 1,
\r
.ConfigurationStrIndex = NO_DESCRIPTOR,
\r
\r
.ConfigurationNumber = 1,
\r
.ConfigurationStrIndex = NO_DESCRIPTOR,
\r
\r
- .ConfigAttributes =
(USB_CONFIG_ATTR_BUSPOWERED | USB_CONFIG_ATTR_SELFPOWERED)
,
\r
+ .ConfigAttributes =
USB_CONFIG_ATTR_BUSPOWERED
,
\r
\r
.MaxPowerConsumption = USB_CONFIG_POWER_MA(100)
\r
},
\r
\r
.MaxPowerConsumption = USB_CONFIG_POWER_MA(100)
\r
},
\r
@@
-108,7
+108,7
@@
USB_Descriptor_Configuration_t ConfigurationDescriptor =
\r
.Attributes = (ATTR_CAN_UPLOAD | ATTR_CAN_DOWNLOAD),
\r
\r
\r
.Attributes = (ATTR_CAN_UPLOAD | ATTR_CAN_DOWNLOAD),
\r
\r
- .Deta
tchTimeout
= 0x0000,
\r
+ .Deta
chTimeout
= 0x0000,
\r
.TransferSize = 0x0c00,
\r
\r
.DFUSpecification = VERSION_BCD(01.01)
\r
.TransferSize = 0x0c00,
\r
\r
.DFUSpecification = VERSION_BCD(01.01)
\r
@@
-143,7
+143,7
@@
USB_Descriptor_String_t 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
@@
-154,22
+154,22
@@
uint16_t USB_GetDescriptor(const uint16_t wValue, const uint8_t wIndex, void** c
switch (DescriptorType)
\r
{
\r
case DTYPE_Device:
\r
switch (DescriptorType)
\r
{
\r
case DTYPE_Device:
\r
- Address =
DESCRIPTOR_ADDRESS(DeviceDescriptor)
;
\r
+ Address =
&DeviceDescriptor
;
\r
Size = sizeof(USB_Descriptor_Device_t);
\r
break;
\r
case DTYPE_Configuration:
\r
Size = sizeof(USB_Descriptor_Device_t);
\r
break;
\r
case DTYPE_Configuration:
\r
- Address =
DESCRIPTOR_ADDRESS(ConfigurationDescriptor)
;
\r
+ Address =
&ConfigurationDescriptor
;
\r
Size = sizeof(USB_Descriptor_Configuration_t);
\r
break;
\r
case DTYPE_String:
\r
if (!(DescriptorNumber))
\r
{
\r
Size = sizeof(USB_Descriptor_Configuration_t);
\r
break;
\r
case DTYPE_String:
\r
if (!(DescriptorNumber))
\r
{
\r
- Address =
DESCRIPTOR_ADDRESS(LanguageString)
;
\r
+ Address =
&LanguageString
;
\r
Size = LanguageString.Header.Size;
\r
}
\r
else
\r
{
\r
Size = LanguageString.Header.Size;
\r
}
\r
else
\r
{
\r
- Address =
DESCRIPTOR_ADDRESS(ProductString)
;
\r
+ Address =
&ProductString
;
\r
Size = ProductString.Header.Size;
\r
}
\r
\r
Size = ProductString.Header.Size;
\r
}
\r
\r