From fabfc9c00a17e8eb37ee24d752900e58ea61fe78 Mon Sep 17 00:00:00 2001 From: Bernhard Urban Date: Sun, 31 Jan 2010 00:53:33 +0100 Subject: [PATCH] added device option --- frprog.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/frprog.py b/frprog.py index 0ca52c5..ab8aba6 100755 --- a/frprog.py +++ b/frprog.py @@ -2,8 +2,6 @@ import sys, time from SerialPort_linux import * -# serial device to communicate with -DEVICE="/dev/ttyUSB0" # baudrate used for initialization INIT_BAUDRATE=9600 # baudrate used for communication with the internal bootloader after init @@ -183,10 +181,15 @@ def main(argv=None): # check command line arguments if argv is None: argv = sys.argv - if len(argv) != 2: - print "Usage: " + argv[0] + " [target mhx-file]" + if len(argv) != 2 and len(argv) != 4: + print "Usage: " + argv[0] + " [-d DEVICE]" return 1 + # standard serial device to communicate with + DEVICE="/dev/ttyUSB0" + if len(argv) == 4: + DEVICE = argv[3] + # read in data from mhx-files before starting try: try: -- 2.25.1