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

2.0.x
Lino Barreca 5 years ago committed by Scott Lahteine
parent ac2d7ab14c
commit bd321d4b7c

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