Browse Source

Use linked list for device's drivers, not fixed size array

main
PaulStoffregen 7 years ago
parent
commit
26fa6f2e34
2 changed files with 5 additions and 5 deletions
  1. +2
    -1
      USBHost.h
  2. +3
    -4
      enumeration.cpp

+ 2
- 1
USBHost.h View File

Pipe_t *control_pipe; Pipe_t *control_pipe;
Device_t *next; Device_t *next;
setup_t setup; setup_t setup;
USBHostDriver *driver[6];
//USBHostDriver *driver[6];
USBHostDriver *drivers;
uint8_t speed; // 0=12, 1=1.5, 2=480 Mbit/sec uint8_t speed; // 0=12, 1=1.5, 2=480 Mbit/sec
uint8_t address; uint8_t address;
uint8_t hub_address; uint8_t hub_address;

+ 3
- 4
enumeration.cpp View File

return; return;
case 15: // control transfers for other stuff? case 15: // control transfers for other stuff?
// TODO: handle other standard control: set/clear feature, etc // TODO: handle other standard control: set/clear feature, etc
for (unsigned int i=0; i < 6; i++) {
if (dev->driver[i] == NULL) break; // no more drivers
if (dev->driver[i]->control_callback(transfer)) {
for (USBHostDriver *d = dev->drivers; d != NULL; d = d->next) {
if (d->control_callback(transfer)) {
// this driver processed the control transfer reply // this driver processed the control transfer reply
return; return;
} }
available_drivers = driver->next; available_drivers = driver->next;
} }
driver->next = NULL; driver->next = NULL;
dev->driver[0] = driver;
dev->drivers = driver;
return; return;
} }
prev = driver; prev = driver;

Loading…
Cancel
Save