Write/Read |
About SA Application |
Description |
Enables/disables exporting data to the FIFO (First-IN, First-OUT) data buffer. FIFO is a circular buffer that allows very fast Read-Write access. Note: FIFO commands are under the FIFO Object, and a new set of commands has been added here for binary data. |
VB Syntax |
sa.dft.FIFOEnabled = value |
Variable |
(Type) - Description |
sa.dft |
A SpectrumAnalyzerDFT (object) |
value |
(Boolean) Choose from: 0 - OFF - Export data to FIFO disabled. 1 - ON - Export data to FIFO enabled. |
Return Type |
Boolean |
Default |
OFF |
Examples |
sa.dft.FIFOEnabled = ON 'Write |
value = sa.dft.FIFOEnabled 'Read |
|
C++ Syntax |
HRESULT get_FIFOEnabled(VARIANT_BOOL* enable) |
Interface |
ISpectrumAnalyzerDFT |