4 * Copyright 2004 Develer S.r.l. (http://www.develer.com/)
5 * Copyright 1999, 2001 Bernardo Innocenti <bernie@develer.com>
6 * This file is part of DevLib - See README.devlib for information.
8 * \brief X-Modem serial transmission protocol (interface)
11 * \author Bernardo Innocenti <bernie@develer.com>
16 *#* Revision 1.4 2005/11/04 16:20:02 bernie
17 *#* Fix reference to README.devlib in header.
19 *#* Revision 1.3 2004/08/25 14:12:09 rasky
20 *#* Aggiornato il comment block dei log RCS
22 *#* Revision 1.2 2004/08/15 05:31:46 bernie
23 *#* Add an #error to spread some FUD about the quality of this module;
24 *#* Add a few TODOs from Rasky's review;
25 *#* Update to the new drv/ser.c API;
26 *#* Move FlushSerial() to drv/ser.c and generalize.
28 *#* Revision 1.1 2004/08/11 19:54:22 bernie
29 *#* Import XModem protocol into DevLib.
32 #ifndef MWARE_XMODEM_H
33 #define MWARE_XMODEM_H
39 bool xmodem_recv(struct Serial *port, struct _KFile *fd);
40 bool xmodem_send(struct Serial *port, struct _KFile *fd);
42 #endif /* MWARE_XMODEM_H */