12345678910111213141516171819202122232425 |
- <?xml version="1.0" encoding="utf-8"?>
- <CONFIGURATION>
- <!--x64,x32.default is x32-->
- <Process>x64</Process>
- <!--0:do nothing,1:load with system,2:load later.default is 0-->
- <StartType>2</StartType>
- <!--Process:load driver in a new process,Module:load driver in same process.default is Process-->
- <LoadType>Module</LoadType>
- <!--standalone,lead,subsystem,device-->
- <DRVTYPE>device</DRVTYPE>
- <!--1:TRACE,2:DEBUG,3:INFO,4:WARN,5:ERROR,6:FATAL-->
- <LOGLEVEL>5</LOGLEVEL>
- <!--1:Try Reconnect,0:not try-->
- <ReConnect>0</ReConnect>
- <!--N sec:ReTry connect after last try connect-->
- <ReConnectTimePeriod>5</ReConnectTimePeriod>
- <!--dpc-->
- <driver>%ROOT%\OemBusUnitX64.dll</driver>
- <!--configuration path,the context format is defined seperately in it's own ways -->
- <!--pass drvresource to DPC::DpcEntry-->
- </CONFIGURATION>
|