* Enable receiving data */
| 606 | * Enable receiving data |
| 607 | */ |
| 608 | void RCSwitch::enableReceive(int pinNumber) { |
| 609 | this->nReceiverInterrupt = pinNumber; |
| 610 | this->enableReceive(); |
| 611 | } |
| 612 | |
| 613 | void RCSwitch::enableReceive() { |
| 614 | if (this->nReceiverInterrupt != -1) { |
no test coverage detected