AWG_API -
ini
Description
Initializes the AWG module.
Syntax
C++
void ini(UInt32 series_number)
Arguments
| series_number | Series Number of the AWG module |
Return Value
| None |
Example
int seriesNumber = awg_group.get_sn(0);
awg.ini(seriesNumber);
Notes
Please use the get_sn method to get the Series Number.
When you call the ini function, some of the member properties will be initialized to their default values. To see these default values, please see the Properties section main page.
memory_data
Description
Retrieves the waveform data word from memory
Syntax
C++
UInt64 memory_data(UInt32 memAddress)
Arguments
| memAddress | memory address |
Return Value
| dataWord | data word |
Example
unsigned dataWord;
unsigned memAddress = 0x0000A;
dataWord = awg.memory_data(memAddress);
Notes
This method is a helpful debugging tool should you ever need it.