Fast PICUSB CDC example

Some people from Microchip USB forum complained about low transfer speed of new 18F4550/2550/... devices. Here is an example how to achieve speed of 128kB/s with Microchip CDC firmware (PIC18F4550 firmware + Borland Builder 6 application).
fastPICUSB_CDC.rar (76kB)
.zip version (119kB)

Solution:

None of my serial terminal emulators was able to receive data from PIC at this speed, probably because they are trying to update display after every received portion of data (that may be 1000 times per second).

There are reports of transfer speeds as fast as 800 kB/s. Keep in mind that 8-bit PIC microcontrollers are not able to use large transfer speed (even 128 kB/s) in practical applications - there would be just no time to fill the buffer with any useful data. I think that 64 kB/s with HID class should be enough most of the times and HID is very convenient as it doesn't require installing driver under Windows.

Microchip example code collection is pretty impressive - Microchip Application Libraries, USB framework contains over 30 projects including CDC, HID, MSD, custom classes and composite devices.

Some of useful I hope code I used with PIC18 micros:
library for 25AA640 EEPROM memory
CRC8 calculation (poly: x^8 + x^2 + x^1 + x^0, bytewise)
simple FIFO used to transfer data over USB - just for convenience

See also: simplified generic HID demo code with Code::Blocks/MinGW PC application at miniscope page.


 "Cookie monsters": 7684961    Parse time: 0.000 s