/* ARB_GEN.C - This program generates a 4096 points ramp. The data to */
/* generate the ramp is transferred to the AFG as voltages */
/* Include the following header files */
#include <stdio.h>
#include <string.h>
#include <malloc.h>
/* Use “alloc.h” for Turbo C(c) or C++(c) */
#include <cfunc.h>
/* This file is from the HP-IB Command Library Disk */
#define ISC 7L
/* Assigns the HP-IB select code */
#define ADDR 70910L /*
Assign an I/O path between the computer and the AFG
*/
/* Functions */
void gen_seg(void);
void cmd_exe(char *commands[], int length);
void run_query(void);
void rst_clr(void);
void send_data(char *commands, float *Wave_seg, int num_size);
void check_error(char *func_tion);
/*********************************************************************************/
void main(void)
/* Run the program */
{
rst_clr();
/* Reset the AFG */
gen_seg();
/* Generate segment list and output sequence */
run_query();
/* Query waveform segment memory */
}
/*********************************************************************************/
void gen_seg(void)
{
char static *set_commands[] =/* Use “set_commands” to setup the AFG */
{
“SOUR:ROSC:SOUR INT;”
/* Select the Ref. Oscillator */
“:SOUR:FREQ:FIX 1e3;”
/* Set waveform frequency */
“:SOUR:FUNC:SHAP USER;”
/*
Command to select the user function
*/
“:SOUR:VOLT:LEV:IMM:AMPL 5.1V”,
/* Set the amplitude */
“SOUR:LIST:SEGM:SEL a”
/* Select the segment name */
},
Continued on next page
27 Getting Started with the HP E1340A
Chapter 1
Содержание E1340A
Страница 12: ...Notes 12 HP E1340A Arbitrary Function Generator Module User s Manual ...
Страница 14: ...14 HP E1340A Arbitrary Function Generator Module User s Manual ...
Страница 42: ...Chapter 2 Generating Standard Waveforms with the HP E1340A 42 ...
Страница 54: ...Chapter 2 Generating Standard Waveforms with the HP E1340A 54 ...
Страница 57: ...Figure 3 1 Generating Arbitrary Waveforms 57 Generating Arbitrary Waveforms with the HP E1340A Chapter 3 ...
Страница 58: ...Chapter 3 Generating Arbitrary Waveforms with the HP E1340A 58 ...
Страница 84: ...Chapter 4 HP E1340A Sweeping and Frequency Shift Keying 84 ...
Страница 130: ...Chapter 6 HP E1340A High Speed Operation 130 ...
Страница 202: ...202 HP E1340A SCPI Conformance Information Chapter 7 ...
Страница 204: ...Figure 8 1 HP E1340A Status Groups and Associated Registers Chapter 8 HP E1340A AFG Status 204 ...
Страница 218: ...218 HP E1340A Specifications Appendix A ...
Страница 284: ...284 HP E1340A Register Based Programming Appendix C ...
Страница 295: ...Index HP E1340A Arbitrary Function Generator User s Manual 295 ...