summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBirte Kristina Friesel <derf@finalrewind.org>2024-02-11 17:17:38 +0100
committerBirte Kristina Friesel <derf@finalrewind.org>2024-02-11 17:17:38 +0100
commit260953b9957aa4c10a72ea550dfe2920f36583ff (patch)
tree4d340637768bf30ad3c7ac889bcbd385801cedd6
parent77ac4971b3da88b6423db4287b3119a8f98be5da (diff)
msp430fr5994lp: stdin: increase buffer size from 16 to 32 Byte
-rw-r--r--include/arch/msp430fr5994lp/driver/stdin.h2
1 files changed, 1 insertions, 1 deletions
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;