*
* \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 */
#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>
*/
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);
}
* 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;
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 .
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;
}
}
if (wait_reply)
{
- ctx->waiting = cmd;
+ ctx->waiting = be16_to_cpu(cmd);
ctx->reply_timer = timer_clock();
}
+
return true;
}
*
* \brief PocketBus command abstraction layer.
*
- * \version $Id$
- *
* \author Francesco Sacchi <batt@develer.com>
*
* $WIZ$ module_name = "pocketcmd"
#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
/**
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);
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 */