X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fnet%2Fpocketbus.h;h=db7b9c155b45d8b068b2981d600f7a56edf0e344;hb=41718ab2098bd5640da265c34f1ecb79a4123d39;hp=085971bf8e949ac4a3b699d84edac02c6b2f3bf5;hpb=b90e284547eab472e3d9e478a058304bdd6b2da7;p=bertos.git diff --git a/bertos/net/pocketbus.h b/bertos/net/pocketbus.h index 085971bf..db7b9c15 100644 --- a/bertos/net/pocketbus.h +++ b/bertos/net/pocketbus.h @@ -29,7 +29,6 @@ * Copyright 2007 Develer S.r.l. (http://www.develer.com/) * --> * - * \version $Id$ * * \author Francesco Sacchi * @@ -48,9 +47,7 @@ #include -#include - -#include +#include /** * pocketBus special characters definitions. @@ -90,15 +87,16 @@ typedef struct PocketBusHdr */ typedef struct PocketBusCtx { + uint8_t buf[CONFIG_POCKETBUS_BUFLEN]; ///< receiving Buffer struct KFile *fd; ///< File descriptor bool sync; ///< Status flag: true if we have received an STX, false otherwise bool escape; ///< Status flag: true if we are in escape mode, false otherwise rotating_t in_cks; ///< Checksum computation for received data. rotating_t out_cks; ///< Checksum computation for transmitted data. pocketbus_len_t len; ///< Received length - uint8_t buf[CONFIG_POCKETBUS_BUFLEN]; ///< receiving Buffer } PocketBusCtx; +STATIC_ASSERT(offsetof(PocketBusCtx, buf) == 0); /** * Structure holding pocketBus message parameters. */