R&S FSL
Enviar Comandos Simples de Configuración al
Instrumento
Este ejemplo muestra cómo enviar comandos para modificar la frecuencia central, span y
nivel de referencia del instrumento .
REM –––––––– Configuración del Instrumento –––––––––------------–––––––––––––––
PUBLIC SUB SimpleSettings()
CALL InstrWrite(analyzer, "FREQUENCY:CENTER 128MHz")
CALL InstrWrite(analyzer, "FREQUENCY:SPAN 10MHZ")
CALL InstrWrite(analyzer, "DISPLAY:TRACE:Y:RLEVEL –10dBm")
END SUB
REM ************************************************************************
Conmutar a Modo Manual
REM –––––––– Conmutar el instrumento a modo manual –--------–––––––––––––––––––––
CALL viGpibControlREN(analyzer, VI_GPIB_REN_ADDRESS_GTL)
REM ************************************************************************
Leer las Configuraciones del Instrumento
Las configuraciones realizadas anteriormente se pueden leer. Para ello, se usan los
comandos abreviados.
REM ––––––––– Lectura de configuraciones del instrumento ––––––––––––––––––––––––
PUBLIC SUB ReadSettings()
Dim retCount as Long
CFfrequency$ = SPACE$(20)
CALL InstrWrite(analyzer, "FREQ:CENT?")
CALL InstrRead(analyzer, CFfrequency$, 20, retCount)
CFspan$ = SPACE$(20)
CALL InstrWrite(analyzer, "FREQ:SPAN?")
CALL InstrRead(analyzer, CFspan$, 20, retCount)
RLlevel$ = SPACE$(20)
CALL InstrWrite(analyzer, "DISP:TRAC:Y:RLEV?")
CALL InstrRead(analyzer, RLlevel$, 20, retCount)
1300.2519.67
'Span 10 MHz
'Leer valor
Introducción Breve al Control Remoto
'Frecuencia Central 128 MHz
'Nivel de Referencia –10dBm
'Instrumento en modo Local
'Texto variable (20 caracteres)
'Preguntar Frecuencia Central
'Texto variable (20 caracteres)
'Preguntar span
'Leer valor
'Texto variable (20 caracteres)
'Preguntar nivel de referencia
'Leer valor
6.7
ES-3