Info

SCPI Commands

CONFigure:CDMA:SIGNaling<Instance>:SMS:INFO:LSMessage
class Info[source]

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

class LsMessageStruct[source]

Structure for reading output parameters. Fields:

  • Timestamp: str: Information about sent time of the message.

  • Acknowledgement: enums.AckState: NACK | ACK ACK: MS acknowledged last message. NACK: MS did not acknowledge last message. (Not requested or failed.)

  • Cause_Code: str: String parameter, provides the delivery status of the message user data. Refer to ‘SMS_Cause_Code’.

  • Message_Length: int: Shows the number (decimal) of characters of the message text. Range: 0 to 10E+3

  • Message_Segments: int: Number of the current segment. Range: 0 to 1000

  • Used_Send_Method: enums.SmsSendMethod: PCH | SO6 | SO14 | TCH Used send method of the last sent message. PCH: Paging channel SO6: Service option 6 SO14: Service option 14 TCH: Traffic channel

get_ls_message()LsMessageStruct[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:SMS:INFO:LSMessage
value: LsMessageStruct = driver.configure.sms.info.get_ls_message()

Query information of the last sent message.

return

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

Cloning the Group

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

Subgroups