Search found 32 matches

by declan smith
Thu Jan 17, 2013 5:08 am
Forum: V-USB
Topic: GUI for Simple V-USB tester (Project)
Replies: 9
Views: 17703

Re: GUI for Simple V-USB tester (Update4)

Found my old LED Display project... Implemented using V-USB for fun project testing Not bad for a hobby project at weekend... Software: http://i476.photobucket.com/albums/rr124/jfet_ping/Microcontroller/v-usb_led-display000_zps61c99493.jpg Schematics: http://i476.photobucket.com/albums/rr124/jfet_pi...
by declan smith
Mon Dec 31, 2012 7:46 am
Forum: V-USB
Topic: fixed hid descriptor in RAM
Replies: 5
Views: 5957

Re: fixed hid descriptor in RAM

It called Dynamic HID Descriptor.
It looks like the same with yours : http://forums.obdev.at/viewtopic.php?f=8&t=5450
by declan smith
Sat Dec 29, 2012 4:13 pm
Forum: V-USB
Topic: v-usb + hidapi
Replies: 3
Views: 6231

Re: v-usb + hidapi

Try to change: unsigned char buf[9]; to: unsigned char buf[8]; Editted : because you " return 8 " in the device side while ' res = hid_read(handle, buf, sizeof(buf))' will return " sizeof(buf) " which is also 8, so the " res " will return negatif value as I knew. Add yo...
by declan smith
Sat Dec 29, 2012 5:17 am
Forum: V-USB
Topic: v-usb + hidapi
Replies: 3
Views: 6231

Re: v-usb + hidapi

There's nothing wrong with your code as I tested it. Here's your code with little mod for my test ( you set the report out but you didn't use it ? ) : /* Name: main.c * Project: hid-data, example how to use HID for data transfer * Author: Christian Starkjohann * Creation Date: 2008-04-11 * Tabsize: ...
by declan smith
Tue Dec 25, 2012 2:22 pm
Forum: V-USB
Topic: GUI for Simple V-USB tester (Project)
Replies: 9
Views: 17703

Re: GUI for Simple V-USB tester (Update4)

It was written in Delphi's, as it is easier than C#. I'm using libusbdotcom in my C# projects ( VS2010 ), but since it needs .NET Framework 4 for running the application, I decided to wrote in Delphi. I didn't intend to share the Delphi's full source code, sorry for that, but I'll try to answer your...
by declan smith
Fri Dec 21, 2012 12:14 am
Forum: V-USB
Topic: uC seems to be communicating then stops
Replies: 2
Views: 3618

Re: uC seems to be communicating then stops

Hi Stefan,
Please post the full schematics of the AVR example project that you worked with, I'll try to post the hexfile to make sure there's no hardware issues.

Troubleshooting according to V-USB website:
http://vusb.wikidot.com/troubleshooting
by declan smith
Thu Dec 20, 2012 10:28 am
Forum: V-USB
Topic: GUI for Simple V-USB tester (Project)
Replies: 9
Views: 17703

Re: GUI for Simple V-USB tester (Update4)

Interrupt version examples http://i476.photobucket.com/albums/rr124/jfet_ping/Microcontroller/v-usbhost001000_zps178a46fc.png Same hardware schematics http://i476.photobucket.com/albums/rr124/jfet_ping/Microcontroller/usb8_zps91bb95b4.png Download Version Atmega8: http://www.ziddu.com/download/21166...
by declan smith
Sat Dec 15, 2012 12:07 pm
Forum: V-USB
Topic: GUI for Simple V-USB tester (Project)
Replies: 9
Views: 17703

Re: GUI for Simple V-USB tester (Update3)

Added more examples: http://i476.photobucket.com/albums/rr124/jfet_ping/Microcontroller/v-usbhost001_zps393289e8.png Hardware Circuit, some different connections: http://i476.photobucket.com/albums/rr124/jfet_ping/Microcontroller/usb8_zps91bb95b4.png Revision: Faster EEPROM write, 8 bytes "page...
by declan smith
Tue Dec 04, 2012 7:11 am
Forum: V-USB
Topic: GUI for Simple V-USB tester (Project)
Replies: 9
Views: 17703

Re: GUI for Simple V-USB tester (Update2)

Added simplified LCD Library for ATmega8 Hardware Schematics: http://i476.photobucket.com/albums/rr124/jfet_ping/Microcontroller/usb.png Hexfile included for ATmega8 and ATmega32. Download version ATmega8: http://www.ziddu.com/download/21033489/V-USBtester.zip.html Download version ATmega32: http://...
by declan smith
Sat Dec 01, 2012 6:20 am
Forum: V-USB
Topic: Zener diodes at D+ D-
Replies: 26
Views: 43151

Re: Zener diodes at D+ D-

Also, I power the uC from USB. I need to put a 0.1 uF in parallel to Vcc and Gnd. Put a 4u7 electrolit capacitor at USB Vcc and Gnd if you supply your uc with USB bus not 0.1uf. So, I’ve added a 500 k resistance between ground and D-. And it works!! That's very strange to do, you didn't have to do ...
by declan smith
Wed Nov 28, 2012 7:38 am
Forum: V-USB
Topic: GUI for Simple V-USB tester (Project)
Replies: 9
Views: 17703

GUI for Simple V-USB tester (Project)

Here is GUI for simply testing V-USB using libUSB dll. Hope it usefull. Host Software: http://i476.photobucket.com/albums/rr124/jfet_ping/Microcontroller/v-usb002.jpg Hardware Schematics: http://i476.photobucket.com/albums/rr124/jfet_ping/Microcontroller/USB.png Download version ATmega8: http://www....
by declan smith
Thu Nov 08, 2012 10:04 am
Forum: V-USB
Topic: HID DESCRIPTOR more than 255 bytes
Replies: 10
Views: 9272

Re: HID DESCRIPTOR more than 255 bytes

I think straight answer is better than wasting bandwidth told me to look for the "good example" which I didn't know which is "good" exactly because I'm new to this V-USB, and told me to try to use >255 then (which make me asking here in the first post), including "Microchip&...
by declan smith
Tue Nov 06, 2012 3:33 pm
Forum: V-USB
Topic: HID DESCRIPTOR more than 255 bytes
Replies: 10
Views: 9272

Re: HID DESCRIPTOR more than 255 bytes

There is no trick, just do it. Like I said find a better example. Like what? Any link to it? I already told you its possible. Possible if less than 255 bytes (as I knew so far) Get one of the ever so common mouse or joystick examples. mouse or joystick examples only needs under 255 bytes, so that's...
by declan smith
Tue Nov 06, 2012 10:54 am
Forum: V-USB
Topic: HID DESCRIPTOR more than 255 bytes
Replies: 10
Views: 9272

Re: HID DESCRIPTOR more than 255 bytes

Sorry for my bad I'm not going to confused you with my code, as I'm new to V-USB and still figuring out how it works for my needs. That's why I took the working example to start, and try to understand it. I was asked to post my code here, so I posted it even it messed up because it's far from final ...
by declan smith
Sun Nov 04, 2012 6:31 am
Forum: V-USB
Topic: HID DESCRIPTOR more than 255 bytes
Replies: 10
Views: 9272

Re: HID DESCRIPTOR more than 255 bytes

Hello :?: :shock:
Anybody home :?: :?