1999-04-16 03:35:26 +02:00
|
|
|
/* XMODEM support for GDB, the GNU debugger.
|
2001-03-06 09:22:02 +01:00
|
|
|
Copyright 1995, 2000 Free Software Foundation, Inc.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
This file is part of GDB.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
Boston, MA 02111-1307, USA. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2003-04-12 Andrew Cagney <cagney@redhat.com>
* gdbarch.sh: Add missing opaque declarations.
* gdbarch.h: Regnerate.
* symtab.h: Add missing opaque declarations.
* value.h, target.h, symfile.h, stabsread.h: Ditto.
* x86-64-tdep.h, xmodem.h, monitor.h, typeprint.h: Ditto.
* srec.h, solib-svr4.h, source.h, inferior.h: Ditto.
* ser-unix.h, serial.h, remote-utils.h, gdbcore.h: Ditto.
* ppc-tdep.h, ocd.h, mips-tdep.h, gdbtypes.h: Ditto.
* buildsym.h, builtin-regs.h, linespec.h, language.h: Ditto.
* i387-tdep.h, gdbthread.h, event-top.h, gdb.h: Ditto.
* dwarf2cfi.h, doublest.h, disasm.h, cp-abi.h: Ditto.
* cli-out.h, c-lang.h, ax-gdb.h, arch-utils.h: Ditto.
* ada-lang.h, config/nm-lynx.h, config/nm-linux.h: Ditto.
* config/sparc/tm-sp64.h, config/rs6000/tm-rs6000.h: Ditto.
* config/pa/tm-hppah.h, config/m68k/tm-delta68.h: Ditto.
* cli/cli-setshow.h, cli/cli-script.h: Ditto.
2003-04-12 19:41:26 +02:00
|
|
|
struct serial;
|
|
|
|
|
2001-07-11 19:52:32 +02:00
|
|
|
int xmodem_init_xfer (struct serial *desc);
|
|
|
|
void send_xmodem_packet (struct serial *desc, unsigned char *packet, int len,
|
2000-05-28 03:12:42 +02:00
|
|
|
int hashmark);
|
2001-07-11 19:52:32 +02:00
|
|
|
void xmodem_finish_xfer (struct serial *desc);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
#define XMODEM_DATASIZE 128 /* The data size is ALWAYS 128 */
|
|
|
|
#define XMODEM_1KDATASIZE 1024 /* Unless it's 1024!!! */
|
|
|
|
#define XMODEM_PACKETSIZE 133 /* data + packet headers and crc */
|
1999-07-07 22:19:36 +02:00
|
|
|
#define XMODEM_1KPACKETSIZE 1024 + 5 /* data + packet headers and crc */
|
1999-04-16 03:35:26 +02:00
|
|
|
#define XMODEM_DATAOFFSET 3 /* Offset to start of actual data */
|