Use configuration file instead appconfig. Reformat. Clean up. Remove CVS logs.
[bertos.git] / bertos / net / pocketbus.h
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2007 Develer S.r.l. (http://www.develer.com/)
30  * -->
31  *
32  * \version $Id: pocketbus.h 20131 2007-12-13 17:39:55Z batt $
33  *
34  * \author Francesco Sacchi <batt@develer.com>
35  *
36  * \brief pocketBus protocol interface.
37  */
38
39 #ifndef NET_POCKETBUS_H
40 #define NET_POCKETBUS_H
41
42 #include <cfg/cfg_pocketbus.h>        /* for CONFIG_POCKETBUS_BUFLEN */
43 #include <cfg/compiler.h>
44
45 #include <algo/rotating_hash.h>
46
47 #include <drv/ser.h>
48
49 #include <kern/kfile.h>
50
51 /**
52  * pocketBus special characters definitions.
53  * \{
54  */
55 #define POCKETBUS_STX 0x02 //ASCII STX
56 #define POCKETBUS_ETX 0x03 //ASCII ETX
57 #define POCKETBUS_ESC 0x1B //ASCII ESC
58 #define POCKETBUS_ACK 0x06 //ASCII ACK
59 #define POCKETBUS_NAK 0x15 //ASCII NAK
60 /*\}*/
61
62 #define POCKETBUS_BROADCAST_ADDR 0xFFFF ///< pocketBus broadcast address
63
64 /**
65  * Type for pocketBus length.
66  */
67 typedef uint16_t pocketbus_len_t;
68
69 /**
70  * Type for pocketBus addresses.
71  */
72 typedef uint16_t pocketbus_addr_t;
73
74 /**
75  * Header of pocketBus messages.
76  */
77 typedef struct PocketBusHdr
78 {
79         #define POCKETBUS_VER 1 
80         uint8_t ver;   ///< packet version
81         pocketbus_addr_t addr; ///< slave address
82 } PocketBusHdr;
83
84 /**
85  * pocketBus context structure.
86  */
87 typedef struct PocketBusCtx
88 {
89         struct KFile *fd;   ///< File descriptor
90         bool sync;           ///< Status flag: true if we have received an STX, false otherwise
91         bool escape;         ///< Status flag: true if we are in escape mode, false otherwise
92         rotating_t in_cks;   ///< Checksum computation for received data.
93         rotating_t out_cks;  ///< Checksum computation for transmitted data.
94         pocketbus_len_t len; ///< Received length
95         uint8_t buf[CONFIG_POCKETBUS_BUFLEN]; ///< receiving Buffer
96 } PocketBusCtx;
97
98 /**
99  * Structure holding pocketBus message parameters.
100  */
101 typedef struct PocketMsg
102 {
103         struct PocketBusCtx *ctx; ///< pocketBus message context
104         pocketbus_addr_t addr;    ///< address for received packet
105         pocketbus_len_t len;      ///< payload length 
106         const uint8_t *payload;   ///< payload data
107 } PocketMsg;
108
109 /**
110  * This ensure that endianess convertion functions work on
111  * the right data size.
112  * \{
113  */
114 STATIC_ASSERT(sizeof(pocketbus_addr_t) == sizeof(uint16_t));
115 STATIC_ASSERT(sizeof(rotating_t) == sizeof(uint16_t));
116 /*\}*/
117
118 void pocketbus_putchar(struct PocketBusCtx *ctx, uint8_t c);
119 void pocketbus_begin(struct PocketBusCtx *ctx, pocketbus_addr_t addr);
120 void pocketbus_write(struct PocketBusCtx *ctx, const void *_data, size_t len);
121 void pocketbus_end(struct PocketBusCtx *ctx);
122
123 void pocketbus_send(struct PocketBusCtx *ctx, pocketbus_addr_t addr, const void *data, size_t len);
124 bool pocketbus_recv(struct PocketBusCtx *ctx, struct PocketMsg *msg);
125 void pocketbus_init(struct PocketBusCtx *ctx, struct KFile *fd);
126
127 #endif /* NET_POCKETBUS_H */