diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-07-23 10:39:10 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-07-23 10:39:10 +0000 |
commit | a6e85d6ed80720e15477433f4abf0ca5f54422ba (patch) | |
tree | c401685216fda9ddda1525e37cd374da3655b24e /Projects/Benito/LUFA USBtoSerial.inf | |
parent | 5dbfdaa17dc4cb35783ec121453c7dfaca9874f3 (diff) | |
download | lufa-a6e85d6ed80720e15477433f4abf0ca5f54422ba.tar.gz lufa-a6e85d6ed80720e15477433f4abf0ca5f54422ba.tar.bz2 lufa-a6e85d6ed80720e15477433f4abf0ca5f54422ba.zip |
Added new Benito project, a simple modified USB-to-Serial bridge for the programming of AVRs using the official Arduino bootloader.
Diffstat (limited to 'Projects/Benito/LUFA USBtoSerial.inf')
-rw-r--r-- | Projects/Benito/LUFA USBtoSerial.inf | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/Projects/Benito/LUFA USBtoSerial.inf b/Projects/Benito/LUFA USBtoSerial.inf new file mode 100644 index 000000000..bd9c8bf14 --- /dev/null +++ b/Projects/Benito/LUFA USBtoSerial.inf @@ -0,0 +1,55 @@ +; Windows LUFA USB to Serial Setup File
+; Copyright (c) 2000 Microsoft Corporation
+
+[Version]
+Signature="$Windows NT$"
+Class=Ports
+ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318}
+Provider=%COMPANY%
+LayoutFile=layout.inf
+DriverVer=06/06/2006,1.0.0.0
+
+[Manufacturer]
+%MFGNAME% = ManufName
+
+[DestinationDirs]
+DefaultDestDir=12
+
+[ManufName]
+%Modem3% = Modem3, USB\VID_03EB&PID_204B
+
+;------------------------------------------------------------------------------
+; Windows 2000/XP Sections
+;------------------------------------------------------------------------------
+
+[Modem3.nt]
+CopyFiles=USBModemCopyFileSection
+AddReg=Modem3.nt.AddReg
+
+[USBModemCopyFileSection]
+usbser.sys,,,0x20
+
+[Modem3.nt.AddReg]
+HKR,,DevLoader,,*ntkern
+HKR,,NTMPDriver,,usbser.sys
+HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
+
+[Modem3.nt.Services]
+AddService=usbser, 0x00000002, DriverService
+
+[DriverService]
+DisplayName=%SERVICE%
+ServiceType=1
+StartType=3
+ErrorControl=1
+ServiceBinary=%12%\usbser.sys
+
+;------------------------------------------------------------------------------
+; String Definitions
+;------------------------------------------------------------------------------
+
+[Strings]
+COMPANY="LUFA Library"
+MFGNAME="Dean Camera"
+Modem3="USB Virtual Serial Port"
+SERVICE="USB Virtual Serial Port CDC Driver"
\ No newline at end of file |