Add README.md

This commit is contained in:
Raphael Assenat 2016-10-13 23:16:43 -04:00
parent 2d7701aacd
commit 89bf520cfa
1 changed files with 33 additions and 0 deletions

33
README.md Normal file
View File

@ -0,0 +1,33 @@
# Dreamcast controller to USB adapter firmware
AVR micro-controller firmware for a Dreamcast controller to USB adapter.
## Project homepage
Schematic and additional information are available on the project homepage:
English: [Dreamcast controller to USB adapter](http://www.raphnet.net/electronique/dreamcast_usb/index_en.php)
French: [Adaptateur manette Dreamcast à USB](http://www.raphnet.net/electronique/dreamcast_usb/index.php)
## Supported micro-controllers
Currently supported micro-controllers:
* Atmega168
Adding support for other micro-controllers should be easy, as long as the target has enough
IO pins, enough memory (flash and SRAM) and is supported by V-USB.
## Built with
* [avr-gcc](https://gcc.gnu.org/wiki/avr-gcc)
* [avr-libc](http://www.nongnu.org/avr-libc/)
* [gnu make](https://www.gnu.org/software/make/manual/make.html)
## License
This project is licensed under the terms of the GNU General Public License, version 2.
## Acknowledgments
* Thank you to Objective development, author of [V-USB](https://www.obdev.at/products/vusb/index.html) for a wonderful software-only USB device implementation.