Skip to content

Commit

Permalink
Merge pull request #5226 from haukepetersen/fix_xbee_debug
Browse files Browse the repository at this point in the history
drivers/xbee: fixed missing newline in DEBUG
  • Loading branch information
haukepetersen committed Apr 1, 2016
2 parents 39984de + af8f404 commit 124ee42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/xbee/xbee.c
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ static uint8_t _cksum(uint8_t *buf, size_t size)

static void _at_cmd(xbee_t *dev, const char *cmd)
{
DEBUG("xbee: AT_CMD: %s", cmd);
DEBUG("xbee: AT_CMD: %s\n", cmd);

uart_write(dev->uart, (uint8_t *)cmd, strlen(cmd));
}
Expand Down

0 comments on commit 124ee42

Please sign in to comment.