From 64b2750de3cfc4a8ff0aa050968ce0d6226172a8 Mon Sep 17 00:00:00 2001 From: Harald Pichler Date: Thu, 7 Sep 2017 16:01:42 +0200 Subject: [PATCH] set filter to standard --- core/dev/serial-line.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/dev/serial-line.c b/core/dev/serial-line.c index 51ab95f7e..77e6bf5cd 100644 --- a/core/dev/serial-line.c +++ b/core/dev/serial-line.c @@ -45,10 +45,10 @@ #error Change SERIAL_LINE_CONF_BUFSIZE in contiki-conf.h. #endif -//#define IGNORE_CHAR(c) (c == 0x0d) -//#define END 0x0a -#define IGNORE_CHAR(c) (c == 0x0a) -#define END 0x0d +#define IGNORE_CHAR(c) (c == 0x0d) +#define END 0x0a +//#define IGNORE_CHAR(c) (c == 0x0a) +//#define END 0x0d static struct ringbuf rxbuf; static uint8_t rxbuf_data[BUFSIZE];