eg25-control: mention atinout as a way to send AT commands

This commit is contained in:
Colin 2023-09-10 12:56:56 +00:00
parent 664bd473c3
commit c5ccc0ab34

View File

@ -232,6 +232,8 @@ class Sequencer:
# this returns the mmcli output, which looks like:
# response: 'blah'
# i.e., quoted, and with a `response: ` prefix
#
# if you don't have mmcli, for some reason, an alternative would be `atinout`
return self._mmcli([f"--command=+{cmd}"], check=check)
def _at_structured_cmd(self, cmd: str, subcmd: str | None = None, value: str | None = None, check: bool = True) -> str: