Incoming

SCPI Commands

CONFigure:CDMA:SIGNaling<Instance>:SMS:INComing:CSSMs
class Incoming[source]

Incoming commands group definition. 3 total commands, 1 Sub-groups, 1 group commands

get_cs_sms()bool[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:SMS:INComing:CSSMs
value: bool = driver.configure.sms.incoming.get_cs_sms()

Enable or disable that the R&S CMW concatenates received message files to one file. The received files have to arrive in a specified interval and need the same header information about encoding, teleservice id and sent MS number. Otherwise each received SMS message is saved separately.

return

concatenate_sms: OFF | ON OFF: Disable concatenation ON: Enable concatenation of multiple messages

set_cs_sms(concatenate_sms: bool)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:SMS:INComing:CSSMs
driver.configure.sms.incoming.set_cs_sms(concatenate_sms = False)

Enable or disable that the R&S CMW concatenates received message files to one file. The received files have to arrive in a specified interval and need the same header information about encoding, teleservice id and sent MS number. Otherwise each received SMS message is saved separately.

param concatenate_sms

OFF | ON OFF: Disable concatenation ON: Enable concatenation of multiple messages

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.sms.incoming.clone()

Subgroups