diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-11-25 00:36:18 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-11-25 00:36:18 +0000 |
commit | c05c7c7df46a0377db8a72cb32f06aa40153d3e1 (patch) | |
tree | 0e51bc1ef2a4e32ce29f448299a62ca16c46c3a8 /Projects/USBtoSerial | |
parent | d3f11eb52809353d7f103cea8b4332f335c26697 (diff) | |
download | lufa-c05c7c7df46a0377db8a72cb32f06aa40153d3e1.tar.gz lufa-c05c7c7df46a0377db8a72cb32f06aa40153d3e1.tar.bz2 lufa-c05c7c7df46a0377db8a72cb32f06aa40153d3e1.zip |
Added new XPLAIN serial Bridge project (thanks to John Steggall for the software UART code).
Diffstat (limited to 'Projects/USBtoSerial')
-rw-r--r-- | Projects/USBtoSerial/USBtoSerial.txt | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/Projects/USBtoSerial/USBtoSerial.txt b/Projects/USBtoSerial/USBtoSerial.txt index 065b32967..f5378cced 100644 --- a/Projects/USBtoSerial/USBtoSerial.txt +++ b/Projects/USBtoSerial/USBtoSerial.txt @@ -4,7 +4,7 @@ * documentation pages. It is not a project source file.
*/
-/** \mainpage USB to Serial Converter Demo (via CDC-ACM class)
+/** \mainpage USB to Serial Converter Project (via CDC-ACM class)
*
* \section SSec_Compat Demo Compatibility:
*
@@ -44,11 +44,16 @@ *
* \section SSec_Description Project Description:
*
- * Communications Device Class demonstration application.
- * This gives a simple reference application for implementing
- * a USB to Serial converter using the CDC class. Sent and
- * received data on the serial port is communicated to the USB
- * host.
+ * USB to Serial bridge project. This project allows a USB AVR to serve
+ * as a USB to USART bridge between a USB host and a device lacking a
+ * USB port. When programmed into a USB AVR, the AVR will enumerate as a
+ * virtual COM port.
+ *
+ * The AVR's hardware USART's settings will change to mirror as closely as
+ * possible the serial settings set on the host. However, due to hardware
+ * limitations, some options may not be supported (baud rates with unacceptable
+ * error rates at the AVR's clock speed, data lengths other than 6, 7 or 8 bits,
+ * 1.5 stop bits, parity other than none, even or odd).
*
* After running this demo for the first time on a new computer,
* you will need to supply the .INF file located in this demo
|