1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-03-13 10:29:35 +01:00

Wrap SoftwareSerial _SS_MAX_RX_BUFF define

To allow sketches to override value as per #58.
This commit is contained in:
Sandeep Mistry 2016-07-18 15:54:46 -04:00
parent 05be7ce395
commit b37430b473

View File

@ -39,7 +39,10 @@ http://arduiniana.org.
* Definitions
******************************************************************************/
#ifndef _SS_MAX_RX_BUFF
#define _SS_MAX_RX_BUFF 64 // RX buffer size
#endif
#ifndef GCC_VERSION
#define GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__)
#endif