Lines Matching full:command
34 Send every 0.5 second "enter" command to the device until shell prompt
54 self, command: str, timeout: float | None = None, print_output: bool = True
57 Send shell command to a device and return response. Passed command
58 is extended by double enter sings - first one to execute this command
60 execution was finished. Method returns printout of the executed command.
63 command_ext = f'{command}\n\n'
65 regex_command = f'.*{re.escape(command)}'
69 … # wait for device command print - it should be done immediately after sending command to device
75 # wait for device command execution
87 Take the output of exec_command, which can contain log messages and command prompts,
88 and filter them to obtain only the command output.
133 Helper class to keep data from `mcuboot` shell command.
141 Factory to create class from the output of `mcuboot` shell command.