From f66a9863c2b5d29ee2d3c57b65a0aecc9656c59c Mon Sep 17 00:00:00 2001 From: Nicolas Schodet Date: Wed, 21 Oct 2015 00:42:37 +0200 Subject: ucoo/utils/fifo: ensure there is room for size elements --- ucoo/hal/uart/Config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ucoo/hal') diff --git a/ucoo/hal/uart/Config b/ucoo/hal/uart/Config index 1229b76..70ad3f7 100644 --- a/ucoo/hal/uart/Config +++ b/ucoo/hal/uart/Config @@ -1,6 +1,6 @@ [ucoo/hal/uart] # Size of reception buffer. -rx_buffer = 32 +rx_buffer = 31 # Size of transmission buffer. -tx_buffer = 32 +tx_buffer = 31 -- cgit v1.2.3