diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2024-02-11 17:17:38 +0100 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2024-02-11 17:17:38 +0100 |
commit | 260953b9957aa4c10a72ea550dfe2920f36583ff (patch) | |
tree | 4d340637768bf30ad3c7ac889bcbd385801cedd6 /include/arch/msp430fr5994lp | |
parent | 77ac4971b3da88b6423db4287b3119a8f98be5da (diff) |
msp430fr5994lp: stdin: increase buffer size from 16 to 32 Byte
Diffstat (limited to 'include/arch/msp430fr5994lp')
-rw-r--r-- | include/arch/msp430fr5994lp/driver/stdin.h | 2 |
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 ©); - static unsigned char const bufsize = 16; + static unsigned char const bufsize = 32; char buffer[bufsize]; volatile unsigned char write_pos; unsigned char read_pos; |