Skip to content

Commit

Permalink
Merge pull request #2 from mcci-catena/issue1
Browse files Browse the repository at this point in the history
Fix #1: remove overloaded 'begin(int)' that is ambiguous
  • Loading branch information
terrillmoore authored Sep 6, 2021
2 parents b61e52c + 76bbbb2 commit f0ec815
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion SoftwareSerial.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ class SoftwareSerial : public Stream
// public methods
SoftwareSerial(uint8_t receivePin, uint8_t transmitPin, bool inverse_logic = false);
~SoftwareSerial();
void begin(long speed) { this->begin((unsigned long)speed); }
void begin(unsigned long speed);
void begin(unsigned long speed, uint16_t config) { this->begin(speed); }
bool listen();
Expand Down

0 comments on commit f0ec815

Please sign in to comment.