X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fnet%2Fpocketbus.h;h=6740678ac2ecc1fb428b70f86f3413171fc82779;hb=d43c956fc9313bda9ddbd2cc66d910e22dc7a9c5;hp=397cd6ebbda86526b0eea0b7b1c00cda8abdf2b3;hpb=791e167e053bdd9250d34a9a5ccae6ccde4d6679;p=bertos.git diff --git a/bertos/net/pocketbus.h b/bertos/net/pocketbus.h index 397cd6eb..6740678a 100644 --- a/bertos/net/pocketbus.h +++ b/bertos/net/pocketbus.h @@ -1,24 +1,54 @@ /** * \file * * - * \version $Id: pocketbus.h 20131 2007-12-13 17:39:55Z batt $ + * \version $Id$ * * \author Francesco Sacchi * - * \brief pocketBus protocol interface. + * \brief Basical functions to use pocketBus protocol. + * + * $WIZ$ module_name = "pocketbus" + * $WIZ$ module_depends = "rotating_hash", "kfile" + * $WIZ$ module_configuration = "bertos/cfg/cfg_pocketbus.h" */ #ifndef NET_POCKETBUS_H #define NET_POCKETBUS_H -#include -#include -#include +#include "cfg/cfg_pocketbus.h" /* for CONFIG_POCKETBUS_BUFLEN */ #include -#include "appconfig.h" //for CONFIG_POCKETBUS_BUFLEN + +#include + +#include /** * pocketBus special characters definitions. @@ -48,7 +78,7 @@ typedef uint16_t pocketbus_addr_t; */ typedef struct PocketBusHdr { - #define POCKETBUS_VER 1 + #define POCKETBUS_VER 1 uint8_t ver; ///< packet version pocketbus_addr_t addr; ///< slave address } PocketBusHdr; @@ -74,7 +104,7 @@ typedef struct PocketMsg { struct PocketBusCtx *ctx; ///< pocketBus message context pocketbus_addr_t addr; ///< address for received packet - pocketbus_len_t len; ///< payload length + pocketbus_len_t len; ///< payload length const uint8_t *payload; ///< payload data } PocketMsg;