Skip to content

Commit

Permalink
tools/pyboard.py: Add option --no-follow to detach after sending script.
Browse files Browse the repository at this point in the history
This option makes pyboard.py exit as soon as the script/command is
successfully sent to the device, ie it does not wait for any output.  This
can help to avoid hangs if the board is being rebooted with --comman (for
example).

Example usage:

    $ python3 ./tools/pyboard.py --device /dev/ttyUSB0 --no-follow \
        --command 'import machine; machine.reset()'
  • Loading branch information
mbuesch authored and dpgeorge committed Jan 31, 2020
1 parent 3e1bbea commit 83afd48
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions tools/pyboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,9 @@ def main():
cmd_parser.add_argument('-p', '--password', default='python', help='the telnet login password')
cmd_parser.add_argument('-c', '--command', help='program passed in as string')
cmd_parser.add_argument('-w', '--wait', default=0, type=int, help='seconds to wait for USB connected board to become available')
cmd_parser.add_argument('--follow', action='store_true', help='follow the output after running the scripts [default if no scripts given]')
group = cmd_parser.add_mutually_exclusive_group()
group.add_argument('--follow', action='store_true', help='follow the output after running the scripts [default if no scripts given]')
group.add_argument('--no-follow', action='store_true', help='Do not follow the output after running the scripts.')
cmd_parser.add_argument('-f', '--filesystem', action='store_true', help='perform a filesystem action')
cmd_parser.add_argument('files', nargs='*', help='input files')
args = cmd_parser.parse_args()
Expand All @@ -545,7 +547,11 @@ def main():

def execbuffer(buf):
try:
ret, ret_err = pyb.exec_raw(buf, timeout=None, data_consumer=stdout_write_bytes)
if args.no_follow:
pyb.exec_raw_no_follow(buf)
ret_err = None
else:
ret, ret_err = pyb.exec_raw(buf, timeout=None, data_consumer=stdout_write_bytes)
except PyboardError as er:
print(er)
pyb.close()
Expand Down

0 comments on commit 83afd48

Please sign in to comment.