Ai

SCPI Commands :

[SOURce<HW>]:BB:EUTRa:DL:MBSFn:AI:ID
[SOURce<HW>]:BB:EUTRa:DL:MBSFn:AI:NIND
[SOURce<HW>]:BB:EUTRa:DL:MBSFn:AI:NMRL
class AiCls[source]

Ai commands group definition. 18 total commands, 1 Subgroups, 3 group commands

get_id() int[source]
# SCPI: [SOURce<HW>]:BB:EUTRa:DL:MBSFn:AI:ID
value: int = driver.source.bb.eutra.downlink.mbsfn.ai.get_id()

Defines the MBSFN area ID, parameter NidMBSFN.

return

area_id: integer Range: 0 to 255

get_nind() int[source]
# SCPI: [SOURce<HW>]:BB:EUTRa:DL:MBSFn:AI:NIND
value: int = driver.source.bb.eutra.downlink.mbsfn.ai.get_nind()

Defines which PDCCH bit is used to notify the UE about change of the MCCH applicable for this MBSFN area.

return

notif_indicator: integer Range: 0 to 7

get_nmrl() int[source]
# SCPI: [SOURce<HW>]:BB:EUTRa:DL:MBSFn:AI:NMRL
value: int = driver.source.bb.eutra.downlink.mbsfn.ai.get_nmrl()

Defines how many symbols from the beginning of the subframe constitute the non-MBSFN region.

return

region_length: integer Range: 1 to 2

set_id(area_id: int) None[source]
# SCPI: [SOURce<HW>]:BB:EUTRa:DL:MBSFn:AI:ID
driver.source.bb.eutra.downlink.mbsfn.ai.set_id(area_id = 1)

Defines the MBSFN area ID, parameter NidMBSFN.

param area_id

integer Range: 0 to 255

set_nind(notif_indicator: int) None[source]
# SCPI: [SOURce<HW>]:BB:EUTRa:DL:MBSFn:AI:NIND
driver.source.bb.eutra.downlink.mbsfn.ai.set_nind(notif_indicator = 1)

Defines which PDCCH bit is used to notify the UE about change of the MCCH applicable for this MBSFN area.

param notif_indicator

integer Range: 0 to 7

set_nmrl(region_length: int) None[source]
# SCPI: [SOURce<HW>]:BB:EUTRa:DL:MBSFn:AI:NMRL
driver.source.bb.eutra.downlink.mbsfn.ai.set_nmrl(region_length = 1)

Defines how many symbols from the beginning of the subframe constitute the non-MBSFN region.

param region_length

integer Range: 1 to 2

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.bb.eutra.downlink.mbsfn.ai.clone()

Subgroups