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
parent b65e4b6823
commit bdb0795e61

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