Programming Guide for DS1000E, DS1000D Series
3-3
Note:
Please select “
control
” of Category when adding “m_combox”, and select
“
value
” when adding “m_receive”.
4.
Copy the Dynamic Link Library
RigolTMCUsb_UI.dll
from
Demo files
into
the new project for easier use.
Explanation: In IDNDemo, only three functions from this ddl are required, which
are:
GetTMCDeviceNum
,
WriteUSB
and
ReadUSB
(the function has been
mentioned in the header files
Rigolusb.h
);
Now, take
GetTMCDeviceNum
as an example to introduce how to recall these
three functions:
HMODULE module = LoadLibrary("RigolTMCUsb_UI.dll");
typedef int (CALLBACK* pGetDeviceNum)();
if(module)
{
pGetDeviceNum GetDevice
= (pGetDeviceNum)GetProcAddress(module,"GetTMCDeviceNum");
int j = GetDevice(); // enter
}
Содержание DS1000E Series, DS1000D Series
Страница 1: ...RIGOL Programming Guide DS1000E DS1000D Series Digital Oscilloscope July 2009 RIGOL Technologies Inc ...
Страница 2: ......
Страница 6: ......
Страница 86: ...RIGOL Command Systems Programming Guide for DS1000E DS1000D Series 2 74 LA GROU1 SIZ The query returns SMALL ...
Страница 102: ......
Страница 129: ...Programming Guide for DS1000E DS1000D Series 3 27 After you set the Start event see the result below ...
Страница 132: ......