forked from mfulz_github/qmk_firmware
Maximise the size of the ring buffers in the Benito/XPLAINBridge/USBtoSerial projects, so that they should never become full under normal conditions.
This commit is contained in:
parent
4b952d479a
commit
ad29e79b94
|
@ -44,7 +44,7 @@
|
||||||
|
|
||||||
/* Defines: */
|
/* Defines: */
|
||||||
/** Size of each ring buffer, in data elements - must be between 1 and 255. */
|
/** 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. */
|
/** Type of data to store into the buffer. */
|
||||||
#define RingBuff_Data_t uint8_t
|
#define RingBuff_Data_t uint8_t
|
||||||
|
|
|
@ -44,7 +44,7 @@
|
||||||
|
|
||||||
/* Defines: */
|
/* Defines: */
|
||||||
/** Size of each ring buffer, in data elements - must be between 1 and 255. */
|
/** 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. */
|
/** Type of data to store into the buffer. */
|
||||||
#define RingBuff_Data_t uint8_t
|
#define RingBuff_Data_t uint8_t
|
||||||
|
|
|
@ -44,7 +44,7 @@
|
||||||
|
|
||||||
/* Defines: */
|
/* Defines: */
|
||||||
/** Size of each ring buffer, in data elements - must be between 1 and 255. */
|
/** 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. */
|
/** Type of data to store into the buffer. */
|
||||||
#define RingBuff_Data_t uint8_t
|
#define RingBuff_Data_t uint8_t
|
||||||
|
|
Loading…
Reference in New Issue