Data
SCPI Commands :
[SOURce<HW>]:BB:DVB:DVBH:[HP]:DATA:DSELection
[SOURce<HW>]:BB:DVB:DVBH:[HP]:DATA
- Commands in total: 2Subgroups: 0Direct child commands: 2
- get_dselection() str[source]
# [SOURce<HW>]:BB:DVB:DVBH:[HP]:DATA:DSELection value: str = driver.source.bb.dvb.dvbh.hp.data.get_dselection()
Selects an existing TS file from the default directory or from the specific directory. TS files are files with extension gts, ts, or trp. Refer to ‘Accessing Files in the Default or Specified Directory’ for general information on file handling in the default and in a specific directory.
- Returns:
dselection: string Filename incl. file extension or complete file path
- get_value() DvbDataSour[source]
# [SOURce<HW>]:BB:DVB:DVBH:[HP]:DATA value: enums.DvbDataSour = driver.source.bb.dvb.dvbh.hp.data.get_value()
Selects the data source to be used.
- Returns:
data: PAC0 | PAC1 | PN15 | PN23 | DLISt ZERO Internal 0 is used. ONE Internal 1 is used. PN15/23 Internally generated PRBS data as per CCITT with period lengths between (29-1 and 223-1) . DLISt Internal data from a TS file is used.
- set_dselection(dselection: str) None[source]
# [SOURce<HW>]:BB:DVB:DVBH:[HP]:DATA:DSELection driver.source.bb.dvb.dvbh.hp.data.set_dselection(dselection = 'abc')
Selects an existing TS file from the default directory or from the specific directory. TS files are files with extension gts, ts, or trp. Refer to ‘Accessing Files in the Default or Specified Directory’ for general information on file handling in the default and in a specific directory.
- Parameters:
dselection – string Filename incl. file extension or complete file path
- set_value(data: DvbDataSour) None[source]
# [SOURce<HW>]:BB:DVB:DVBH:[HP]:DATA driver.source.bb.dvb.dvbh.hp.data.set_value(data = enums.DvbDataSour.DLISt)
Selects the data source to be used.
- Parameters:
data – PAC0 | PAC1 | PN15 | PN23 | DLISt ZERO Internal 0 is used. ONE Internal 1 is used. PN15/23 Internally generated PRBS data as per CCITT with period lengths between (29-1 and 223-1) . DLISt Internal data from a TS file is used.