#define LINE_LEN 80
char line[LINE_LEN]; /* space needed 8+16*3+3+16 == 75 */
- printf("%s at [%p], len=%d\n", title, data, len);
+ printf_P(PSTR("%s at [%p], len=%d\n"), title, data, len);
ofs = 0;
while (ofs < len) {
/* format 1 line in the buffer, then use printk to print them */
- out = snprintf(line, LINE_LEN, "%08X", ofs);
+ out = snprintf_P(line, LINE_LEN, PSTR("%08X"), ofs);
for (i=0; ofs+i < len && i<16; i++)
- out += snprintf(line+out, LINE_LEN - out, " %02X",
- data[ofs+i]&0xff);
+ out += snprintf_P(line+out, LINE_LEN - out,
+ PSTR(" %02X"),
+ data[ofs+i]&0xff);
for (;i<=16;i++)
out += snprintf(line+out, LINE_LEN - out, " ");
for (i=0; ofs < len && i<16; i++, ofs++) {
unsigned char c = data[ofs];
if (!isascii(c) || !isprint(c))
c = '.';
- out += snprintf(line+out, LINE_LEN - out, "%c", c);
+ out += snprintf_P(line+out,
+ LINE_LEN - out,
+ PSTR("%c"), c);
}
- printf("%s\n", line);
+ printf_P(PSTR("%s\r\n"), line);
}
}
struct xbee_xmit_status_hdr *frame, unsigned len)
{
if (ctx == NULL) {
- printf("no context\n");
+ printf_P(PSTR("no context\r\n"));
return -1;
}
/* see if it matches a xmit query (atcmd_query must be NULL) */
if (ctx->atcmd_query[0] != '\0') {
- printf("invalid response 2\n");
+ printf_P(PSTR("invalid response 2\r\n"));
return -1;
}
/* XXX use defines for these values */
if (frame->delivery_status == 0x00)
- printf("Success\n");
+ printf_P(PSTR("Success\r\n"));
else if (frame->delivery_status == 0x01)
- printf("MAC ACK Failure\n");
+ printf_P(PSTR("MAC ACK Failure\r\n"));
else if (frame->delivery_status == 0x15)
- printf("Invalid destination endpoint\n");
+ printf_P(PSTR("Invalid destination endpoint\r\n"));
else if (frame->delivery_status == 0x21)
- printf("Network ACK Failure\n");
+ printf_P(PSTR("Network ACK Failure\r\n"));
else if (frame->delivery_status == 0x25)
- printf("Route Not Found\n");
+ printf_P(PSTR("Route Not Found\r\n"));
return 0;
}
} __attribute__((packed)) *result;
if (ctx == NULL) {
- printf("no context\n");
+ printf_P(PSTR("no context\r\n"));
return -1;
}
/* see if it matches query */
if (memcmp(atcmd_str, ctx->atcmd_query, 2)) {
- printf("invalid response <%c%c><%s><%s>\n",
- frame->cmd & 0xFF,
- (frame->cmd >> 8) & 0xFF,
- atcmd_str, ctx->atcmd_query);
+ printf_P(PSTR("invalid response <%c%c><%s><%s>\r\n"),
+ frame->cmd & 0xFF,
+ (frame->cmd >> 8) & 0xFF,
+ atcmd_str, ctx->atcmd_query);
return -1;
}
/* see if it exists */
cmd_pgm = xbee_atcmd_lookup_name(atcmd_str);
if (cmd_pgm == NULL) {
- printf("unknown response\n");
+ printf_P(PSTR("unknown response\r\n"));
return -1;
}
memcpy_P(&cmd, cmd_pgm, sizeof(cmd));
/* bad status */
if (frame->status == 1) {
- printf("Status is error\n");
+ printf_P(PSTR("Status is error\r\n"));
return -1;
}
else if (frame->status == 2) {
- printf("Invalid command\n");
+ printf_P(PSTR("Invalid command\r\n"));
return -1;
}
else if (frame->status == 3) {
- printf("Invalid parameter\n");
+ printf_P(PSTR("Invalid parameter\r\n"));
return -1;
}
else if (frame->status != 0) {
- printf("Unknown status error %d\n", frame->status);
+ printf_P(PSTR("Unknown status error %d\r\n"), frame->status);
return -1;
}
result = (void *)frame->data;
len -= offsetof(struct xbee_atresp_hdr, data);
if (cmd.flags & XBEE_ATCMD_F_PARAM_U8 && len == sizeof(uint8_t))
- printf("<%s> is 0x%x\n", atcmd_str, result->u8);
+ printf_P(PSTR("<%s> is 0x%x\r\n"), atcmd_str, result->u8);
else if (cmd.flags & XBEE_ATCMD_F_PARAM_U16 && len == sizeof(uint16_t))
- printf("<%s> is 0x%x\n", atcmd_str, ntohs(result->u16));
+ printf_P(PSTR("<%s> is 0x%x\r\n"),
+ atcmd_str,
+ ntohs(result->u16));
else if (cmd.flags & XBEE_ATCMD_F_PARAM_U32 && len == sizeof(uint32_t))
- printf("<%s> is 0x%"PRIx32"\n", atcmd_str, ntohl(result->u32));
+ printf_P(PSTR("<%s> is 0x%"PRIx32"\r\n"),
+ atcmd_str,
+ ntohl(result->u32));
else if (cmd.flags & XBEE_ATCMD_F_PARAM_S16 && len == sizeof(int16_t))
- printf("<%s> is %d\n", atcmd_str, ntohs(result->s16));
+ printf_P(PSTR("<%s> is %d\r\n"), atcmd_str, ntohs(result->s16));
else if (len == 0)
- printf("no data, status ok\n");
+ printf_P(PSTR("no data, status ok\r\n"));
else
hexdump("atcmd answer", frame->data, len);
int do_hexdump = xbee_hexdump;
if (xbee_debug)
- printf("type=0x%x, channel=%d, ctx=%p\n", type, channel, ctx);
+ printf_P(PSTR("type=0x%x, channel=%d, ctx=%p\r\n"),
+ type, channel, ctx);
/* if ctx is !NULL, it is an answer to a query */
if (ctx != NULL) {
/* XXX only delete timeout if answer matched */
xbee_unload_timeout(ctx);
if (xbee_debug && ctx->atcmd_query)
- printf("Received answer to query <%c%c>\n",
- ctx->atcmd_query[0], ctx->atcmd_query[1]);
+ printf_P(PSTR("Received answer to query <%c%c>\r\n"),
+ ctx->atcmd_query[0], ctx->atcmd_query[1]);
}
/* some additional checks before sending */
switch (type) {
case XBEE_TYPE_MODEM_STATUS: {
- printf("Received Modem Status frame\n");
+ printf_P(PSTR("Received Modem Status frame\r\n"));
break;
}
} addr;
memcpy(&addr, frame, sizeof(addr));
addr.u64 = ntohll(addr.u64);
- printf("from remote address %"PRIx32"%"PRIx32"\n",
- addr.u32.high, addr.u32.low);
+ printf_P(PSTR("from remote address %"PRIx32"%"PRIx32"\r\n"),
+ addr.u32.high, addr.u32.low);
/* this answer contains an atcmd answer at offset 10 */
if (dump_atcmd(ctx, frame + 10, len - 10) < 0)
case XBEE_TYPE_EXPL_RECV:
case XBEE_TYPE_NODE_ID:
default:
- printf("Invalid frame\n");
+ printf_P(PSTR("Invalid frame\r\n"));
do_hexdump = 1;
break;
}
int channel;
if (len > XBEE_MAX_FRAME_LEN) {
- printf("frame too large\n");
+ printf_P(PSTR("frame too large\r\n"));
return -1;
}
channel = xbee_register_channel(xbee_dev, XBEE_CHANNEL_ANY,
xbee_rx, NULL);
if (channel < 0) {
- printf("cannot send: no free channel\n");
+ printf_P(PSTR("cannot send: no free channel\r\n"));
return -1;
}
xbee_set_opaque(xbee_dev, channel, ctx);
if (xbee_debug)
- printf("send frame channel=%d type=0x%x len=%d\n",
- channel, type, len);
+ printf_P(PSTR("send frame channel=%d type=0x%x len=%d\r\n"),
+ channel, type, len);
if (xbee_hexdump)
hexdump("xmit frame", buf, len);
ret = xbee_proto_xmit(xbee_dev, channel, type, buf,
len);
if (ret < 0) {
- printf("cannot send\n");
+ printf_P(PSTR("cannot send\r\n"));
xbee_unregister_channel(xbee_dev, channel);
return -1;
}
{
struct xbee_ctx *ctx = arg;
- printf("Timeout\n");
+ printf_P(PSTR("Timeout\r\n"));
/* restart command line */
xbee_stdin_enable();