Search found 1013 matches

by christian
Wed Dec 23, 2009 11:45 pm
Forum: V-USB
Topic: AVR - Doper is only HVSP
Replies: 5
Views: 4752

Re: AVR - Doper is only HVSP

It supports HVSP and ISP only, not HVPP. There are not enough pins on the ATMega8.

AVRMiniProg has a variation which can do HVPP, see http://www.simonqian.com/en/AVRminiProg/
by christian
Wed Dec 23, 2009 11:42 pm
Forum: V-USB
Topic: bootloaderHID on atmega8535 ?
Replies: 1
Views: 2956

Re: bootloaderHID on atmega8535 ?

That's 1k words which is 2k bytes, enough for the boot loader. Please use the lock bits to protect the boot loader from overwriting itself. There's no additional check in the boot loader.

The hex file may be 8k in size because it starts at 0 and goes up to the boot loader. The actual code is only 2k.
by christian
Wed Dec 23, 2009 11:39 pm
Forum: V-USB
Topic: Interfacing Ethernet to USB devices
Replies: 3
Views: 3023

Re: Interfacing Ethernet to USB devices

The Netburner SBL2e looks fine.

The question how many keyboards you can emulate means how many USB connectors you can serve with this solution, right? I'm afraid I have to disappoint you: One AVR can only handle one single USB device in firmware. For multiple USB connections you need multiple AVRs.
by christian
Tue Dec 22, 2009 5:19 pm
Forum: V-USB
Topic: Problem with usb_control_msg
Replies: 13
Views: 9603

Re: Problem with usb_control_msg

If you want to send arbitrary control messages, you need libusb. Otherwise you can only send those controls defined in the USB HID paper.
by christian
Tue Dec 22, 2009 5:19 pm
Forum: V-USB
Topic: V-USB on ATMega162
Replies: 1
Views: 2192

Re: V-USB on ATMega162

Since the PC recognizes the device by name, USB communication is working as such. There must be an issue with I/O ports for key inputs.
by christian
Tue Dec 22, 2009 5:13 pm
Forum: V-USB
Topic: why libusb ?
Replies: 2
Views: 3376

Re: why libusb ?

If you have a real HID device, you don't need libusb. See the hid-data example. The only limit here is that you have fixed size descriptors for your data.

If you want more fine grained control (like in e.g. hid-custom-rq or custom-class), you need libusb.
by christian
Tue Dec 22, 2009 5:11 pm
Forum: V-USB
Topic: Interfacing Ethernet to USB devices
Replies: 3
Views: 3023

Re: Interfacing Ethernet to USB devices

You need some kind of Ethernet to serial converter. Search the net, there are some available. Then it should be relatively straight forward.
by christian
Tue Dec 22, 2009 5:07 pm
Forum: V-USB
Topic: Remote Sensor some help
Replies: 1
Views: 2032

Re: Remote Sensor some help

It should be sufficient to create the tmp directory on the same partition where sensord is started. Yes, windows uses backslashes instead of slashes, but fopen() should convert it accordingly.
by christian
Fri Dec 11, 2009 11:24 pm
Forum: V-USB
Topic: v-usb arduino integration
Replies: 1
Views: 2262

Re: v-usb arduino integration

See http://metalab.at/wiki/Metaboard . Not exactly boot-loader compatible, but it can be integrated with the arduino IDE.
by christian
Fri Dec 11, 2009 11:20 pm
Forum: V-USB
Topic: Has anyone used a ceramic resonator with VUSB?
Replies: 3
Views: 3935

Re: Has anyone used a ceramic resonator with VUSB?

What's the advantage of using a resonator? You'd need 12.8 or 16.5 MHz due to the tolerance. If the point is price, use the internal RC oscillator at these rates. That's even cheaper. Otherwise use a cheap crystal at 12 or 16 MHz.
by christian
Fri Dec 11, 2009 11:12 pm
Forum: V-USB
Topic: Different Behavior with a HUB and without a HUB
Replies: 1
Views: 2289

Re: Different Behavior with a HUB and without a HUB

Your problem depends heavily on timing. Since USB 2.0 hubs implement low speed communication on their own, you are effectively dealing with a different USB host implementation when you insert a hub. This different implementation may use different timeouts, retry intervals etc.
by christian
Fri Dec 11, 2009 11:06 pm
Forum: V-USB
Topic: [SOLVED] v-usb on atmega32 and protoboard
Replies: 3
Views: 3702

Re: [SOLVED] v-usb on atmega32 and protoboard

If you are unsure, remove the zeners and lower the supply with two series diodes. If that works, look for other zener diodes.
by christian
Fri Dec 11, 2009 11:04 pm
Forum: V-USB
Topic: V-USB on Attiny 85 with internal 8MHz oscilator
Replies: 5
Views: 5698

Re: V-USB on Attiny 85 with internal 8MHz oscilator

12.8 MHz and 16.5 MHz are a matter of constant definition (F_CPU) plus additional calibration code from the libs-device directory.

8 MHz is not possible, in my opinion. However, if somebody is able to implement an 8 MHz module with PLL, this would be a complete rewrite of the assembler part.
by christian
Tue Nov 24, 2009 12:58 pm
Forum: V-USB
Topic: Automator, WinAVR, AVR Studio ELF Link Error
Replies: 3
Views: 7041

Re: Automator, WinAVR, AVR Studio ELF Link Error

You probably have included assembler parts multiple times or multiple assembler parts. Please see the Makefile provided with our reference projects to see which object files must be linked.