請先看『使用說明』
PW601 Develop Utility under Windows
From LEXWiKi
(→The binary file you can download from) |
|||
(9 intermediate revisions not shown.) | |||
Line 1: | Line 1: | ||
[[Category:AllowPages]] | [[Category:AllowPages]] | ||
+ | |||
== Introduction == | == Introduction == | ||
+ | |||
PW601 Develop Utility can help you to develop tool to get information about capacitor.<br /> | PW601 Develop Utility can help you to develop tool to get information about capacitor.<br /> | ||
- | == The binary file you can download from == | ||
+ | == The binary file you can download from == | ||
<Google Drive> | <Google Drive> | ||
- | Binary file(32 bit): [https://drive.google.com/file/d/ | + | Binary file(32 bit): [https://drive.google.com/file/d/1LE7J9TBAl8-yvFd3J8gzI9dbsFhtKi5U/view?usp=sharing PW601Dll_v1.0.10.7_x86] |
- | Binary file(64 bit): [https://drive.google.com/file/d/ | + | Binary file(64 bit): [https://drive.google.com/file/d/1ZHorh_TwoZJUBRw-MnMvRDHO5M8dRb3D/view?usp=sharing PW601Dll_v1.0.10.7_x64] |
- | + | ||
- | + | ||
+ | Sample code: [https://drive.google.com/drive/folders/1W8EZeAXx9KaBIJb92zUhJUAHIVIU3nx0?usp=sharing UsePW601Dll(v1.0.10.7)_SampleCode] | ||
+ | <!-- | ||
<FTP> | <FTP> | ||
Line 23: | Line 25: | ||
Sample code: [ftp://ftp.lex.com.tw/Engineer/SoftSupport/AP_Module/PW601_DLL/Windows/Ver1.0.2.5/PW601Dll_SampleCode.zip PW601Dll_SampleCode] | Sample code: [ftp://ftp.lex.com.tw/Engineer/SoftSupport/AP_Module/PW601_DLL/Windows/Ver1.0.2.5/PW601Dll_SampleCode.zip PW601Dll_SampleCode] | ||
+ | --> | ||
+ | |||
+ | == DLL files descreption == | ||
+ | |||
+ | '''PW601Dll.dll''': Contains code and data about PW601 function. Dll_x86 and Dll_x64 are different.<br /> | ||
+ | |||
+ | '''PW601Dll.h''': Header about PW601 function. Dll_x86 and Dll_x64 are the same.<br /> | ||
+ | |||
+ | '''PW601Dll.lib''': Import library that link to PW601Dll.dll. Dll_x86 and Dll_x64 are different.<br /> | ||
+ | |||
+ | '''LexIo64.dll、LexIo64.sys''': Based on WinIO that provids DLL to read hardware data. For x64.<br /> | ||
+ | |||
+ | '''LexIo32.dll、LexIo32.sys''': Based on WinIO that provids DLL to read hardware data. For x86.<br /> | ||
+ | |||
== How to use DLL == | == How to use DLL == | ||
+ | |||
+ | '''*Step1.''' Unzip binary zip file and put files to your programe.<br /> | ||
+ | |||
+ | If your program based on x64 environment, use PW601Dll_x64. Otherwise, use PW601Dll_x86.<br /> | ||
+ | |||
+ | [[Image:Input_86_DLL.png]] [[Image:Input_64_DLL.png]] <br/> | ||
+ | |||
+ | '''*Step2.''' Initialize PW601 resource.<br /> | ||
+ | |||
+ | [[Image:Init_DLL.png]] <br/> | ||
+ | |||
+ | '''*Step3.''' Get informations from PW601 develop DLL.<br /> | ||
+ | |||
+ | [[Image:Use_DLL_2.png]] <br/> | ||
+ | |||
+ | '''*Final Step.''' Release PW601 resource before leaving application. | ||
+ | |||
+ | [[Image:Release_DLL.png]] <br/> |
Current revision
Contents |
Introduction
PW601 Develop Utility can help you to develop tool to get information about capacitor.
The binary file you can download from
<Google Drive>
Binary file(32 bit): PW601Dll_v1.0.10.7_x86
Binary file(64 bit): PW601Dll_v1.0.10.7_x64
Sample code: UsePW601Dll(v1.0.10.7)_SampleCode
DLL files descreption
PW601Dll.dll: Contains code and data about PW601 function. Dll_x86 and Dll_x64 are different.
PW601Dll.h: Header about PW601 function. Dll_x86 and Dll_x64 are the same.
PW601Dll.lib: Import library that link to PW601Dll.dll. Dll_x86 and Dll_x64 are different.
LexIo64.dll、LexIo64.sys: Based on WinIO that provids DLL to read hardware data. For x64.
LexIo32.dll、LexIo32.sys: Based on WinIO that provids DLL to read hardware data. For x86.
How to use DLL
*Step1. Unzip binary zip file and put files to your programe.
If your program based on x64 environment, use PW601Dll_x64. Otherwise, use PW601Dll_x86.
*Step2. Initialize PW601 resource.
*Step3. Get informations from PW601 develop DLL.
*Final Step. Release PW601 resource before leaving application.