Search found 481 matches
- Fri Aug 05, 2011 6:49 am
- Forum: V-USB
- Topic: USB communication problems with ATmega8 (4nes4snes-adapter)
- Replies: 11
- Views: 8988
Re: USB communication problems with ATmega8 (4nes4snes-adapter)
Have you tried to burn his exact hex file? Do you have the exact bill of parts ( any differences, out side the caps you mentioned )
- Thu Aug 04, 2011 12:09 am
- Forum: V-USB
- Topic: USB communication problems with ATmega8 (4nes4snes-adapter)
- Replies: 11
- Views: 8988
Re: USB communication problems with ATmega8 (4nes4snes-adapter)
Hi, I used many of his projects, I's say start with usbLyzer and print or save what it shows. See if its the descriptor, device, or config that gives the issues. You can use the hot plug feature to get the negotiations. You say it compiles and the usb does not work, then its in the configs. Your on ...
- Wed Aug 03, 2011 5:39 am
- Forum: V-USB
- Topic: Retro-Adapter 2 and two joysticks.
- Replies: 1
- Views: 1978
Re: Retro-Adapter 2 and two joysticks.
Why not contact Paul?
http://denki.world3.net/
http://denki.world3.net/
- Wed Aug 03, 2011 5:11 am
- Forum: V-USB
- Topic: Packet Size > 8 bytes on Interrupt In Endpoint
- Replies: 8
- Views: 9649
Re: Packet Size > 8 bytes on Interrupt In Endpoint
Not sure you come by here or not anymore ( could not reach you via email ) hopping you could just spare a few moments. I was able to apply the patch but it seems the packets stop after 5 tries? I did a test with a blink LED, and I get 5 blinks and then it stops. If I take out the sender while(!usbIn...
- Mon Jul 18, 2011 5:00 am
- Forum: V-USB
- Topic: Swapped D+/D- pins
- Replies: 3
- Views: 3870
Re: Swapped D+/D- pins
Going to go out on a limb here an assume I'm missing the point. However if I'm not, my question to you... Why not switch the defines in the config.h ? Assuming you use the default for most projects. #define USB_CFG_DMINUS_BIT 0 /* This is the bit number in USB_CFG_IOPORT where the USB D- line is con...
- Sat Jul 16, 2011 3:24 pm
- Forum: V-USB
- Topic: How to change the product name and vendor name?
- Replies: 3
- Views: 3393
Re: How to change the product name and vendor name?
Yikes, tampering of the registry is something you need to do at your own risk my friend. Only advise I have there is search for you PID/VID. usbDview is by far the better choice
http://gobbledgeek.wordpress.com/2011/01/10/usbdview/
http://gobbledgeek.wordpress.com/2011/01/10/usbdview/
- Fri Jul 15, 2011 6:46 pm
- Forum: V-USB
- Topic: How to change the product name and vendor name?
- Replies: 3
- Views: 3393
Re: How to change the product name and vendor name?
Yes that is how you do it but if you already have the device install you will need to remove it first. When the device is install windows marks down the name in the registry and changing that in the firmware does not change the registry. Use usbDview or manually edit the registry on your own.
- Wed Jun 29, 2011 10:43 pm
- Forum: V-USB
- Topic: Code in for loop outside of if (usbInterruptIsReady()) {...}
- Replies: 1
- Views: 2366
Re: Code in for loop outside of if (usbInterruptIsReady()) {...}
Use the code below, this may help a little. When ( ! usbInterruptIsReady() ) , You are limited to a very small amount of code space before the next pull must be done. I have tried using that section of code to preform a check on the d- line. My need was for a line Low for x amount of time. I realize...
- Tue Jun 21, 2011 11:15 pm
- Forum: V-USB
- Topic: diferent port for D+ and D-
- Replies: 15
- Views: 10901
Re: diferent port for D+ and D-
As it says on in the rules please contact us directly through our support form. m Try to keep it short and to the point. " Hi, I want to use separate ports for each of my usb pins. " Wound be a great title. Its a lot more clear then whats on this thread... Indicate you posted a forum threa...
- Tue Jun 21, 2011 8:09 pm
- Forum: V-USB
- Topic: diferent port for D+ and D-
- Replies: 15
- Views: 10901
Re: diferent port for D+ and D-
Contact Christian, he will tell you if its do-able. He does not get on the forums much.
- Mon Jun 20, 2011 11:01 pm
- Forum: V-USB
- Topic: diferent port for D+ and D-
- Replies: 15
- Views: 10901
Re: diferent port for D+ and D-
If Micha is right and you want D- on Port C and D+ on Port D, I dont think that will work. Why do you need to use another port, is it because of your board wiring?
- Mon Jun 20, 2011 5:05 am
- Forum: V-USB
- Topic: diferent port for D+ and D-
- Replies: 15
- Views: 10901
Re: diferent port for D+ and D-
Huh? Ok the below means PORTD use pin 0 for D- and 2 for D+ #define USB_CFG_IOPORTNAME D /* This is the port where the USB bus is connected. When you configure it to * "B", the registers PORTB, PINB and DDRB will be used. */ #define USB_CFG_DMINUS_BIT 0 /* This is the bit number in USB_CFG...
- Sun Jun 19, 2011 7:39 pm
- Forum: V-USB
- Topic: diferent port for D+ and D-
- Replies: 15
- Views: 10901
Re: diferent port for D+ and D-
Look in usbconfig.h
'
'
- Thu Jun 09, 2011 2:29 pm
- Forum: V-USB
- Topic: Is it possible to detect whether the PC is running?
- Replies: 7
- Views: 5935
Re: Is it possible to detect whether the PC is running?
I dont think much goes on during boot. possible some driver talk as the usb device initialize but then the talk with silence I would guess.
- Wed Jun 08, 2011 2:30 pm
- Forum: V-USB
- Topic: Is it possible to detect whether the PC is running?
- Replies: 7
- Views: 5935
Re: Is it possible to detect whether the PC is running?
Well I have found its ok to use a loop count of 5 but be sure to kill the interrupts. Since the pin (-) of the usb has a pullup it should normally be hi. I found xp can take a max loop of 20, but vista needs 5 or less. checkAlive() { cli(); DDRD &= ~0x02; for( ; i < 5 ; i++) { //make your test.....