Remove bogus Doxygen markup.
[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 devlib/README 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.2  2004/08/15 05:31:46  bernie
17  * Add an #error to spread some FUD about the quality of this module;
18  * Add a few TODOs from Rasky's review;
19  * Update to the new drv/ser.c API;
20  * Move FlushSerial() to drv/ser.c and generalize.
21  *
22  * Revision 1.1  2004/08/11 19:54:22  bernie
23  * Import XModem protocol into DevLib.
24  *
25  */
26 #ifndef MWARE_XMODEM_H
27 #define MWARE_XMODEM_H
28
29 /* fwd decl */
30 struct _KFile;
31 struct Serial;
32
33 bool xmodem_recv(struct Serial *port, struct _KFile *fd);
34 bool xmodem_send(struct Serial *port, struct _KFile *fd);
35
36 #endif /* MWARE_XMODEM_H */
37