diff options
| author | Keith Packard <keithp@keithp.com> | 2009-09-04 15:30:22 -0700 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2009-09-04 15:30:22 -0700 | 
| commit | 73adae3661160d410dcc802873b530d255c210e5 (patch) | |
| tree | 2fdecad2b9b36f2d991a88afced068b2b8395780 /ao-tools/ao-dbg/ao-dbg-parse.c | |
| parent | 332b056459b1352e233a8bf5f08498df12d32160 (diff) | |
Add --device/-D support to the command line tools and manuals
Use the new cc_usbdevs_find_by_arg function to locate suitable target
devices connected via USB.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'ao-tools/ao-dbg/ao-dbg-parse.c')
| -rw-r--r-- | ao-tools/ao-dbg/ao-dbg-parse.c | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/ao-tools/ao-dbg/ao-dbg-parse.c b/ao-tools/ao-dbg/ao-dbg-parse.c index 825d0e9c..dcb9099d 100644 --- a/ao-tools/ao-dbg/ao-dbg-parse.c +++ b/ao-tools/ao-dbg/ao-dbg-parse.c @@ -195,6 +195,11 @@ command_read (void)  	enum command_result result;  	struct command_function *func; +	if (!s51_tty) { +		if (!s51_device) +			s51_device = getenv("AO_DBG_DEVICE"); +		s51_tty = cc_usbdevs_find_by_arg(s51_device, "TIDongle"); +	}  	s51_dbg = ccdbg_open (s51_tty);  	if (!s51_dbg)  		exit(1); | 
