From 5daa57fa7d46be52cb2e2c35c7b24dae9aaf3762 Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Tue, 26 May 2020 23:51:49 -0400 Subject: [PATCH] Use default buffer size of 4096 bytes --- include/patty/kiss.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/patty/kiss.h b/include/patty/kiss.h index 5cc2723..6dd76b2 100644 --- a/include/patty/kiss.h +++ b/include/patty/kiss.h @@ -8,7 +8,7 @@ #define PATTY_KISS_TFEND 0xdc #define PATTY_KISS_TFESC 0xdd -#define PATTY_KISS_BUFSZ 2048 +#define PATTY_KISS_BUFSZ 4096 #define PATTY_KISS_COMMAND_PORT(cmd) \ ((cmd & 0xf0) >> 4)