Unverified Commit 260953b9 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

msp430fr5994lp: stdin: increase buffer size from 16 to 32 Byte

parent 77ac4971
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;