Bmp

SCPI Commands :

[SOURce<HW>]:BB:EUTRa:DL:EMTC:BMP:PBCHrep
[SOURce<HW>]:BB:EUTRa:DL:EMTC:BMP:SIBBr
[SOURce<HW>]:BB:EUTRa:DL:EMTC:BMP:STARt
[SOURce<HW>]:BB:EUTRa:DL:EMTC:BMP:SUBFrames
Commands in total: 7
Subgroups: 3
Direct child commands: 4
get_pbchrep() bool[source]
# [SOURce<HW>]:BB:EUTRa:DL:EMTC:BMP:PBCHrep
value: bool = driver.source.bb.eutra.downlink.emtc.bmp.get_pbchrep()

Configures the cell for PBCH repetition.

Returns:

pbch_repetitions: 1 | ON | 0| OFF

get_sibbr() int[source]
# [SOURce<HW>]:BB:EUTRa:DL:EMTC:BMP:SIBBr
value: int = driver.source.bb.eutra.downlink.emtc.bmp.get_sibbr()

Sets the number of times the PDSCH allocation carrying the SIB1-BR is repeated.

Returns:

sched_info_sib_1_br: integer Range: 0 to 18

get_start() NumberA[source]
# [SOURce<HW>]:BB:EUTRa:DL:EMTC:BMP:STARt
value: enums.NumberA = driver.source.bb.eutra.downlink.emtc.bmp.get_start()

Defines the first symbol within a frame that can be used for eMTC.

Returns:

starting_symbol: 1 | 2| 3 | 4

get_sub_frames() EutraBitmap[source]
# [SOURce<HW>]:BB:EUTRa:DL:EMTC:BMP:SUBFrames
value: enums.EutraBitmap = driver.source.bb.eutra.downlink.emtc.bmp.get_sub_frames()

Sets the valid subframes configuration over 10ms or 40ms.

Returns:

bitmap_subframes: 10 | 40

set_pbchrep(pbch_repetitions: bool) None[source]
# [SOURce<HW>]:BB:EUTRa:DL:EMTC:BMP:PBCHrep
driver.source.bb.eutra.downlink.emtc.bmp.set_pbchrep(pbch_repetitions = False)

Configures the cell for PBCH repetition.

Parameters:

pbch_repetitions – 1 | ON | 0| OFF

set_sibbr(sched_info_sib_1_br: int) None[source]
# [SOURce<HW>]:BB:EUTRa:DL:EMTC:BMP:SIBBr
driver.source.bb.eutra.downlink.emtc.bmp.set_sibbr(sched_info_sib_1_br = 1)

Sets the number of times the PDSCH allocation carrying the SIB1-BR is repeated.

Parameters:

sched_info_sib_1_br – integer Range: 0 to 18

set_start(starting_symbol: NumberA) None[source]
# [SOURce<HW>]:BB:EUTRa:DL:EMTC:BMP:STARt
driver.source.bb.eutra.downlink.emtc.bmp.set_start(starting_symbol = enums.NumberA._1)

Defines the first symbol within a frame that can be used for eMTC.

Parameters:

starting_symbol – 1 | 2| 3 | 4

set_sub_frames(bitmap_subframes: EutraBitmap) None[source]
# [SOURce<HW>]:BB:EUTRa:DL:EMTC:BMP:SUBFrames
driver.source.bb.eutra.downlink.emtc.bmp.set_sub_frames(bitmap_subframes = enums.EutraBitmap._10)

Sets the valid subframes configuration over 10ms or 40ms.

Parameters:

bitmap_subframes – 10 | 40

Cloning the Group

# Create a copy of the original group, that exists independently
bmp_copy = driver.source.bb.eutra.downlink.emtc.bmp.clone()

Subgroups