diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-06-24 07:42:18 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-06-24 07:42:18 +0000 |
commit | ad29e79b944bbca136290c47869dfc30af676e7f (patch) | |
tree | d213880434e2376c7edc209eec2a89dd23629615 /Projects/USBtoSerial | |
parent | 4b952d479aa4bafe203a64d6211512450833cf8f (diff) | |
download | lufa-ad29e79b944bbca136290c47869dfc30af676e7f.tar.gz lufa-ad29e79b944bbca136290c47869dfc30af676e7f.tar.bz2 lufa-ad29e79b944bbca136290c47869dfc30af676e7f.zip |
Maximise the size of the ring buffers in the Benito/XPLAINBridge/USBtoSerial projects, so that they should never become full under normal conditions.
Diffstat (limited to 'Projects/USBtoSerial')
-rw-r--r-- | Projects/USBtoSerial/Lib/LightweightRingBuff.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Projects/USBtoSerial/Lib/LightweightRingBuff.h b/Projects/USBtoSerial/Lib/LightweightRingBuff.h index 55af753c0..1dc05935c 100644 --- a/Projects/USBtoSerial/Lib/LightweightRingBuff.h +++ b/Projects/USBtoSerial/Lib/LightweightRingBuff.h @@ -44,7 +44,7 @@ /* Defines: */ /** Size of each ring buffer, in data elements - must be between 1 and 255. */ - #define BUFFER_SIZE 128 + #define BUFFER_SIZE 255 /** Type of data to store into the buffer. */ #define RingBuff_Data_t uint8_t |