We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1c73dd6 + d88d261 commit 8ddcb5bCopy full SHA for 8ddcb5b
libraries/SoftwareSerial/src/SoftwareSerial.h
@@ -38,12 +38,13 @@
38
#ifndef _SoftwareSerial_H
39
#define _SoftwareSerial_H
40
#include "Arduino.h"
41
+#include <Stream.h>
42
43
#define AP3_SS_BUFFER_SIZE 128 //Limit to 8 bits
44
45
#define TIMER_FREQ 3000000L
46
-class SoftwareSerial : public Print
47
+class SoftwareSerial : public Stream
48
{
49
public:
50
SoftwareSerial(uint8_t rxPin, uint8_t txPin, bool invertLogic = false);
0 commit comments