1
0
mirror of https://github.com/UzixLS/picocom.git synced 2025-07-19 07:21:18 +03:00

Input-buffer size (TTY_Q_SZ) now defined in Makefile

Fixes #20
This commit is contained in:
Nick Patavalis
2015-08-07 04:52:46 +03:00
parent efb45545c1
commit 208bb118e6
2 changed files with 6 additions and 0 deletions

View File

@ -9,6 +9,10 @@ CFLAGS = -Wall -g
LDFLAGS = -g
LDLIBS =
## Increase this to use larger input (e.g. copy-paste) buffer
TTY_Q_SZ = 1024
CPPFLAGS += -DTTY_Q_SZ=$(TTY_Q_SZ)
## Comment this out to disable high-baudrate support
CPPFLAGS += -DHIGH_BAUD