Agilent Technologies 2000 X-Series Instrukcja Obsługi Strona 887

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
  • Strona
    / 930
  • Spis treści
  • BOOKMARKI
  • Oceniono. / 5. Na podstawie oceny klientów
Przeglądanie stron 886
Programming Examples 38
Agilent InfiniiVision 2000 X-Series Oscilloscopes Programmer's Guide 887
{
char message[80];
strcpy(message, command);
strcat(message, "\n");
iprintf(id, message);
check_instrument_errors();
}
/* Command with IEEE definite-length block.
* --------------------------------------------------------------- */
int do_command_ieeeblock(command, num_bytes)
char *command;
int num_bytes;
{
char message[80];
int data_length;
strcpy(message, command);
strcat(message, " #8%08d");
iprintf(id, message, num_bytes);
ifwrite(id, ieeeblock_data, num_bytes, 1, &data_length);
check_instrument_errors();
return(data_length);
}
/* Query for a string result.
* --------------------------------------------------------------- */
void do_query_string(query)
char *query;
{
char message[80];
strcpy(message, query);
strcat(message, "\n");
iprintf(id, message);
iscanf(id, "%t\n", str_result);
check_instrument_errors();
}
/* Query for a number result.
* --------------------------------------------------------------- */
void do_query_number(query)
char *query;
{
char message[80];
strcpy(message, query);
strcat(message, "\n");
iprintf(id, message);
iscanf(id, "%lf", &num_result);
Przeglądanie stron 886
1 2 ... 882 883 884 885 886 887 888 889 890 891 892 ... 929 930

Komentarze do niniejszej Instrukcji

Brak uwag