Home | History | Annotate | Download | only in cellular

Lines Matching defs:Send

52     The SCPI driver must export:  Query, Send, Reset and Close
61 """Send the SCPI command and return the response."""
65 def Send(self, command):
66 """Send the SCPI command."""
67 self.driver.Send(command)
104 self.Send('*CLS') # Clear status
122 send strings quoted with " because that's what the 8960 returns.
123 We also fail if you send 1 and receive +1 back.
130 self.Send('%s %s' % (command, arg))
143 self.Send(c)
146 self.Send(c)