Wait for next buffer ready.
(self, ptr, bufsize)
| 146 | self.lib.AT_QueueBuffer(self.AT_H, ct.byref(bufptr), value) |
| 147 | |
| 148 | def waitbuffer(self, ptr, bufsize): |
| 149 | """Wait for next buffer ready. |
| 150 | """ |
| 151 | timeout = ct.c_int(20000) |
| 152 | self.lib.AT_WaitBuffer(self.AT_H, ct.byref(ptr), ct.byref(bufsize), timeout) |
| 153 | |
| 154 | def command(self, strcommand): |
| 155 | """Run command. |