Cc

SCPI Commands :

[SOURce<HW>]:BB:NR5G:NODE:CC:CINFo
[SOURce<HW>]:BB:NR5G:NODE:CC:CPYFrom
[SOURce<HW>]:BB:NR5G:NODE:CC:CPYSel
[SOURce<HW>]:BB:NR5G:NODE:CC:CPYTo
[SOURce<HW>]:BB:NR5G:NODE:CC:LOAD
[SOURce<HW>]:BB:NR5G:NODE:CC:NEWCarriers
class CcCls[source]

Cc commands group definition. 7 total commands, 1 Subgroups, 6 group commands

get_cinfo() str[source]
# SCPI: [SOURce<HW>]:BB:NR5G:NODE:CC:CINFo
value: str = driver.source.bb.nr5G.node.cc.get_cinfo()
Queries basic information about the carrier you want to duplicate.

INTRO_CMD_HELP: Prerequisites for this command

  • Select a file as the source of the new carrier ([:SOURce<hw>]:BB:NR5G:NODE:CC:CPYSel) .

return

sel_carrier_info: string String containing the information about the carrier.

get_cpy_from() int[source]
# SCPI: [SOURce<HW>]:BB:NR5G:NODE:CC:CPYFrom
value: int = driver.source.bb.nr5G.node.cc.get_cpy_from()
Selects the carrier you want to duplicate.

INTRO_CMD_HELP: Prerequisites for this command

  • Selecting a carrier is only possible if there are more than one carrier in the table or in the configuration file.

return

copy_from: No help available

get_cpy_sel() RsSmbv.enums.CopySelection[source]
# SCPI: [SOURce<HW>]:BB:NR5G:NODE:CC:CPYSel
value: enums.CopySelection = driver.source.bb.nr5G.node.cc.get_cpy_sel()

Selects the source of a carrier that you want to create based on an existing carrier.

return

copy_selection: No help available

get_cpy_to() str[source]
# SCPI: [SOURce<HW>]:BB:NR5G:NODE:CC:CPYTo
value: str = driver.source.bb.nr5G.node.cc.get_cpy_to()

Queries the index number the new carriers are created with.

return

copy_from: string String containing the number of the new carriers.

get_load() str[source]
# SCPI: [SOURce<HW>]:BB:NR5G:NODE:CC:LOAD
value: str = driver.source.bb.nr5G.node.cc.get_load()
Selects a file containing an existing carrier you want to duplicate.

INTRO_CMD_HELP: Prerequisites for this command

  • Select a file as the source of the new carrier ([:SOURce<hw>]:BB:NR5G:NODE:CC:CPYSel) .

return

filename: string String containing the file name.

get_new_carriers() int[source]
# SCPI: [SOURce<HW>]:BB:NR5G:NODE:CC:NEWCarriers
value: int = driver.source.bb.nr5G.node.cc.get_new_carriers()

Defines the number of carriers you want to create based on an existing carrier.

return

num_of_new: No help available

set_cpy_from(copy_from: int) None[source]
# SCPI: [SOURce<HW>]:BB:NR5G:NODE:CC:CPYFrom
driver.source.bb.nr5G.node.cc.set_cpy_from(copy_from = 1)
Selects the carrier you want to duplicate.

INTRO_CMD_HELP: Prerequisites for this command

  • Selecting a carrier is only possible if there are more than one carrier in the table or in the configuration file.

param copy_from

integer Range: 0 to 15

set_cpy_sel(copy_selection: RsSmbv.enums.CopySelection) None[source]
# SCPI: [SOURce<HW>]:BB:NR5G:NODE:CC:CPYSel
driver.source.bb.nr5G.node.cc.set_cpy_sel(copy_selection = enums.CopySelection.CARRier)

Selects the source of a carrier that you want to create based on an existing carrier.

param copy_selection

CARRier Carrier from the current carrier table. LOADfile Carrier from a previously saved signal configuration (.nr5g file) .

set_load(filename: str) None[source]
# SCPI: [SOURce<HW>]:BB:NR5G:NODE:CC:LOAD
driver.source.bb.nr5G.node.cc.set_load(filename = 'abc')
Selects a file containing an existing carrier you want to duplicate.

INTRO_CMD_HELP: Prerequisites for this command

  • Select a file as the source of the new carrier ([:SOURce<hw>]:BB:NR5G:NODE:CC:CPYSel) .

param filename

string String containing the file name.

set_new_carriers(num_of_new: int) None[source]
# SCPI: [SOURce<HW>]:BB:NR5G:NODE:CC:NEWCarriers
driver.source.bb.nr5G.node.cc.set_new_carriers(num_of_new = 1)

Defines the number of carriers you want to create based on an existing carrier.

param num_of_new

integer Range: 0 to 15

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.bb.nr5G.node.cc.clone()

Subgroups