Use log module, implement recv function. Some little refactor and update the cfg...
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 28 Apr 2010 13:13:22 +0000 (13:13 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 28 Apr 2010 13:13:22 +0000 (13:13 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3562 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cfg/cfg_pocketbus.h
bertos/net/pocketbus.c
bertos/net/pocketcmd.c
bertos/net/pocketcmd.h

index 687e535d90580fef3628304ed18d971b2d852871..aa0b090bb1aadaf9d6e65197474c586bdd404465 100644 (file)
  *
  * \brief Configuration file for pocketbus module.
  *
- * \version $Id$
- *
  * \author Daniele Basile <asterix@develer.com>
  */
 
 #ifndef CFG_POCKETBUS_H
 #define CFG_POCKETBUS_H
 
+/**
+ * Module logging level.
+ *
+ * $WIZ$ type = "enum"
+ * $WIZ$ value_list = "log_level"
+ */
+#define POCKETBUS_LOG_LEVEL      LOG_LVL_ERR
+
+/**
+ * Module logging format.
+ *
+ * $WIZ$ type = "enum"
+ * $WIZ$ value_list = "log_format"
+ */
+#define POCKETBUS_LOG_FORMAT     LOG_FMT_TERSE
+
+
 /**
  *Buffer len for pockebus protocol.
  * $WIZ$ type = "int"
  */
 #define CONFIG_POCKETBUS_BUFLEN     128
 
+/**
+ * Command replay timeout in milliseconds.
+ * $WIZ$ type = "int"
+ */
+#define CONFIG_POCKETBUS_CMD_REPLY_TIMEOUT   50
+
 #endif /* CFG_POCKETBUS_H */
index 61d4d2b44261432885e33fa0bb81050a5c8d7330..117e40d07204e515e1b80494e0f19f5413700d80 100644 (file)
 
 #include "pocketbus.h"
 
-#include <cfg/macros.h>
+#include "cfg/cfg_pocketbus.h"
+
+// Define logging setting (for cfg/log.h module).
+#define LOG_LEVEL         POCKETBUS_LOG_LEVEL
+#define LOG_VERBOSITY     POCKETBUS_LOG_FORMAT
+#include <cfg/log.h>
 #include <cfg/debug.h>
+#include <cfg/macros.h>
 
 #include <kern/kfile.h>
 
@@ -264,7 +270,7 @@ bool pocketbus_recv(struct PocketBusCtx *ctx, struct PocketMsg *msg)
         */
        if (kfile_error(ctx->fd))
        {
-               TRACEMSG("fd status[%04X]", kfile_error(ctx->fd));
+               LOG_ERR("fd status[%04X]\n", kfile_error(ctx->fd));
                kfile_clearerr(ctx->fd);
        }
 
index 3c92a2faf5883fe2c326334d5c818a29867faf7c..14bdc020d2a20f00adbb82a49763f61236c7d396 100644 (file)
  * The CMD ID used is the same supplied by the master when
  * the command was sent.
  *
- * \version $Id$
- *
  * \author Francesco Sacchi <batt@develer.com>
  */
 
 #include "pocketcmd.h"
 #include "pocketbus.h"
 
-#include <cfg/macros.h>
+#include "cfg/cfg_pocketbus.h"
+
+// Define logging setting (for cfg/log.h module).
+#define LOG_LEVEL         POCKETBUS_LOG_LEVEL
+#define LOG_VERBOSITY     POCKETBUS_LOG_FORMAT
+#include <cfg/log.h>
 #include <cfg/debug.h>
+#include <cfg/macros.h>
 #include <cfg/module.h>
 
 #include <drv/timer.h>
  * Call it to read and process pocketBus commands.
  */
 void pocketcmd_poll(struct PocketCmdCtx *ctx)
+{
+       PocketCmdMsg msg;
+       while (pocketcmd_recv(ctx, &msg))
+       {
+               /* Check for command callback */
+               pocketcmd_hook_t callback = ctx->search(msg.cmd);
+
+               /* Call it if exists */
+               if (callback)
+                       callback(&msg);
+       }
+}
+
+
+
+/**
+ * pocketBus Command recv function.
+ * Call it to read and process pocketBus commands.
+ */
+bool pocketcmd_recv(struct PocketCmdCtx *ctx, PocketCmdMsg *recv_msg)
 {
        PocketMsg msg;
 
@@ -108,25 +132,19 @@ void pocketcmd_poll(struct PocketCmdCtx *ctx)
                        if (cmd == ctx->waiting)
                                ctx->waiting = PKTCMD_NULL;
 
-                       /* Check for command callback */
-                       pocketcmd_hook_t callback = ctx->search(cmd);
+                       recv_msg->cmd_ctx = ctx;
+                       recv_msg->cmd = cmd;
+                       recv_msg->len = msg.len - sizeof(PocketCmdHdr);
+                       recv_msg->buf = msg.payload + sizeof(PocketCmdHdr);
 
-                       /* Call it if exists */
-                       if (callback)
-                       {
-                               PocketCmdMsg cmd_msg;
-
-                               cmd_msg.cmd_ctx = ctx;
-                               cmd_msg.cmd = cmd;
-                               cmd_msg.len = msg.len - sizeof(PocketCmdHdr);
-                               cmd_msg.buf = msg.payload + sizeof(PocketCmdHdr);
-
-                               callback(&cmd_msg);
-                       }
+                       return true;
                }
        }
+
+       return false;
 }
 
+
 /**
  * Send command \a cmd to/from slave adding \a len arguments in \a buf.
  * Address used is contained in \a ctx->addr .
@@ -139,14 +157,14 @@ bool pocketcmd_send(struct PocketCmdCtx *ctx, pocketcmd_t cmd, const void *buf,
        if (ctx->waiting != PKTCMD_NULL)
        {
                /* Check is reply timeout is elapsed */
-               if (timer_clock() - ctx->reply_timer < ms_to_ticks(PKTCMD_REPLY_TIMEOUT))
+               if (timer_clock() - ctx->reply_timer < ms_to_ticks(CONFIG_POCKETBUS_CMD_REPLY_TIMEOUT))
                {
-                       TRACEMSG("Pkt discard! waiting cmd[%04X]\n", ctx->waiting);
+                       LOG_ERR("Pkt discard! waiting cmd[%04X]\n", ctx->waiting);
                        return false;
                }
                else
                {
-                       TRACEMSG("Timeout waiting cmd[%04X]\n", ctx->waiting);
+                       LOG_INFO("Timeout waiting cmd[%04X]\n", ctx->waiting);
                        ctx->waiting = PKTCMD_NULL;
                }
        }
@@ -162,9 +180,10 @@ bool pocketcmd_send(struct PocketCmdCtx *ctx, pocketcmd_t cmd, const void *buf,
 
        if (wait_reply)
        {
-               ctx->waiting = cmd;
+               ctx->waiting = be16_to_cpu(cmd);
                ctx->reply_timer = timer_clock();
        }
+
        return true;
 }
 
index 1cdc40dfe315488e17fcf496c7b355888edaa351..8bfd5e0965e0dec75915e94aab2e2263377f55a3 100644 (file)
@@ -31,8 +31,6 @@
  *
  * \brief PocketBus command abstraction layer.
  *
- * \version $Id$
- *
  * \author Francesco Sacchi <batt@develer.com>
  *
  * $WIZ$ module_name = "pocketcmd"
@@ -47,8 +45,6 @@
 
 #define PKTCMD_NULL 0 ///< pocketBus Null command
 
-#define PKTCMD_REPLY_TIMEOUT 50 ///< Command replay timeout in milliseconds
-
 typedef uint16_t pocketcmd_t; ///< Type for Command IDs
 
 /**
@@ -116,6 +112,7 @@ INLINE void pocketcmd_setAddr(struct PocketCmdCtx *ctx, pocketbus_addr_t addr)
 void pocketcmd_init(struct PocketCmdCtx *ctx, struct PocketBusCtx *bus_ctx, pocketbus_addr_t addr, pocketcmd_lookup_t search);
 void pocketcmd_poll(struct PocketCmdCtx *ctx);
 bool pocketcmd_send(struct PocketCmdCtx *ctx, pocketcmd_t cmd, const void *buf, size_t len, bool has_replay);
+bool pocketcmd_recv(struct PocketCmdCtx *ctx, PocketCmdMsg *recv_msg);
 void pocketcmd_replyNak(struct PocketCmdMsg *msg);
 void pocketcmd_replyAck(struct PocketCmdMsg *msg);
 
@@ -136,5 +133,17 @@ INLINE bool pocketcmd_slaveReply(struct PocketCmdCtx *ctx, pocketcmd_t cmd, cons
        return pocketcmd_send(ctx, cmd, buf, len, false);
 }
 
+/**
+ * Return true if message contain NAK.
+ */
+INLINE bool pocketcmd_checkNak(struct PocketCmdMsg *msg)
+{
+       if (msg->buf[0] == POCKETBUS_NAK)
+               return true;
+
+       return false;
+}
+
+
 
 #endif /* NET_POCKETCMD_H */