Info

SCPI Commands

SENSe:GSM:SIGNaling<Instance>:SMS:INComing:INFO:DCODing
SENSe:GSM:SIGNaling<Instance>:SMS:INComing:INFO:MTEXt
SENSe:GSM:SIGNaling<Instance>:SMS:INComing:INFO:MLENgth
SENSe:GSM:SIGNaling<Instance>:SMS:INComing:INFO:SEGMent
class Info[source]

Info commands group definition. 4 total commands, 0 Sub-groups, 4 group commands

class SegmentStruct[source]

Structure for reading output parameters. Fields:

  • Current: int: Parameter not available for the first segment Range: 2 to 12

  • Number: int: Parameter not available for the first segment Range: 2 to 12

get_dcoding()str[source]
# SCPI: SENSe:GSM:SIGNaling<Instance>:SMS:INComing:INFO:DCODing
value: str = driver.sense.sms.incoming.info.get_dcoding()

Queries the short message coding.

return

message_encoding: No help available

get_mlength()int[source]
# SCPI: SENSe:GSM:SIGNaling<Instance>:SMS:INComing:INFO:MLENgth
value: int = driver.sense.sms.incoming.info.get_mlength()

Returns the length of the last SMS message received from the MS.

return

message_length: Number of characters of the message Range: 0 to 800

get_mtext()str[source]
# SCPI: SENSe:GSM:SIGNaling<Instance>:SMS:INComing:INFO:MTEXt
value: str = driver.sense.sms.incoming.info.get_mtext()

Returns the text of the last SMS message received from the MS. Only 7-bit ASCII text is supported.

return

message_text: Message text as string

get_segment()SegmentStruct[source]
# SCPI: SENSe:GSM:SIGNaling<Instance>:SMS:INComing:INFO:SEGMent
value: SegmentStruct = driver.sense.sms.incoming.info.get_segment()

Queries the current and total number of segments of the concatenated SMS message.

return

structure: for return value, see the help for SegmentStruct structure arguments.