*seg_commands =
/* Use “seg_commands” to store segments */
“SOUR:LIST:SEGM:VOLT ”,
/* Command to send volts data */
*out_commands[] =
/*
Use the “out_commands” array to generate output
*/
{
“SOUR:FUNC:USER a”,
/* Select the user name */
“INIT:IMM”
/* Start waveform generation */
};
float
*Wave_seg;
int
loop,
seg_size = 4096;
/* Set the segment size to 4096 points */
/*
Allocate sufficient memory for storing the segments into computer memory
*/
Wave_seg = (float*) malloc (seg_size * sizeof (float));
/* Setup the AFG */
cmd_exe(set_commands, sizeof(set_commands) / sizeof(char*));
/* Call routine to check for AFG errors */
check_error(“gen_seg (set_commands)”);
/* Calculate the segments */
for (loop = 0; loop < seg_size; loop ++)
Wave_seg[loop] = (loop * .00122);
/* Call function to execute the final command with segment data */
send_data(seg_commands, Wave_seg, seg_size);
/* Call routine to check for AFG errors */
check_error(“gen_seg (seg_commands)”);
/* Setup the AFG for output */
cmd_exe(out_commands, sizeof(out_commands) / sizeof(char*));
/* Call routine to check for AFG errors */
check_error(“gen_seg (out_commands)”);
Continued on next page
Chapter 1
Getting Started with the HP E1340A 28
Содержание 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 ...