Search found 162 matches
- Thu Jan 26, 2012 3:11 am
- Forum: V-USB
- Topic: Problem when changing usbHidReportDescriptor
- Replies: 3
- Views: 4473
Re: Problem when changing usbHidReportDescriptor
The lenght of the report descriptor changed. Maybe forgot to change the RD lenght in the configuration descriptor ?
- Tue Nov 09, 2010 12:27 am
- Forum: V-USB
- Topic: Wiki: Attiny26 not recommended?
- Replies: 1
- Views: 3264
Re: Wiki: Attiny26 not recommended?
Normally that means that the chip has reached end-of-life and its production is about to be shut down. Seems that Atmel changed their mind tho, the last two entries from the ATTiny26 manuals revision history: Rev. 1477K-08/10 Added tape and reel part numbers in “Ordering Information” on page 171. Re...
- Mon Sep 20, 2010 7:35 am
- Forum: V-USB
- Topic: Maximum Sample Rate in V-USB Data Acquisition Projects
- Replies: 7
- Views: 7510
Re: Maximum Sample Rate in V-USB Data Acquisition Projects
The 100s/s is a limit imposed by USB low speed (min. 10ms poll rate for INT EPs.) You'd be better of looking at chips w/ a native USB interface that supports full speed like the ATMega32U4 (example dev board).
Re: CRC5?
It's implemented in V-USBs 18MHz modul.
- Mon May 03, 2010 8:39 am
- Forum: V-USB
- Topic: HIDKeys (and other examples) dont seem to work [ATMEGA32]
- Replies: 4
- Views: 5330
Re: HIDKeys (and other examples) dont seem to work [ATMEGA32]
Well, thank you all very much for this fine example of your support for your products. Obviously you can stick your products up your collective arses. Welcome in the real world where you have to think for yourself and actually read documentation. This is a low-frequency forum for a free "produ...
- Sun Apr 25, 2010 7:54 am
- Forum: V-USB
- Topic: Two HID joysticks from one device
- Replies: 21
- Views: 19454
Re: Two HID joysticks from one device
When I said interface, I ment interface as described in USB 2.0 chapter 9.6.5. You need to add a 2nd interface descriptor to the configuration descriptor, followed by another HID descriptor and a endpoint descriptor for EP3. A 2nd report descriptor needs to be connected to that interface as well. I'...
- Tue Apr 20, 2010 9:47 pm
- Forum: V-USB
- Topic: Two HID joysticks from one device
- Replies: 21
- Views: 19454
Re: Two HID joysticks from one device
Grendel, I believe the goal is to achieve two devices to show up. This is the acceptable work around others have done and in fact its what Ralh did on his page. Yes and no. The goal is to have two joysticks to show up. Using a single report descriptor w/ two reports seems to work w/ Windows (and it...
- Tue Apr 20, 2010 2:41 am
- Forum: V-USB
- Topic: Two HID joysticks from one device
- Replies: 21
- Views: 19454
Re: Two HID joysticks from one device
Instead of having two reports in one report descriptor you could set up a 2nd interface using endpoint 3 (optional EP in V-USB). Have one stick on EP 1, the other on on 3. This is from the top of my head (getting a bit rusty here ), you'll have to research the specifics.
- Fri Apr 16, 2010 8:26 pm
- Forum: V-USB
- Topic: resolved - usb 1.0 or 1.1 (whats this 1.01 ?)
- Replies: 1
- Views: 5866
Re: usb 1.0 or 1.1 (whats this 1.01 ?)
Changelog.txt wrote: - Set USB version number to 1.10 instead of 1.01.
* Release 2007-06-25
1.01 used to be a bug.
- Fri Mar 05, 2010 1:46 am
- Forum: V-USB
- Topic: Using usual diodes instead of Zeners
- Replies: 4
- Views: 4828
Re: Using usual diodes instead of Zeners
I would try it without diodes 1st. Supposedly 80% of USB hosts will tolerate it and the ones that don't will just refuse service to the device, not burn up
- Wed Feb 24, 2010 8:43 am
- Forum: V-USB
- Topic: HIDKeys with mega168
- Replies: 9
- Views: 9398
Re: HIDKeys with mega168
Remove the F_CPU definition from main.c, the definition needs to be global. One way of adding it: in AVRS, load your project then open the menu "Project", select "Configuration Options". In that dialog under "General" fill out the "Frequency:" field w/ 1600000...
- Fri Feb 12, 2010 9:01 pm
- Forum: V-USB
- Topic: HIDKeys with mega168
- Replies: 9
- Views: 9398
Re: HIDKeys with mega168
RazorConcepts wrote:Additionally, has anyone gotten V-USB software to work with AVR Studio 4? It is very picky, and therefore not able to use the included makefile, which may have something to do with my problems
Used AVRS4 many times w/ V-USB. Just set up the project from scratch and ignore the makefile.
- Fri Feb 12, 2010 8:58 pm
- Forum: V-USB
- Topic: Full ttl connects
- Replies: 3
- Views: 4147
Re: Full ttl connects
V-USB is all about programming. Even if you use a more hardware oriented chip (like the ATmega32U4 <-- click this ) it's still mostly programming. It's the nature of USB.
- Thu Feb 11, 2010 9:14 am
- Forum: V-USB
- Topic: Full ttl connects
- Replies: 3
- Views: 4147
Re: Full ttl connects
Should be possible. You'll have to add some CDC/PSTN subclass specific control transfers, namely SetControlLineState (see PSTN120.pdf, 6.3.12) and GetSerialState (see PSTN120.pdf, 6.5.4). The document refered to is located at usb.org, in this archive.
- Fri Feb 05, 2010 11:25 am
- Forum: V-USB
- Topic: HIDKeys & BIOS PC
- Replies: 2
- Views: 3486
Re: HIDKeys & BIOS PC
Check out USB Device Class Definition for Human Interface Devices (HID), pg. 73 "Appendix F: Legacy Keyboard Implementation"