You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
794 B
20 lines
794 B
version 1 .
|
|
; Definitions for the internal workings of the Samsung Galaxy S7 modem driver.
|
|
|
|
; Assertion. Declares presence of a Hayes modem.
|
|
ModemPresent = <modem =samsung-galaxy-s7 @devicePath string @dataspace #!InternalProtocol> .
|
|
|
|
; TODO not yet properly specified
|
|
InternalProtocol = any .
|
|
|
|
ModemPacket = @in <from-modem @packet any> / @out <to-modem @packet any> .
|
|
|
|
; The bodies are instances of SamsungFmtMessage and SamsungRfsMessage, respectively.
|
|
FmtPacket = <fmt @body #!any> .
|
|
RfsPacket = <rfs @body #!any> .
|
|
|
|
; Assertion. Asks the modem to execute the given command.
|
|
CommandRPC = <execute-command @command FmtPacket @replyTo #!FmtPacket> .
|
|
; Message. Asks the modem to execute the given command, but not to send back the reply.
|
|
CommandEvent = <execute-command @command FmtPacket> .
|