rtd720_get_config_info (ul_scopes)
status.i4.v = rtd720_get_config_info(connect_info.g.v,
config_data.s.r)
This routine reads configuration information for an RTD720
series scope.
connect_info scope connection structure created by a
prior call to scope_connect
config_data returned configuration data
(structure of type RTD720_CONFIG_DATA)
This function returns ACNET status values as follows:
OK success
CLIB_INVARG invalid connection information passed
CLIB_GENERIC_ERROR error reading scope information
otherwise other ACNET error
This function requires the following include files:
ul_scopes_h:scopelib_h, ul_scopes_h:tekdefs_h, acnet_errors_h
Related functions:
rtd720_get_trigger_config_info_c, rtd720_get_waveform_c,
rtd720_set_range_c, rtd720_set_offset_c,
rtd720_request_measurement, rtd720_reset_scope,
rtd720_get_id_string_c, scope_connect, scope_disconnect, scope_info
C/C++ usage:
static const char ip_name[] = "node_address.fnal.gov";
int status;
void *connect_info;
RTD720_CONFIG_DATA config_data;
status = scope_connect(ip_name,&connect_info);
status = rtd720_get_config_info(connect_info,&config_data);
status = scope_disconnect(&connect_info);