temperaturecontrol: allow setting background tool without activating
[clinton/Smoothieware.git] / smoothieware.inf
CommitLineData
d5fa1c02
L
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%
11LayoutFile=layout.inf
12CatalogFile=%MFGFILENAME%.cat
13DriverVer=11/15/2007,5.1.2600.0
14
15[Manufacturer]
16%MFGNAME%=DeviceList, NTamd64
17
18[DestinationDirs]
19DefaultDestDir=12
20
21
22;------------------------------------------------------------------------------
23; Windows 2000/XP/Vista-32bit Sections
24;------------------------------------------------------------------------------
25
26[DriverInstall.nt]
27include=mdmcpq.inf
28CopyFiles=DriverCopyFiles.nt
29AddReg=DriverInstall.nt.AddReg
30
31[DriverCopyFiles.nt]
32usbser.sys,,,0x20
33
34[DriverInstall.nt.AddReg]
35HKR,,DevLoader,,*ntkern
36HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
37HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
38
39[DriverInstall.nt.Services]
40AddService=usbser, 0x00000002, DriverService.nt
41
42[DriverService.nt]
43DisplayName=%SERVICE%
44ServiceType=1
45StartType=3
46ErrorControl=1
47ServiceBinary=%12%\%DRIVERFILENAME%.sys
48
49;------------------------------------------------------------------------------
50; Vista-64bit Sections
51;------------------------------------------------------------------------------
52
53[DriverInstall.NTamd64]
54include=mdmcpq.inf
55CopyFiles=DriverCopyFiles.NTamd64
56AddReg=DriverInstall.NTamd64.AddReg
57
58[DriverCopyFiles.NTamd64]
59%DRIVERFILENAME%.sys,,,0x20
60
61[DriverInstall.NTamd64.AddReg]
62HKR,,DevLoader,,*ntkern
63HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
64HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
65
66[DriverInstall.NTamd64.Services]
67AddService=usbser, 0x00000002, DriverService.NTamd64
68
69[DriverService.NTamd64]
70DisplayName=%SERVICE%
71ServiceType=1
72StartType=3
73ErrorControl=1
74ServiceBinary=%12%\%DRIVERFILENAME%.sys
75
76
77;------------------------------------------------------------------------------
78; Vendor and Product ID Definitions
79;------------------------------------------------------------------------------
80; When developing your USB device, the VID and PID used in the PC side
81; application program and the firmware on the microcontroller must match.
82; Modify the below line to use your VID and PID. Use the format as shown below.
83; Note: One INF file can be used for multiple devices with different VID and PIDs.
84; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line.
85;------------------------------------------------------------------------------
86[SourceDisksFiles]
87[SourceDisksNames]
88[DeviceList]
89%DESCRIPTION%=DriverInstall, USB\VID_1D50&PID_6015
90%DESCRIPTION%=DriverInstall, USB\VID_1F00&PID_2012&MI_00
91
92[DeviceList.NTamd64]
93%DESCRIPTION%=DriverInstall, USB\VID_1D50&PID_6015
94%DESCRIPTION%=DriverInstall, USB\VID_1F00&PID_2012&MI_00
95
96
97;------------------------------------------------------------------------------
98; String Definitions
99;------------------------------------------------------------------------------
100;Modify these strings to customize your device
101;------------------------------------------------------------------------------
102[Strings]
103MFGFILENAME="CDC_vista"
104DRIVERFILENAME ="usbser"
105MFGNAME="Uberclock, LLC (http://uberclock.com)"
106INSTDISK="Smoothieboard USB Serial Driver Installer"
107DESCRIPTION="Smoothieboard USB Serial"
108SERVICE="USB RS-232 Emulation Driver"