set filter to standard

master
Harald Pichler 2017-09-07 16:01:42 +02:00
parent a2f8424b74
commit 64b2750de3
1 changed files with 4 additions and 4 deletions

View File

@ -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];