vote up 0 vote down star

I want to develop code to transmit data from system to PIC through USB. Can anybody give good link regarding data transmission through USB. because i am new to this.

NOTE: Very simple is code is enough to me.

Thanks in Advance

flag
Which PIC are you looking at? Each one is different. – Daniel A. White Aug 28 at 13:00
presumably OP means one of the PICs with a USB peripheral; the peripheral itself should be pretty much the same for those. – Jason S Aug 28 at 13:04
Sorry i didnt get exact specification from my client. it may be PIC16F877A bootloader. Thats why i am learning from basic. – ASHOK Aug 28 at 13:30

3 Answers

vote up 0 vote down

As your task will involve Windows Device Driver development, I do recommend to downlaod and install the WDK and look through the contained sample USB drivers.

This might get you some hints about the complexity of the topic. Device driver development is not the easiest thing to start with.

Maybe you can start with UART communication (RS232).

link|flag
Untrue; you don't need to write a driver if the device falls in any of the default-supported classes. The most obvious candidate is HID (Human Input Device) – MSalters Aug 28 at 15:04
The OP is asking for data transmission. I can't see how HID class drivers would be useful for him. Maybe you can make some suggestions in an own answer. But I agree with you, that there are some other driver classes (like USB-COM-Ports, as Ian stated) that he could use without programming its own driver. All depends on the PIC-hardware he's using. – Frank Bollack Aug 28 at 16:11
vote up 3 vote down

The PIC16F877 does not have a USB peripheral built in. I assume that the product that you are building is a "USB Device" and that the "system" that you are referring to will provide the USB host functionality. If this is the case then you will have to add a USB interface chip to your hardware to provide async serial to USB connectivity. Suitable devices are made by TI (TUSB series) or FTDI. You then connect one of these to the PIC internal USART and pretend that you are transferring the data over a simple serial port. If you are using a pc then the connected device will appear as a standard COMn: port.

link|flag
vote up 0 vote down

I totally agree with the FTDI route, however if you're not looking for a UART tunnel over USB then you have to get a bit more in-depth.

You'll have to write the USB routines yourself or find libraries/projects for your processor. What you will definitely have to have is a fast clock - 12MHz is necessary More is better because on small uC's like these you'll spend most of your time just handling the basics of USB - signaling and so forth. You'll also need a fair bit of memory because the USB code takes up around 1.5K I think. Then you need room afterwards for your own code.

I've seen the V-USB (http://www.obdev.at/products/vusb/index.html). It's for AVR not PIC, but it says it provides all of the USB functionality you'll need and even provides vendor and product IDs for you to use (non-commercial I believe). There's also a PIC project for USB that doesn't run on the same hardware as yours here: http://www.alanmacek.com/usb/

To make the driver you'll have to use libusb - here's a link for the win32 version: http://libusb-win32.sourceforge.net/

It's surprisingly more simple than I had expected, but I just looked at example code and not actually made anything. Good luck!

link|flag
Thanks Stephen Friederichs. I got lots of basic information from that link(alanmacek.com/usb). I will check the same source code in my Environment and let you know asap. – ASHOK Sep 3 at 11:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.