Convert to new Doxygen style.
[bertos.git] / mware / xmodem.h
1 /**
2  * \file
3  * <!--
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.
7  * -->
8  * \brief X-Modem serial transmission protocol (interface)
9  *
10  * \version $Id$
11  * \author Bernardo Innocenti <bernie@develer.com>
12  */
13
14 /*#*
15  *#* $Log$
16  *#* Revision 1.5  2006/07/19 12:56:28  bernie
17  *#* Convert to new Doxygen style.
18  *#*
19  *#* Revision 1.4  2005/11/04 16:20:02  bernie
20  *#* Fix reference to README.devlib in header.
21  *#*
22  *#* Revision 1.3  2004/08/25 14:12:09  rasky
23  *#* Aggiornato il comment block dei log RCS
24  *#*
25  *#* Revision 1.2  2004/08/15 05:31:46  bernie
26  *#* Add an #error to spread some FUD about the quality of this module;
27  *#* Add a few TODOs from Rasky's review;
28  *#* Update to the new drv/ser.c API;
29  *#* Move FlushSerial() to drv/ser.c and generalize.
30  *#*
31  *#* Revision 1.1  2004/08/11 19:54:22  bernie
32  *#* Import XModem protocol into DevLib.
33  *#*
34  *#*/
35 #ifndef MWARE_XMODEM_H
36 #define MWARE_XMODEM_H
37
38 /* fwd decl */
39 struct _KFile;
40 struct Serial;
41
42 bool xmodem_recv(struct Serial *port, struct _KFile *fd);
43 bool xmodem_send(struct Serial *port, struct _KFile *fd);
44
45 #endif /* MWARE_XMODEM_H */
46