buffer: increase buffer size to 512 to cope with fast and long TPDUs

Change-Id: I194c90cf09306a982d80c5bf1222397af6e658a9
This commit is contained in:
Kévin Redon
2018-07-03 16:03:17 +02:00
committed by King Kévin
parent 4cbdc7cf18
commit bf6b1b1a3e

View File

@@ -5,7 +5,7 @@
#include <stdbool.h>
#include <sys/types.h>
#define RING_BUFLEN 256
#define RING_BUFLEN 512
typedef struct ringbuf {
uint8_t buf[RING_BUFLEN];