Send one command, and return the response.
(command)
| 65 | return result |
| 66 | |
| 67 | def do_command(command): |
| 68 | """Send one command, and return the response.""" |
| 69 | send_command(command) |
| 70 | response = get_response() |
| 71 | print("Rcvd: <<< \n" + response) |
| 72 | return response |
| 73 | |
| 74 | def quick_test(): |
| 75 | """Example list of commands.""" |
no test coverage detected