Browse Source

Don't compile STM32 SoftwareSerial unless STM32 (#15894)

pull/1/head
Lino Barreca 5 years ago
committed by Scott Lahteine
parent
commit
bd321d4b7c
  1. 4
      Marlin/src/HAL/HAL_STM32/SoftwareSerial.cpp

4
Marlin/src/HAL/HAL_STM32/SoftwareSerial.cpp

@ -34,6 +34,8 @@
//
// Includes
//
#if defined(ARDUINO_ARCH_STM32) && !defined(STM32GENERIC)
#include "SoftwareSerial.h"
#include "timers.h"
@ -389,3 +391,5 @@ int SoftwareSerial::peek() {
// Read from "head"
return _receive_buffer[_receive_buffer_head];
}
#endif // ARDUINO_ARCH_STM32 && !STM32GENERIC

Loading…
Cancel
Save