Hello,
where is the Rx and Tx buffer size for the serial communication line to set?
I have found the define MBED_CONF_DRIVERS_UART_SERIAL_RXBUF_SIZE but what I set there no change.
I have found where the size is defined
Serial.h -> RingBufferN<256> rx_buffer;
Maybe this should be
RingBufferN<MBED_CONF_DRIVERS_UART_SERIAL_RXBUF_SIZE> rx_buffer;
1 Like