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.
1 parent c32ad45 commit d7e02c6Copy full SHA for d7e02c6
cores/rp2040/SoftwareSerial.h
@@ -25,7 +25,7 @@
25
class SoftwareSerial : public SerialPIO {
26
public:
27
// Note the rx/tx pins are swapped in PIO vs SWSerial
28
- SoftwareSerial(pin_size_t rx, pin_size_t tx, bool invert = true) : SerialPIO(tx, rx) {
+ SoftwareSerial(pin_size_t rx, pin_size_t tx, bool invert = false) : SerialPIO(tx, rx) {
29
if (invert) {
30
panic("SoftwareSerial inverted operation not supported\n");
31
}
0 commit comments