Remove unneeded headers.
[bertos.git] / bertos / net / pocketbus.h
index ed970cd94ec8ef9f64e78edbaab27f886dbf9b9c..6740678ac2ecc1fb428b70f86f3413171fc82779 100644 (file)
  * Copyright 2007 Develer S.r.l. (http://www.develer.com/)
  * -->
  *
- * \version $Id: pocketbus.h 20131 2007-12-13 17:39:55Z batt $
+ * \version $Id$
  *
  * \author Francesco Sacchi <batt@develer.com>
  *
- * \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
@@ -44,8 +48,6 @@
 
 #include <algo/rotating_hash.h>
 
-#include <drv/ser.h>
-
 #include <kern/kfile.h>
 
 /**
@@ -76,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;
@@ -102,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;