From 260953b9957aa4c10a72ea550dfe2920f36583ff Mon Sep 17 00:00:00 2001
From: Birte Kristina Friesel <derf@finalrewind.org>
Date: Sun, 11 Feb 2024 17:17:38 +0100
Subject: [PATCH] msp430fr5994lp: stdin: increase buffer size from 16 to 32
 Byte

---
 include/arch/msp430fr5994lp/driver/stdin.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/arch/msp430fr5994lp/driver/stdin.h b/include/arch/msp430fr5994lp/driver/stdin.h
index 34d0551..9076baa 100644
--- a/include/arch/msp430fr5994lp/driver/stdin.h
+++ b/include/arch/msp430fr5994lp/driver/stdin.h
@@ -9,7 +9,7 @@
 class StandardInput {
 	private:
 		StandardInput(const StandardInput &copy);
-		static unsigned char const bufsize = 16;
+		static unsigned char const bufsize = 32;
 		char buffer[bufsize];
 		volatile unsigned char write_pos;
 		unsigned char read_pos;
-- 
GitLab