Skip to content

Commit

Permalink
Host Keepalive followup (#21290)
Browse files Browse the repository at this point in the history
Followup to #21283

Co-authored-by: Scott Lahteine <[email protected]>
  • Loading branch information
rhapsodyv and thinkyhead authored Mar 9, 2021
1 parent 18a10c0 commit 787e83a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 2 additions & 3 deletions Marlin/src/HAL/ESP32/FlushableHardwareSerial.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,10 @@
*
*/

#include "FlushableHardwareSerial.h"

#ifdef ARDUINO_ARCH_ESP32

#include "FlushableHardwareSerial.h"

Serial0Type<FlushableHardwareSerial> flushableSerial(false, 0);

#endif // ARDUINO_ARCH_ESP32
#endif
4 changes: 3 additions & 1 deletion Marlin/src/HAL/ESP32/HAL.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@
#include "esp3dlib.h"
#endif

#include "FlushableHardwareSerial.h"
#ifdef ARDUINO_ARCH_ESP32
#include "FlushableHardwareSerial.h"
#endif

// ------------------------
// Defines
Expand Down

0 comments on commit 787e83a

Please sign in to comment.