/
MATES
/ Modular Automatic Test Equipment System API
2.5.0.0
Main Page
Related Pages
Namespaces
Data Structures
Files
Examples
mates_test_14.c
#include <stdio.h>
#include "
mates.h
"
int
main(
void
)
{
MATES_HANDLE
h =
mates_open
(
"proxy.mon"
, 1);
int
bir;
/* Get bootloader identification register. */
if
(
mates_get_register
(h,
mates_dio3_mk1_2
,
REG_COMMON_BIR
, &bir) ==
UOS_STATUS_OK
)
{
printf(
"Successfully got BIR: 0x%X\n"
, bir);
}
mates_close
(h);
}