Normal
[code]#if (RAMEND < 1000)#define SERIAL_BUFFER_SIZE 16#else#define SERIAL_BUFFER_SIZE 64#endif[/code]That's what is in USBAPI.h now with the newer version of Arduino core. Looks like that is were it is defined now. I did a search on the whole hardware folder including file contents, it doesn't show SERIAL_BUFFER anywhere else. Will see how we go.
[code]#if (RAMEND < 1000)
#define SERIAL_BUFFER_SIZE 16
#else
#define SERIAL_BUFFER_SIZE 64
#endif[/code]
That's what is in USBAPI.h now with the newer version of Arduino core. Looks like that is were it is defined now. I did a search on the whole hardware folder including file contents, it doesn't show SERIAL_BUFFER anywhere else. Will see how we go.