Hi .
Atmega8 @ 12 mhz will do the job.
http://makecircuits.com/blog/2009-03-23 ... mega8.html
cheers
USB
The Arduino Uno went from a FTDI chip to the Atmega8 to bridge the USB to UART connection.
The code is available here if you wish to work with that as a basis.
https://github.com/arduino/Arduino/tree ... firmwares/
Dimitri
The code is available here if you wish to work with that as a basis.
https://github.com/arduino/Arduino/tree ... firmwares/
Dimitri
What is the point in using a 6502 then if you already have a 12MHz Atmega sitting on your board? I'd guess that runs circles around a 1MHz 6502... And it would take away all the fun of it ;-)
But seriously, with my stack you're free to implement not only the serial protocol, but anything you like. What is still missing, but what I'm planning is on SCSI-over-USB support - that's the protocol that nearly all USB memory sticks or USB-attached harddisks talk...
And you can play the device for a host, or you can host other devices.
Now who needs an Atmega...? ;-)
André
But seriously, with my stack you're free to implement not only the serial protocol, but anything you like. What is still missing, but what I'm planning is on SCSI-over-USB support - that's the protocol that nearly all USB memory sticks or USB-attached harddisks talk...
And you can play the device for a host, or you can host other devices.
Now who needs an Atmega...? ;-)
André
fachat wrote:
While I started from the MicroUSB code, and learned some stuff from them (I know you're reading, didn't have time yet to contact you) I wrote completely new drivers, with separation of hardware and logic (so other chips than the SL811HS can be supported easily).
this is great news. Thanks for making the code available.
You've got HUBs working, a task that I always postponed. I will have a look at your code and see if I can backport it to the Atari800.
-- Carsten
cas wrote:
You've got HUBs working, a task that I always postponed. I will have a look at your code and see if I can backport it to the Atari800.
André