diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-09-02 12:16:13 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-09-02 12:16:13 -0400 |
commit | 5632cf6d77b79cf0d1df2ab61881ee3828af7806 (patch) | |
tree | ed6198f233cd53419a11bc352da108039c39a9e1 /klippy/chelper/serialqueue.c | |
parent | ce79b6ca0074ac54f926d243389dee18554fe419 (diff) | |
download | kutter-5632cf6d77b79cf0d1df2ab61881ee3828af7806.tar.gz kutter-5632cf6d77b79cf0d1df2ab61881ee3828af7806.tar.xz kutter-5632cf6d77b79cf0d1df2ab61881ee3828af7806.zip |
serialqueue: Increase receive message debug queue to 100 messages
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/chelper/serialqueue.c')
-rw-r--r-- | klippy/chelper/serialqueue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/chelper/serialqueue.c b/klippy/chelper/serialqueue.c index 8da2a8d5..de9e8958 100644 --- a/klippy/chelper/serialqueue.c +++ b/klippy/chelper/serialqueue.c @@ -395,7 +395,7 @@ struct serialqueue { #define IDLE_QUERY_TIME 1.0 #define DEBUG_QUEUE_SENT 100 -#define DEBUG_QUEUE_RECEIVE 20 +#define DEBUG_QUEUE_RECEIVE 100 // Create a series of empty messages and add them to a list static void |