mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2026-03-13 06:16:08 -06:00
🩹 Fix LCD getFreeTxBuffer typo
This commit is contained in:
parent
78d3cf1de1
commit
ca31f9789e
2 changed files with 4 additions and 4 deletions
|
|
@ -337,8 +337,8 @@ void DGUSDisplay::processRx() {
|
|||
|
||||
size_t DGUSDisplay::getFreeTxBuffer() {
|
||||
return (
|
||||
#ifdef LCD_SERIAL_GET_TX_BUFFER_FREE
|
||||
LCD_SERIAL_GET_TX_BUFFER_FREE()
|
||||
#ifdef LCD_SERIAL_TX_BUFFER_FREE
|
||||
LCD_SERIAL_TX_BUFFER_FREE()
|
||||
#else
|
||||
SIZE_MAX
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -334,8 +334,8 @@ void DGUSDisplay::processRx() {
|
|||
|
||||
size_t DGUSDisplay::getFreeTxBuffer() {
|
||||
return (
|
||||
#ifdef LCD_SERIAL_GET_TX_BUFFER_FREE
|
||||
LCD_SERIAL_GET_TX_BUFFER_FREE()
|
||||
#ifdef LCD_SERIAL_TX_BUFFER_FREE
|
||||
LCD_SERIAL_TX_BUFFER_FREE()
|
||||
#else
|
||||
SIZE_MAX
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue