Actually apply DGUS_[RT]X_BUFFER_SIZE (#17952)

This commit is contained in:
Desuuuu 2020-05-11 02:21:47 +00:00 committed by GitHub
parent 00e7599c8c
commit fcd1678a17
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23

View file

@ -299,8 +299,8 @@
template <uint8_t serial>
struct MarlinInternalSerialCfg {
static constexpr int PORT = serial;
static constexpr unsigned int RX_SIZE = 128;
static constexpr unsigned int TX_SIZE = 48;
static constexpr unsigned int RX_SIZE = DGUS_RX_BUFFER_SIZE;
static constexpr unsigned int TX_SIZE = DGUS_TX_BUFFER_SIZE;
static constexpr bool XONOFF = false;
static constexpr bool EMERGENCYPARSER = false;
static constexpr bool DROPPED_RX = false;