mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-06-06 19:15:07 +02:00
Compare commits
3 commits
696b0ca9c0
...
df9ecba326
Author | SHA1 | Date | |
---|---|---|---|
|
df9ecba326 | ||
|
048696eb25 | ||
|
37f932208b |
1 changed files with 3 additions and 1 deletions
|
@ -138,8 +138,9 @@ static void write_configuration_descriptor(int wLength)
|
||||||
{
|
{
|
||||||
usb_interface_t const * const *interfaces = usb_configure_interfaces();
|
usb_interface_t const * const *interfaces = usb_configure_interfaces();
|
||||||
size_t total_length = sizeof(usb_dc_configuration_t);
|
size_t total_length = sizeof(usb_dc_configuration_t);
|
||||||
|
size_t interface_count = 0;
|
||||||
|
|
||||||
for(int i = 0; interfaces[i]; i++)
|
for(int i = 0; interfaces[i]; i++, interface_count++)
|
||||||
for(int k = 0; interfaces[i]->dc[k]; k++)
|
for(int k = 0; interfaces[i]->dc[k]; k++)
|
||||||
{
|
{
|
||||||
uint8_t const *dc = interfaces[i]->dc[k];
|
uint8_t const *dc = interfaces[i]->dc[k];
|
||||||
|
@ -149,6 +150,7 @@ static void write_configuration_descriptor(int wLength)
|
||||||
|
|
||||||
/* Write the configuration descriptor */
|
/* Write the configuration descriptor */
|
||||||
dc_configuration.wTotalLength = htole16(total_length);
|
dc_configuration.wTotalLength = htole16(total_length);
|
||||||
|
dc_configuration.bNumInterfaces = interface_count;
|
||||||
dcp_write(&dc_configuration, dc_configuration.bLength);
|
dcp_write(&dc_configuration, dc_configuration.bLength);
|
||||||
/* For the first call, the host usually wants only this */
|
/* For the first call, the host usually wants only this */
|
||||||
if(wLength <= dc_configuration.bLength) return;
|
if(wLength <= dc_configuration.bLength) return;
|
||||||
|
|
Loading…
Add table
Reference in a new issue