Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Upgrated USB converter – serial port at AVR V-USB)

Status
Not open for further replies.

gres

Full Member level 4
Full Member level 4
Joined
Nov 30, 2009
Messages
210
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,296
Activity points
4,573


Project based on http://www.recursion.jp/avrcdc/
But I wasn’t satisfied with data speed transmission, that was to low. So I decided to upgrade firmware. Success – interface works fine even with 115200 bps.
Firstly I tried with Atmega8 microcontroller and used 256 bytes of his SRAM as a buffer for serial port. I made new section in memory, and placed it between dates and stack so it can be programmed by 8 bits register. Thanks to that you don’t have to worry about overloading – to add an element you need just save and increase address indicator. Just for indicator, I reserved one of processor register.
Function of interrupt I code in assembler language to get optimal buffer work. USb interruption can be unblocked as fast as it’s possible.
Sending buffer ( this who get data from usb and send data by serial port) is very simple – typical 8 bytes buffer, that can magazine data from one transfer. New data can’t be store, until all previous won’t be send. Solution so simple but very good.
System worked well with speed about 57600, but was unstable with 115200. solution was to designe receiver interruption so can be started repeatedly.
For Atmega88 interrupt function must be change- serial port register for new AVR is out of range for sbi/cbi instruction and to increase one bit we need new temporary register.
This version can correctly set baudrate/bits for start and stop, for windows and linux. I saved standard speed transmission – of course that list can be change.
At http://www.elektroda.pl/rtvforum/topic1560638.html you can find original text, and board diagram in eagle, sources, and plug &play .hex for atmega8 and atmega88.
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top