1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #5226 from haukepetersen/fix_xbee_debug

drivers/xbee: fixed missing newline in DEBUG
This commit is contained in:
Hauke Petersen 2016-04-01 12:01:04 +02:00
commit 124ee425ef

View File

@ -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));
}