mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-29 18:52:13 +01:00
Merge branch 'patch-7' of https://github.com/NicoHood/Arduino
This commit is contained in:
commit
8c3c54ea28
@ -40,14 +40,14 @@
|
|||||||
// often work, but occasionally a race condition can occur that makes
|
// often work, but occasionally a race condition can occur that makes
|
||||||
// Serial behave erratically. See https://github.com/arduino/Arduino/issues/2405
|
// Serial behave erratically. See https://github.com/arduino/Arduino/issues/2405
|
||||||
#if !defined(SERIAL_TX_BUFFER_SIZE)
|
#if !defined(SERIAL_TX_BUFFER_SIZE)
|
||||||
#if (RAMEND < 1000)
|
#if ((RAMEND - RAMSTART) < 1023)
|
||||||
#define SERIAL_TX_BUFFER_SIZE 16
|
#define SERIAL_TX_BUFFER_SIZE 16
|
||||||
#else
|
#else
|
||||||
#define SERIAL_TX_BUFFER_SIZE 64
|
#define SERIAL_TX_BUFFER_SIZE 64
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#if !defined(SERIAL_RX_BUFFER_SIZE)
|
#if !defined(SERIAL_RX_BUFFER_SIZE)
|
||||||
#if (RAMEND < 1000)
|
#if ((RAMEND - RAMSTART) < 1023)
|
||||||
#define SERIAL_RX_BUFFER_SIZE 16
|
#define SERIAL_RX_BUFFER_SIZE 16
|
||||||
#else
|
#else
|
||||||
#define SERIAL_RX_BUFFER_SIZE 64
|
#define SERIAL_RX_BUFFER_SIZE 64
|
||||||
|
@ -75,7 +75,7 @@ extern USBDevice_ USBDevice;
|
|||||||
struct ring_buffer;
|
struct ring_buffer;
|
||||||
|
|
||||||
#ifndef SERIAL_BUFFER_SIZE
|
#ifndef SERIAL_BUFFER_SIZE
|
||||||
#if (RAMEND < 1000)
|
#if ((RAMEND - RAMSTART) < 1023)
|
||||||
#define SERIAL_BUFFER_SIZE 16
|
#define SERIAL_BUFFER_SIZE 16
|
||||||
#else
|
#else
|
||||||
#define SERIAL_BUFFER_SIZE 64
|
#define SERIAL_BUFFER_SIZE 64
|
||||||
|
Loading…
x
Reference in New Issue
Block a user