1 /* Remote target communications for serial-line targets using SDS' protocol.
3 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2004, 2006 Free Software
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
23 /* This interface was written by studying the behavior of the SDS
24 monitor on an ADS 821/860 board, and by consulting the
25 documentation of the monitor that is available on Motorola's web
29 #include "gdb_string.h"
33 #include "exceptions.h"
39 #include "gdb-stabs.h"
40 #include "gdbthread.h"
47 extern void _initialize_remote_sds (void);
49 /* Declarations of local functions. */
51 static int sds_write_bytes (CORE_ADDR
, char *, int);
53 static int sds_read_bytes (CORE_ADDR
, char *, int);
55 static void sds_files_info (struct target_ops
*ignore
);
57 static int sds_xfer_memory (CORE_ADDR
, char *, int, int,
58 struct mem_attrib
*, struct target_ops
*);
60 static void sds_prepare_to_store (void);
62 static void sds_fetch_registers (int);
64 static void sds_resume (ptid_t
, int, enum target_signal
);
66 static int sds_start_remote (void *);
68 static void sds_open (char *, int);
70 static void sds_close (int);
72 static void sds_store_registers (int);
74 static void sds_mourn (void);
76 static void sds_load (char *, int);
78 static int getmessage (unsigned char *, int);
80 static int putmessage (unsigned char *, int);
82 static int sds_send (unsigned char *, int);
84 static int readchar (int);
86 static ptid_t
sds_wait (ptid_t
, struct target_waitstatus
*);
88 static void sds_kill (void);
90 static int fromhex (int);
92 static void sds_detach (char *, int);
94 static void sds_interrupt (int);
96 static void sds_interrupt_twice (int);
98 static void interrupt_query (void);
100 static int read_frame (char *);
102 static void init_sds_ops (void);
104 static void sds_command (char *args
, int from_tty
);
106 /* Define the target operations vector. */
108 static struct target_ops sds_ops
;
110 /* This was 5 seconds, which is a long time to sit and wait.
111 Unless this is going though some terminal server or multiplexer or
112 other form of hairy serial connection, I would think 2 seconds would
115 static int sds_timeout
= 2;
117 /* Descriptor for I/O to remote machine. Initialize it to NULL so
118 that sds_open knows that we don't have a file open when the program
121 static struct serial
*sds_desc
= NULL
;
123 /* This limit comes from the monitor. */
127 /* Maximum number of bytes to read/write at once. The value here
128 is chosen to fill up a packet (the headers account for the 32). */
129 #define MAXBUFBYTES ((PBUFSIZ-32)/2)
131 static int next_msg_id
;
133 static int just_started
;
135 static int message_pending
;
138 /* Clean up connection to a remote debugger. */
141 sds_close (int quitting
)
144 serial_close (sds_desc
);
148 /* Stub for catch_errors. */
151 sds_start_remote (void *dummy
)
154 unsigned char buf
[200];
156 immediate_quit
++; /* Allow user to interrupt it */
158 /* Ack any packet which the remote side has already sent. */
159 serial_write (sds_desc
, "{#*\r\n", 5);
160 serial_write (sds_desc
, "{#}\r\n", 5);
162 while ((c
= readchar (1)) >= 0)
163 printf_unfiltered ("%c", c
);
164 printf_unfiltered ("\n");
176 start_remote (); /* Initialize gdb process mechanisms */
180 /* Open a connection to a remote debugger.
181 NAME is the filename used for communication. */
184 sds_open (char *name
, int from_tty
)
187 error ("To open a remote debug connection, you need to specify what serial\n\
188 device is attached to the remote system (e.g. /dev/ttya).");
190 target_preopen (from_tty
);
192 unpush_target (&sds_ops
);
194 sds_desc
= serial_open (name
);
196 perror_with_name (name
);
200 if (serial_setbaudrate (sds_desc
, baud_rate
))
202 serial_close (sds_desc
);
203 perror_with_name (name
);
208 serial_raw (sds_desc
);
210 /* If there is something sitting in the buffer we might take it as a
211 response to a command, which would be bad. */
212 serial_flush_input (sds_desc
);
216 puts_filtered ("Remote debugging using ");
217 puts_filtered (name
);
218 puts_filtered ("\n");
220 push_target (&sds_ops
); /* Switch to using remote target now */
224 /* Start the remote connection; if error (0), discard this target.
225 In particular, if the user quits, be sure to discard it (we'd be
226 in an inconsistent state otherwise). */
227 if (!catch_errors (sds_start_remote
, NULL
,
228 "Couldn't establish connection to remote target\n",
233 /* This takes a program previously attached to and detaches it. After
234 this is done, GDB can be used to debug some other program. We
235 better not have left any breakpoints in the target program or it'll
236 die when it hits one. */
239 sds_detach (char *args
, int from_tty
)
244 error ("Argument given to \"detach\" when remotely debugging.");
247 /* Tell the remote target to detach. */
254 puts_filtered ("Ending remote debugging.\n");
257 /* Convert hex digit A to a number. */
262 if (a
>= '0' && a
<= '9')
264 else if (a
>= 'a' && a
<= 'f')
267 error ("Reply contains invalid hex digit %d", a
);
271 tob64 (unsigned char *inbuf
, char *outbuf
, int len
)
277 error ("bad length");
280 for (i
= 0; i
< len
; i
+= 3)
282 /* Collect the next three bytes into a number. */
283 sum
= ((long) *inbuf
++) << 16;
284 sum
|= ((long) *inbuf
++) << 8;
285 sum
|= ((long) *inbuf
++);
287 /* Spit out 4 6-bit encodings. */
288 *p
++ = ((sum
>> 18) & 0x3f) + '0';
289 *p
++ = ((sum
>> 12) & 0x3f) + '0';
290 *p
++ = ((sum
>> 6) & 0x3f) + '0';
291 *p
++ = (sum
& 0x3f) + '0';
297 fromb64 (char *inbuf
, char *outbuf
, int len
)
302 error ("bad length");
304 for (i
= 0; i
< len
; i
+= 4)
306 /* Collect 4 6-bit digits. */
307 sum
= (*inbuf
++ - '0') << 18;
308 sum
|= (*inbuf
++ - '0') << 12;
309 sum
|= (*inbuf
++ - '0') << 6;
310 sum
|= (*inbuf
++ - '0');
312 /* Now take the resulting 24-bit number and get three bytes out
314 *outbuf
++ = (sum
>> 16) & 0xff;
315 *outbuf
++ = (sum
>> 8) & 0xff;
316 *outbuf
++ = sum
& 0xff;
319 return (len
/ 4) * 3;
323 /* Tell the remote machine to resume. */
325 static enum target_signal last_sent_signal
= TARGET_SIGNAL_0
;
329 sds_resume (ptid_t ptid
, int step
, enum target_signal siggnal
)
331 unsigned char buf
[PBUFSIZ
];
333 last_sent_signal
= siggnal
;
334 last_sent_step
= step
;
336 buf
[0] = (step
? 21 : 20);
337 buf
[1] = 0; /* (should be signal?) */
342 /* Send a message to target to halt it. Target will respond, and send
343 us a message pending notice. */
346 sds_interrupt (int signo
)
348 unsigned char buf
[PBUFSIZ
];
350 /* If this doesn't work, try more severe steps. */
351 signal (signo
, sds_interrupt_twice
);
354 fprintf_unfiltered (gdb_stdlog
, "sds_interrupt called\n");
360 static void (*ofunc
) ();
362 /* The user typed ^C twice. */
365 sds_interrupt_twice (int signo
)
367 signal (signo
, ofunc
);
371 signal (signo
, sds_interrupt
);
374 /* Ask the user what to do when an interrupt is received. */
377 interrupt_query (void)
379 target_terminal_ours ();
381 if (query ("Interrupted while waiting for the program.\n\
382 Give up (and stop debugging it)? "))
384 target_mourn_inferior ();
385 deprecated_throw_reason (RETURN_QUIT
);
388 target_terminal_inferior ();
391 /* If nonzero, ignore the next kill. */
394 /* Wait until the remote machine stops, then return, storing status in
395 STATUS just as `wait' would. Returns "pid" (though it's not clear
396 what, if anything, that means in the case of this target). */
399 sds_wait (ptid_t ptid
, struct target_waitstatus
*status
)
401 unsigned char buf
[PBUFSIZ
];
404 status
->kind
= TARGET_WAITKIND_EXITED
;
405 status
->value
.integer
= 0;
407 ofunc
= (void (*)()) signal (SIGINT
, sds_interrupt
);
409 signal (SIGINT
, ofunc
);
414 status
->kind
= TARGET_WAITKIND_STOPPED
;
415 return inferior_ptid
;
425 retlen
= sds_send (buf
, 1);
428 fprintf_unfiltered (gdb_stdlog
, "Signals: %02x%02x %02x %02x\n",
433 status
->kind
= TARGET_WAITKIND_STOPPED
;
434 status
->value
.sig
= TARGET_SIGNAL_TRAP
;
439 return inferior_ptid
;
442 static unsigned char sprs
[16];
444 /* Read the remote registers into the block REGS. */
445 /* Currently we just read all the registers, so we don't use regno. */
448 sds_fetch_registers (int regno
)
450 unsigned char buf
[PBUFSIZ
];
452 char *regs
= alloca (deprecated_register_bytes ());
454 /* Unimplemented registers read as all bits zero. */
455 memset (regs
, 0, deprecated_register_bytes ());
460 retlen
= sds_send (buf
, 3);
462 for (i
= 0; i
< 4 * 6; ++i
)
463 regs
[i
+ 4 * 32 + 8 * 32] = buf
[i
];
464 for (i
= 0; i
< 4 * 4; ++i
)
465 sprs
[i
] = buf
[i
+ 4 * 7];
470 retlen
= sds_send (buf
, 3);
472 for (i
= 0; i
< retlen
; i
++)
475 /* (should warn about reply too short) */
477 for (i
= 0; i
< NUM_REGS
; i
++)
478 regcache_raw_supply (current_regcache
, i
,
479 ®s
[DEPRECATED_REGISTER_BYTE (i
)]);
482 /* Prepare to store registers. Since we may send them all, we have to
483 read out the ones we don't want to change first. */
486 sds_prepare_to_store (void)
488 /* Make sure the entire registers array is valid. */
489 deprecated_read_register_bytes (0, (char *) NULL
, deprecated_register_bytes ());
492 /* Store register REGNO, or all registers if REGNO == -1, from the contents
493 of REGISTERS. FIXME: ignores errors. */
496 sds_store_registers (int regno
)
498 unsigned char *p
, buf
[PBUFSIZ
];
501 /* Store all the special-purpose registers. */
507 for (i
= 0; i
< 4 * 6; i
++)
508 *p
++ = deprecated_registers
[i
+ 4 * 32 + 8 * 32];
509 for (i
= 0; i
< 4 * 1; i
++)
511 for (i
= 0; i
< 4 * 4; i
++)
514 sds_send (buf
, p
- buf
);
516 /* Store all the general-purpose registers. */
522 for (i
= 0; i
< 4 * 32; i
++)
523 *p
++ = deprecated_registers
[i
];
525 sds_send (buf
, p
- buf
);
529 /* Write memory data directly to the remote machine. This does not
530 inform the data cache; the data cache uses this. MEMADDR is the
531 address in the remote memory space. MYADDR is the address of the
532 buffer in our space. LEN is the number of bytes.
534 Returns number of bytes transferred, or 0 for error. */
537 sds_write_bytes (CORE_ADDR memaddr
, char *myaddr
, int len
)
539 int max_buf_size
; /* Max size of packet output buffer */
541 unsigned char buf
[PBUFSIZ
];
545 /* Chop the transfer down if necessary */
552 todo
= min (len
, max_buf_size
);
556 buf
[2] = (int) (memaddr
>> 24) & 0xff;
557 buf
[3] = (int) (memaddr
>> 16) & 0xff;
558 buf
[4] = (int) (memaddr
>> 8) & 0xff;
559 buf
[5] = (int) (memaddr
) & 0xff;
563 for (i
= 0; i
< todo
; i
++)
564 buf
[i
+ 8] = myaddr
[i
];
566 sds_send (buf
, 8 + todo
);
568 /* (should look at result) */
577 /* Read memory data directly from the remote machine. This does not
578 use the data cache; the data cache uses this. MEMADDR is the
579 address in the remote memory space. MYADDR is the address of the
580 buffer in our space. LEN is the number of bytes.
582 Returns number of bytes transferred, or 0 for error. */
585 sds_read_bytes (CORE_ADDR memaddr
, char *myaddr
, int len
)
587 int max_buf_size
; /* Max size of packet output buffer */
589 unsigned char buf
[PBUFSIZ
];
593 /* Chop the transfer down if necessary */
600 todo
= min (len
, max_buf_size
);
604 buf
[2] = (int) (memaddr
>> 24) & 0xff;
605 buf
[3] = (int) (memaddr
>> 16) & 0xff;
606 buf
[4] = (int) (memaddr
>> 8) & 0xff;
607 buf
[5] = (int) (memaddr
) & 0xff;
608 buf
[6] = (int) (todo
>> 8) & 0xff;
609 buf
[7] = (int) (todo
) & 0xff;
612 retlen
= sds_send (buf
, 9);
614 if (retlen
- 2 != todo
)
619 /* Reply describes memory byte by byte. */
621 for (i
= 0; i
< todo
; i
++)
622 myaddr
[i
] = buf
[i
+ 2];
632 /* Read or write LEN bytes from inferior memory at MEMADDR,
633 transferring to or from debugger address MYADDR. Write to inferior
634 if SHOULD_WRITE is nonzero. Returns length of data written or
635 read; 0 for error. TARGET is unused. */
638 sds_xfer_memory (CORE_ADDR memaddr
, char *myaddr
, int len
, int should_write
,
639 struct mem_attrib
*attrib
, struct target_ops
*target
)
644 res
= sds_write_bytes (memaddr
, myaddr
, len
);
646 res
= sds_read_bytes (memaddr
, myaddr
, len
);
653 sds_files_info (struct target_ops
*ignore
)
655 puts_filtered ("Debugging over a serial connection, using SDS protocol.\n");
658 /* Stuff for dealing with the packets which are part of this protocol.
659 See comment at top of file for details. */
661 /* Read a single character from the remote end, masking it down to 7 bits. */
664 readchar (int timeout
)
668 ch
= serial_readchar (sds_desc
, timeout
);
670 if (remote_debug
> 1 && ch
>= 0)
671 fprintf_unfiltered (gdb_stdlog
, "%c(%x)", ch
, ch
);
676 error ("Remote connection closed");
678 perror_with_name ("Remote communication error");
686 /* An SDS-style checksum is a sum of the bytes modulo 253. (Presumably
687 because 253, 254, and 255 are special flags in the protocol.) */
690 compute_checksum (int csum
, char *buf
, int len
)
694 for (i
= 0; i
< len
; ++i
)
695 csum
+= (unsigned char) buf
[i
];
701 /* Send the command in BUF to the remote machine, and read the reply
705 sds_send (unsigned char *buf
, int len
)
707 putmessage (buf
, len
);
709 return getmessage (buf
, 0);
712 /* Send a message to the remote machine. */
715 putmessage (unsigned char *buf
, int len
)
718 unsigned char csum
= 0;
719 char buf2
[PBUFSIZ
], buf3
[PBUFSIZ
];
720 unsigned char header
[3];
723 /* Copy the packet into buffer BUF2, encapsulating it
724 and giving it a checksum. */
726 if (len
> 170) /* Prosanity check */
727 internal_error (__FILE__
, __LINE__
, _("failed internal consistency check"));
731 fprintf_unfiltered (gdb_stdlog
, "Message to send: \"");
732 for (i
= 0; i
< len
; ++i
)
733 fprintf_unfiltered (gdb_stdlog
, "%02x", buf
[i
]);
734 fprintf_unfiltered (gdb_stdlog
, "\"\n");
746 header
[1] = next_msg_id
;
750 csum
= compute_checksum (csum
, buf
, len
);
751 csum
= compute_checksum (csum
, header
+ 1, 2);
755 tob64 (header
, p
, 3);
757 enclen
= tob64 (buf
, buf3
, ((len
+ 2) / 3) * 3);
759 for (i
= 0; i
< enclen
; ++i
)
764 next_msg_id
= (next_msg_id
+ 3) % 245;
766 /* Send it over and over until we get a positive ack. */
773 fprintf_unfiltered (gdb_stdlog
, "Sending encoded: \"%s\"", buf2
);
774 fprintf_unfiltered (gdb_stdlog
,
775 " (Checksum %d, id %d, length %d)\n",
776 header
[0], header
[1], header
[2]);
777 gdb_flush (gdb_stdlog
);
779 if (serial_write (sds_desc
, buf2
, p
- buf2
))
780 perror_with_name ("putmessage: write failed");
786 /* Come here after finding the start of the frame. Collect the rest
787 into BUF. Returns 0 on any error, 1 on success. */
790 read_frame (char *buf
)
799 c
= readchar (sds_timeout
);
805 fputs_filtered ("Timeout in mid-message, retrying\n", gdb_stdlog
);
809 fputs_filtered ("Saw new packet start in middle of old one\n",
811 return 0; /* Start a new packet, count retries */
819 fprintf_unfiltered (gdb_stdlog
, "Received encoded: \"%s\"\n",
825 if (bp
< buf
+ PBUFSIZ
- 1)
832 puts_filtered ("Message too long: ");
834 puts_filtered ("\n");
841 /* Read a packet from the remote machine, with error checking,
842 and store it in BUF. BUF is expected to be of size PBUFSIZ.
843 If FOREVER, wait forever rather than timing out; this is used
844 while the target is executing user code. */
847 getmessage (unsigned char *buf
, int forever
)
852 int val
, i
, len
, csum
;
853 unsigned char header
[3];
854 unsigned char inbuf
[500];
856 strcpy (buf
, "timeout");
860 timeout
= watchdog
> 0 ? watchdog
: -1;
864 timeout
= sds_timeout
;
868 for (tries
= 1; tries
<= MAX_TRIES
; tries
++)
870 /* This can loop forever if the remote side sends us characters
871 continuously, but if it pauses, we'll get a zero from readchar
872 because of timeout. Then we'll count that as a retry. */
874 /* Note that we will only wait forever prior to the start of a packet.
875 After that, we expect characters to arrive at a brisk pace. They
876 should show up within sds_timeout intervals. */
880 c
= readchar (timeout
);
882 if (c
== SERIAL_TIMEOUT
)
884 if (forever
) /* Watchdog went off. Kill the target. */
886 target_mourn_inferior ();
887 error ("Watchdog has expired. Target detached.\n");
890 fputs_filtered ("Timed out.\n", gdb_stdlog
);
894 while (c
!= '$' && c
!= '{');
896 /* We might have seen a "trigraph", a sequence of three characters
897 that indicate various sorts of communication state. */
901 /* Read the other two chars of the trigraph. */
902 c2
= readchar (timeout
);
903 c3
= readchar (timeout
);
905 fprintf_unfiltered (gdb_stdlog
, "Trigraph %c%c%c received\n",
915 val
= read_frame (inbuf
);
919 fromb64 (inbuf
, header
, 4);
920 /* (should check out other bits) */
921 fromb64 (inbuf
+ 4, buf
, strlen (inbuf
) - 4);
926 csum
= compute_checksum (csum
, buf
, len
);
927 csum
= compute_checksum (csum
, header
+ 1, 2);
929 if (csum
!= header
[0])
930 fprintf_unfiltered (gdb_stderr
,
931 "Checksum mismatch: computed %d, received %d\n",
934 if (header
[2] == 0xff)
935 fprintf_unfiltered (gdb_stderr
, "Requesting resend...\n");
939 fprintf_unfiltered (gdb_stdlog
,
940 "... (Got checksum %d, id %d, length %d)\n",
941 header
[0], header
[1], header
[2]);
942 fprintf_unfiltered (gdb_stdlog
, "Message received: \"");
943 for (i
= 0; i
< len
; ++i
)
945 fprintf_unfiltered (gdb_stdlog
, "%02x", (unsigned char) buf
[i
]);
947 fprintf_unfiltered (gdb_stdlog
, "\"\n");
950 /* no ack required? */
954 /* Try the whole thing again. */
956 /* need to do something here */
960 /* We have tried hard enough, and just can't receive the packet. Give up. */
962 printf_unfiltered ("Ignoring packet error, continuing...\n");
969 /* Don't try to do anything to the target. */
975 unpush_target (&sds_ops
);
976 generic_mourn_inferior ();
980 sds_create_inferior (char *exec_file
, char *args
, char **env
, int from_tty
)
982 inferior_ptid
= pid_to_ptid (42000);
984 /* Clean up from the last time we were running. */
985 clear_proceed_status ();
987 write_pc (bfd_get_start_address (exec_bfd
));
991 sds_load (char *filename
, int from_tty
)
993 generic_load (filename
, from_tty
);
995 inferior_ptid
= null_ptid
;
998 /* The SDS monitor has commands for breakpoint insertion, although it
999 it doesn't actually manage the breakpoints, it just returns the
1000 replaced instruction back to the debugger. */
1003 sds_insert_breakpoint (struct bp_target_info
*bp_tgt
)
1005 CORE_ADDR addr
= bp_tgt
->placed_address
;
1007 unsigned char *p
, buf
[PBUFSIZ
];
1012 *p
++ = (int) (addr
>> 24) & 0xff;
1013 *p
++ = (int) (addr
>> 16) & 0xff;
1014 *p
++ = (int) (addr
>> 8) & 0xff;
1015 *p
++ = (int) (addr
) & 0xff;
1017 retlen
= sds_send (buf
, p
- buf
);
1019 for (i
= 0; i
< 4; ++i
)
1020 bp_tgt
->shadow_contents
[i
] = buf
[i
+ 2];
1026 sds_remove_breakpoint (struct bp_target_info
*bp_tgt
)
1028 CORE_ADDR addr
= bp_tgt
->placed_address
;
1030 unsigned char *p
, buf
[PBUFSIZ
];
1035 *p
++ = (int) (addr
>> 24) & 0xff;
1036 *p
++ = (int) (addr
>> 16) & 0xff;
1037 *p
++ = (int) (addr
>> 8) & 0xff;
1038 *p
++ = (int) (addr
) & 0xff;
1039 for (i
= 0; i
< 4; ++i
)
1040 *p
++ = bp_tgt
->shadow_contents
[i
];
1042 retlen
= sds_send (buf
, p
- buf
);
1050 sds_ops
.to_shortname
= "sds";
1051 sds_ops
.to_longname
= "Remote serial target with SDS protocol";
1052 sds_ops
.to_doc
= "Use a remote computer via a serial line; using the SDS protocol.\n\
1053 Specify the serial device it is connected to (e.g. /dev/ttya).";
1054 sds_ops
.to_open
= sds_open
;
1055 sds_ops
.to_close
= sds_close
;
1056 sds_ops
.to_detach
= sds_detach
;
1057 sds_ops
.to_resume
= sds_resume
;
1058 sds_ops
.to_wait
= sds_wait
;
1059 sds_ops
.to_fetch_registers
= sds_fetch_registers
;
1060 sds_ops
.to_store_registers
= sds_store_registers
;
1061 sds_ops
.to_prepare_to_store
= sds_prepare_to_store
;
1062 sds_ops
.deprecated_xfer_memory
= sds_xfer_memory
;
1063 sds_ops
.to_files_info
= sds_files_info
;
1064 sds_ops
.to_insert_breakpoint
= sds_insert_breakpoint
;
1065 sds_ops
.to_remove_breakpoint
= sds_remove_breakpoint
;
1066 sds_ops
.to_kill
= sds_kill
;
1067 sds_ops
.to_load
= sds_load
;
1068 sds_ops
.to_create_inferior
= sds_create_inferior
;
1069 sds_ops
.to_mourn_inferior
= sds_mourn
;
1070 sds_ops
.to_stratum
= process_stratum
;
1071 sds_ops
.to_has_all_memory
= 1;
1072 sds_ops
.to_has_memory
= 1;
1073 sds_ops
.to_has_stack
= 1;
1074 sds_ops
.to_has_registers
= 1;
1075 sds_ops
.to_has_execution
= 1;
1076 sds_ops
.to_magic
= OPS_MAGIC
;
1079 /* Put a command string, in args, out to the monitor and display the
1083 sds_command (char *args
, int from_tty
)
1087 unsigned char buf
[1000];
1089 /* Convert hexadecimal chars into a byte buffer. */
1094 buf
[len
++] = fromhex (p
[0]) * 16 + fromhex (p
[1]);
1100 retlen
= sds_send (buf
, len
);
1102 printf_filtered ("Reply is ");
1103 for (i
= 0; i
< retlen
; ++i
)
1105 printf_filtered ("%02x", buf
[i
]);
1107 printf_filtered ("\n");
1111 _initialize_remote_sds (void)
1114 add_target (&sds_ops
);
1116 add_setshow_integer_cmd ("sdstimeout", no_class
, &sds_timeout
, _("\
1117 Set timeout value for sds read."), _("\
1118 Show timeout value for sds read."), NULL
,
1120 NULL
, /* FIXME: i18n: */
1121 &setlist
, &showlist
);
1123 add_com ("sds", class_obscure
, sds_command
,
1124 _("Send a command to the SDS monitor."));