diff options
author | Mark Alexander <marka@cygnus> | 1996-05-21 06:09:23 +0000 |
---|---|---|
committer | Mark Alexander <marka@cygnus> | 1996-05-21 06:09:23 +0000 |
commit | c92f31c6e57cb4a136b75a276ecccd97c39f79ed (patch) | |
tree | f9bfb78be9c0d04b028d2aa6747e9207ebfcabb9 /gdb/remote-est.c | |
parent | 5fdebee3063a60da691b1c54fbc2278149aa41ec (diff) | |
download | gdb-c92f31c6e57cb4a136b75a276ecccd97c39f79ed.zip gdb-c92f31c6e57cb4a136b75a276ecccd97c39f79ed.tar.gz gdb-c92f31c6e57cb4a136b75a276ecccd97c39f79ed.tar.bz2 |
* dsrec.c (load_srec): Add WAITACK parameter, for machines
like EST visionICE that send back an ACK after each S-record.
* monitor.c (monitor_wait_srec_ack): New function.
(monitor_load): Pass monitor_wait_srec_ack to load_srec
if the monitor's MO_SREC_ACK flag is set.
* monitor.h: Define MO_SREC_ACK flag.
* remote-est.c (est_cmds): Add MO_SREC_ACK flag.
* sh3-rom.c (sh3_load): Accomodate change in load_srec prototype.
* srec.h: Add WAITACK parameter to load_srec prototype.
Diffstat (limited to 'gdb/remote-est.c')
-rw-r--r-- | gdb/remote-est.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/remote-est.c b/gdb/remote-est.c index cfa9731..25c25ac 100644 --- a/gdb/remote-est.c +++ b/gdb/remote-est.c @@ -97,7 +97,8 @@ static char *est_inits[] = {"he\r", /* Resets the prompt, and clears repeated cm static struct monitor_ops est_cmds = { - MO_CLR_BREAK_USES_ADDR | MO_FILL_USES_ADDR | MO_NEED_REGDUMP_AFTER_CONT, + MO_CLR_BREAK_USES_ADDR | MO_FILL_USES_ADDR | MO_NEED_REGDUMP_AFTER_CONT | + MO_SREC_ACK, est_inits, /* Init strings */ "go\r", /* continue command */ "sidr\r", /* single step */ |