1;************************************************************
2; Windows USB CDC ACM Setup File
3; Copyright (c) 2000 Microsoft Corporation
4
5
6[Version]
7Signature="$Windows NT$"
8Class=Ports
9ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318}
10Provider=%MFGNAME%
11CatalogFile=%MFGFILENAME%.cat
12CatalogFile.NTx86=%MFGFILENAME%_x86.cat
13CatalogFile.NTIA64=%MFGFILENAME%_ia64.cat
14CatalogFile.NTAMD64=%MFGFILENAME%_amd64.cat
15DriverVer=01/13/2014,1.0.0.0
16
17[Manufacturer]
18%MFGNAME%=DeviceList, NTamd64
19
20[DestinationDirs]
21FakeModemCopyFileSection=12
22DefaultDestDir=12
23
24;------------------------------------------------------------------------------
25;  Windows 2000/XP/Vista-32bit Sections
26;------------------------------------------------------------------------------
27
28[DriverInstall.nt]
29include=mdmcpq.inf
30CopyFiles=FakeModemCopyFileSection
31AddReg=DriverInstall.nt.AddReg
32
33;;[DriverCopyFiles.nt]
34;;usbser.sys,,,0x20
35
36[DriverInstall.nt.AddReg]
37HKR,,DevLoader,,*ntkern
38HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
39HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
40
41[DriverInstall.nt.Services]
42AddService=usbser, 0x00000002, DriverService.nt
43
44[DriverService.nt]
45DisplayName=%SERVICE%
46ServiceType=1
47StartType=3
48ErrorControl=1
49ServiceBinary=%12%\%DRIVERFILENAME%.sys
50
51;------------------------------------------------------------------------------
52;  Vista-64bit Sections
53;------------------------------------------------------------------------------
54
55[DriverInstall.NTamd64]
56include=mdmcpq.inf
57CopyFiles=FakeModemCopyFileSection
58AddReg=DriverInstall.NTamd64.AddReg
59
60[DriverCopyFiles.NTamd64]
61%DRIVERFILENAME%.sys,,,0x20
62
63[DriverInstall.NTamd64.AddReg]
64HKR,,DevLoader,,*ntkern
65HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
66HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
67
68[DriverInstall.NTamd64.Services]
69AddService=usbser, 0x00000002, DriverService.NTamd64
70
71[DriverService.NTamd64]
72DisplayName=%SERVICE%
73ServiceType=1
74StartType=3
75ErrorControl=1
76ServiceBinary=%12%\%DRIVERFILENAME%.sys
77
78
79;------------------------------------------------------------------------------
80;  Vendor and Product ID Definitions
81;------------------------------------------------------------------------------
82; When developing your USB device, the VID and PID used in the PC side
83; application program and the firmware on the microcontroller must match.
84; Modify the below line to use your VID and PID.  Use the format as shown below.
85; Note: One INF file can be used for multiple devices with different VID and PIDs.
86; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line.
87;------------------------------------------------------------------------------
88[SourceDisksFiles]
89[SourceDisksNames]
90[DeviceList]
91%DESCRIPTION%=DriverInstall, USB\VID_2A03&PID_0001
92%DESCRIPTION%=DriverInstall, USB\VID_2A03&PID_8001&MI_00
93
94[DeviceList.NTamd64]
95%DESCRIPTION%=DriverInstall, USB\VID_2A03&PID_0001
96%DESCRIPTION%=DriverInstall, USB\VID_2A03&PID_0001&MI_00
97
98;------------------------------------------------------------------------------
99;  String Definitions
100;------------------------------------------------------------------------------
101;Modify these strings to customize your device
102;------------------------------------------------------------------------------
103[Strings]
104MFGFILENAME="Linino-Boards"
105DRIVERFILENAME ="usbser"
106MFGNAME="Linino"
107INSTDISK="Linino Driver Installer"
108DESCRIPTION="Linino ONE"
109SERVICE="USB RS-232 Emulation Driver"
110
111