X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fnet%2Fpocketbus.h;h=7e1317d7995bc2d285c03a8451c04ba40bc8334d;hb=00bc8478ab5087769fc67e52327934370ee5e3a6;hp=eb32d5630ad96be0da76503922a7fb88fb452177;hpb=d62963b4a64efe8d2917f489fefaf586a9a99126;p=bertos.git diff --git a/bertos/net/pocketbus.h b/bertos/net/pocketbus.h index eb32d563..7e1317d7 100644 --- a/bertos/net/pocketbus.h +++ b/bertos/net/pocketbus.h @@ -33,13 +33,19 @@ * * \author Francesco Sacchi * - * \brief pocketBus protocol interface. + * \brief Basical functions to use pocketBus protocol. + * + * $WIZARD_MODULE = { + * "name" : "pocketbus", + * "depends" : ["rotating_hash", "kfile"], + * "configuration" : "bertos/cfg/cfg_pocketbus.h" + * } */ #ifndef NET_POCKETBUS_H #define NET_POCKETBUS_H -#include /* for CONFIG_POCKETBUS_BUFLEN */ +#include "cfg/cfg_pocketbus.h" /* for CONFIG_POCKETBUS_BUFLEN */ #include #include @@ -76,7 +82,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; @@ -102,7 +108,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;