/
MATES
/ Modular Automatic Test Equipment System API
2.5.0.0
Main Page
Related Pages
Namespaces
Data Structures
Files
Examples
mates_test_04.c
#include <stdio.h>
#include "
mates.h
"
int
main(
void
)
{
MATES_HANDLE
h =
mates_open
(
"proxy.mon"
, 1);
if
(
mates_discover_single_node
(h, 20) ==
UOS_STATUS_OK
)
{
printf(
"Found node #20\n"
);
}
mates_close
(h);
}