About QL_OS_GetMessage function

I would like to ask what is the meaning of the number obtained from message, Param1 and param2 in the msg parameter of Ql_OS_GetMessage, and where can I find it? For example, my output: [2020-09-08 11:08:30.119] [receive] < – my other URC: Message = 4098, Param1 = 3, param2 = 1, srcTaskId = - 1515870811. I want to know what 4098 is and what 3 and 1 mean.

@Liping
Message=4098 refers to the message ID, Param1 = 3 refers to the type of event reported by URC, you can check the enum Enum_URCType in ril.h, and param2 = 1 refers to the status of the reported event type.

1 Like

I see. Thank you very much!