Spare Time Labs 2.0 | |
Welcome EazyCNC jDraft 2.0 PureJavaComm PIC CDC ACM Weather Ten-Buck Furnace
H8S Bootloader
Camera Calibration
Multitouch
Myford VFD Fun with HC08 bl08 printf II Java Goes Native
Densitometer printf jApp Igloo New Furnace New Furnace Part II Linux 101 H8S/gcc Quickie Gas Fired Furnace Down Memory Lane Exlibris Wheel Patterns Glitches CHIP-8 eDice Animato jDraft JNA Benchmark Contact Info |
Created 31.10.2010/JKN
A Minimal USB CDC ACM aka Virtual Serial PortFirmware for PIC18F45503.10.2014 Breaking news! Thomas Missonier provided attached Makefile to compile the code under Windows/Cygwin and 'pic-config.h' file for use with 20 MHz crystal. Thanks Thomas! 30.3.2013 Update! I've updated the project for SDCC 3.2.0 and included support for GET_LINE_CODING which helps overzealous Windows programs like Hyperterm to work with it. Updated and improved thanks to Ron Musgrave's pestering, thank's Ron, I enjoyed the whole process. Get the updated project from this link. Don't forget to README.txt file for further details. This page introduces a minimal firmware that implements a USB Virtual Serial Port for Microchip PIC18F4550 processor. The code has been optimized to use minimal amout of memory (both Flash and RAM) and tuned to work well with the Free SDCC C-compiler. The code size is less than 2500 bytes and it requires about 230 bytes of RAM memory and it is capable of transferring almost 1 MB/sec (if only the PIC could generate any data at that speed!).
Why Virtual Serial PortOne of the hurdless that faces anyone who wants to interface a modern PC with the real physical world is the fact that most new computers have neither a serial port nor a parallel port that could be utilized to interface with external world. Most come only with USB and Etherner connections.While USB standard is realy not that bad once you get into grips with the basics, it can be very intimidating. To make matters worse using USB often requires writing device drivers which can be even more intimidating. If you want to support the most common operating systems, Mac OS X, Linux or Windows, the task just gets bigger, easily beyound the resources of a lone developer. But if you make your device appear as virtual serial port then the drivers will be provided by the courtesy of the operating system ie all the operating systems have built in drivers for serial ports. True, there are libraries, I especially want to mention libusb , which make it relatively easy to access and develop a class of USB devices without writing drivers. And libusb is cross platform which I like a lot. Still it is an other dependency for your project and requires a native library to be linked with your host side application which is more work if you want to do cross platform application development with languages like Java, as I do. Serial ports are easily accessible from various programming languages including C/C++, Python, Java, VisualBASIC etc.
Using the CDC ACM libraryIt sounds a bit grand to call this a library when in reality it is just one source code file and a three files with USB related '#define's. I've created a ready to compile sample project that implements a virtual serial port that just echoes back everything you send to it. You can download the source code from here.A word of warning about the source code: it was taken from a project that is fully functional but I had to clean it up a bit and remove some personal stuff. It compiles and there is a high probability that it works but I have not had the time to test it after the clean up. If you find any problems, please let me know.
PrerequisitesIn priciple you should obtain your own PID and VID for your device from the USB consortium (or more easily from Microchip) but for simple testing and development it is ok to use what I have in the code ie Vendor id = VID = 0x0408 and Product id = PID = 0x000A. To use the library you need to have 'GNU autotools' and 'SDCC' installed and in your 'path'. You can of course compile the code without the autotools as there are just half a dozen files to compile. To program the firmware into the device you need the Microchip PICKit2 programmer and the 'pk2cmd' software that supports it on the 'path'. If you don't have the PICKit2 you realy should get one, at USD 35 it is a steal and it is supported on Linux, Windows and Mac OS X. And naturally you need a PIC18F4550 device with 4 MHz xtal. It is also possible to use the other PIC18F series devices and crystals but some changes to the link and config options maybe necessary.
CompilingTo compile the code unzip the project into a directory and justcd to the directory where you have the code and type make . This should compile the code and program it to the device if you have the PICKit2 in readiness. The object code and resulting hex file will be placed in a directory obj parallel to the source directory.
TestingTo test it you need a terminal emulator. Plug your device to the USB port, open the terminal emulator, select the correct port and everything you type should be echoed back to the terminal.Testing on Mac OS X
In Mac OS X type
For example:
ls /dev/tty.usb*
/dev/tty.usbmodem5d11
screen /dev/tty.usbmodem5d11
Testing on LinuxIn Linux typels /dev/ttyACM* to get a list of USB virtual serial ports and then use the built in screen terminal to talk to it.
For example:
ls /dev/tty.ACM*
/dev/tty.ACM0
screen /dev/ttyACM0
Testing on WindowsIn Windows you need to install an.inf file that will associate your device with the built in driver.
To install the 'driver' plug in the device and go to the Device Manager. Look for an 'Unknown device' and select 'Properties' for that device, then select 'Install Driver', browse to the Note the file has not been tested after clean up so there maybe some errors.
Also note that if you change the PID/VID of the device (and in the long run you should) then you need to update the After succesfull installation the device should appear as a COM port and you can use a terminal emulator such as PuTTY or TeraTerm to talk to it.
Understanding the LibraryThe library realy is simple to use, basically there are two functions and two buffers for transferring the data in and out of the device, there is a function that needs to be called periodically to poll the USB bus, there is a function to initilize the library and auxiliary functions to implement standard putc/getc functionality.Note that the library code is written from the device point of view, ie 'tx','put' means that the device sends something to the host which maybe confusing because on this is called 'input' direction in USB terminology and the host code would use 'read' functions to receive the data. Just thought I'd mention this.
PollingYou need to call the functionusbcdc_handler() at least once every millisecond or in response to USB interrupt, which is the preferred way. If do not use interupts and forgot to call 'usbcdc_handler() regularly then your code will hang if it is waiting for a data transfer to complete.
In the example (see void high_isr(void) shadowregs interrupt 1 { if(PIR2bits.USBIF) { usbcdc_handler(); PIR2bits.USBIF=0; } } InitializationTo initilize the library call'usbcdc_init()' before you enable the interrupts and you might want to wait for the host OS to configure the device. To do all that use:
usbcdc_init(); INTCONbits.PEIE = 1; INTCONbits.GIE = 1; while (usbcdc_device_state != CONFIGURED) /* wait */; Sending data from device to hostUSB standard calls this direction input.
To send something to the device you put the data in to the // send six bytes ie 'Hello\n' while (usbcdc_wr_busy()) /* wait */; cdc_tx_buffer[0]= 'H'; cdc_tx_buffer[1]= 'e'; cdc_tx_buffer[2]= 'l'; cdc_tx_buffer[3]= 'l'; cdc_tx_buffer[4]= 'o'; cdc_tx_buffer[5]= '\n'; usbcdc_write(6); }
The
Receiving data from host to deviceUSB standard calls this direction output.
To read what the host has send to your device is slightly more complicated. The data arrives in the So in your code you poll for the incoming data with something like: if (usbcdc_rd_ready()) { for (i=0; i > usbcdc_rd_len(); i++) process (cdc_rx_buffer[i]); usbcdc_read(); } Character based I/OAbove makes the most efficient use of the buffers in terms of avoiding unnecessary data copying and function calls.
However, if all you are interested in is sending and receiving bytes in streaming like fashion you can use the Note that when using the
In the example code (see void putchar(char c) wparam { if (c=='\n') usbcdc_putchar('\r'); usbcdc_putchar(c); if (c=='\n') usbcdc_flush(); } char getchar() { usbcdc_flush(); return usbcdc_getchar(); } printft.h/printft.c .
Further ImprovementsI've no intention to 'improve' this code in any major way as I see that the major feature of this library is it's simplicity and small code size. However, there is one bigish buffer (64 bytes) calledsetup_packet which I'm pretty sure could be refactored to overlap the tx/rx buffers, saving 64 bytes of RAM.
That's all folksHope this helps someone out there to implement some great little gadget!br Kusti |