Skip to content

Commit

Permalink
Actually apply DGUS_[RT]X_BUFFER_SIZE (MarlinFirmware#17952)
Browse files Browse the repository at this point in the history
  • Loading branch information
Desuuuu authored and Alexander Yasnogor committed Aug 7, 2020
1 parent 9804337 commit 1dca42f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Marlin/src/HAL/AVR/MarlinSerial.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 1dca42f

Please sign in to comment.