Browse Source

Actually apply DGUS_[RT]X_BUFFER_SIZE (#17952)

vanilla_fb_2.0.x
Desuuuu 5 years ago
committed by GitHub
parent
commit
fcd1678a17
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      Marlin/src/HAL/AVR/MarlinSerial.h

4
Marlin/src/HAL/AVR/MarlinSerial.h

@ -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;

Loading…
Cancel
Save