Removed Joystick endpoint from ARM usb module

- Also a bit of general house-keeping
This commit is contained in:
Jacob Alexander 2013-02-01 23:35:12 -05:00
parent 9dcb0f7b66
commit ca190c4fd9
7 changed files with 16 additions and 116 deletions

View file

@ -245,7 +245,7 @@ static void usbdev_setup(void)
#endif
// TODO: this does not work... why?
#if defined(SEREMU_INTERFACE) || defined(KEYBOARD_INTERFACE)
#if defined(KEYBOARD_INTERFACE)
case 0x0921: // HID SET_REPORT
//serial_print(":)\n");
return;
@ -379,8 +379,9 @@ static void usb_control(uint32_t stat)
}
//serial_phex32(*(uint32_t *)usb_cdc_line_coding);
//serial_print("\n");
// TODO - Fix this warning
if (*(uint32_t *)usb_cdc_line_coding == 134) usb_reboot_timer = 15;
// XXX - Not sure why this was casted to uint32_t... -HaaTa
//if (*(uint32_t *)usb_cdc_line_coding == 134) usb_reboot_timer = 15;
if (*usb_cdc_line_coding == 134) usb_reboot_timer = 15;
endpoint0_transmit(NULL, 0);
}
#endif
@ -864,4 +865,3 @@ uint8_t usb_configured(void)
return usb_configuration;
}