Skip to content

Commit

Permalink
Fix unused parameter warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
dok-net committed Dec 31, 2020
1 parent 46c2412 commit 1fa01d7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "EspSoftwareSerial",
"version": "6.11.0",
"version": "6.11.1",
"keywords": [
"serial", "io", "softwareserial"
],
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=EspSoftwareSerial
version=6.11.0
version=6.11.1
author=Dirk Kaar, Peter Lerup
maintainer=Dirk Kaar <[email protected]>
sentence=Implementation of the Arduino software serial for ESP8266/ESP32.
Expand Down
1 change: 1 addition & 0 deletions src/SoftwareSerial.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ bool SoftwareSerial::hasRxGPIOPullUp(int8_t pin) {
#if defined(ESP32)
return !(pin >= 34 && pin <= 39);
#else
(void)pin;
return true;
#endif
}
Expand Down

0 comments on commit 1fa01d7

Please sign in to comment.