Per #651 (comment).
Due to the #undef construct done in
|
#ifdef SERIAL_BUFFER_SIZE |
|
#undef SERIAL_BUFFER_SIZE |
|
#endif |
|
|
|
#define SERIAL_BUFFER_SIZE 256 |
it's not possible to set a global -DSERIAL_BUFFER_SIZE=... value and have it be use used anymore.
A user has a usecase for that here.
Per #651 (comment).
Due to the
#undefconstruct done inArduinoCore-samd/cores/arduino/Uart.h
Lines 25 to 29 in a5d52db
it's not possible to set a global
-DSERIAL_BUFFER_SIZE=...value and have it be use used anymore.A user has a usecase for that here.