Sistema l'errore da me commesso in fase di conversione...
[bertos.git] / app / triface / protocol.h
1 /**
2  * \file
3  * <!--
4  * Copyright 2006 Develer S.r.l. (http://www.develer.com/)
5  * -->
6  *
7  * \brief Implementation of the command protocol between the board and the host
8  *
9  * \version $Id$
10  *
11  * \author Marco Benelli <marco@develer.com>
12  */
13
14 /*#*
15  *#* $Log$
16  *#* Revision 1.1  2006/06/01 12:29:21  marco
17  *#* Add first simple protocol command (version request).
18  *#*
19  *#*/
20
21 #ifndef PROTOCOL_H
22 #define PROTOCOL_H
23
24 // fwd decl
25 struct Serial;
26
27 void protocol_init(struct Serial *ser);
28 void protocol_run(struct Serial *ser);
29
30 #endif // PROTOOCOL_H