Search found 4 matches

by hootentoot
Fri Jan 20, 2012 3:02 pm
Forum: V-USB
Topic: NES Controller problems!?!?
Replies: 6
Views: 5329

Re: NES Controller problems!?!?

I now used the following selfmade descriptor: PROGMEM char usbHidReportDescriptor[USB_CFG_HID_REPORT_DESCRIPTOR_LENGTH] = { /* USB report descriptor */ 0x05, 0x01, // USAGE_PAGE (Generic Desktop) 0x09, 0x05, // USAGE (Game Pad) 0xa1, 0x01, // COLLECTION (Application) 0xa1, 0x00, // COLLECTION (Physi...
by hootentoot
Thu Jan 19, 2012 6:35 pm
Forum: V-USB
Topic: NES Controller problems!?!?
Replies: 6
Views: 5329

Re: NES Controller problems!?!?

I now tried some different HID descriptors for joysticks and even a standard mouse, but USBlyzr always shows me the device as an HID keyboard. I'm a bit frustrated at the moment because I thought the device type only depends on the descriptor, but it seems to be different somehow... I hope someone c...
by hootentoot
Wed Jan 18, 2012 10:00 am
Forum: V-USB
Topic: NES Controller problems!?!?
Replies: 6
Views: 5329

Re: NES Controller problems!?!?

I used the predefined descriptor of the project: PROGMEM char usbHidReportDescriptor[USB_CFG_HID_REPORT_DESCRIPTOR_LENGTH] = { /* USB report descriptor */ 0x05, 0x01, // USAGE_PAGE (Generic Desktop) 0x09, 0x05, // USAGE (Game Pad) 0xa1, 0x01, // COLLECTION (Application) 0x09, 0x01, // USAGE (Pointer...
by hootentoot
Tue Jan 17, 2012 7:21 pm
Forum: V-USB
Topic: NES Controller problems!?!?
Replies: 6
Views: 5329

NES Controller problems!?!?

Hi everyone, I built the "NES Gamepad on ATTiny45" project and encountered some problems. The PC-AVR communication works so far, but the device is recognized as an HID keyboard rather than a gamepad. I'm not able to configure it in Windows and no key events are sent to the PC (at least no ...