Closed willie68 closed 10 years ago
I just wan't to minimize the sending buffer for more RAM, because i don't use sending. But nothing happens, than i see this:
#define TX_BUFFER_SIZE 68 static volatile uint8_t tx_buffer[RX_BUFFER_SIZE];
i think it must be
#define TX_BUFFER_SIZE 68 static volatile uint8_t tx_buffer[TX_BUFFER_SIZE];
Fixed. Thanks. :)
https://github.com/PaulStoffregen/AltSoftSerial/commit/30f7e6014800a7923824291f6fa1a2ba306f2991
I just wan't to minimize the sending buffer for more RAM, because i don't use sending. But nothing happens, than i see this:
i think it must be