* Restarts receiver after send. Is a NOP if sending does not require a timer. */
| 455 | * Restarts receiver after send. Is a NOP if sending does not require a timer. |
| 456 | */ |
| 457 | void IRrecv::restartAfterSend() { |
| 458 | #if defined(SEND_PWM_BY_TIMER) && !defined(SEND_PWM_DOES_NOT_USE_RECEIVE_TIMER) |
| 459 | start(); |
| 460 | #endif |
| 461 | } |
| 462 | |
| 463 | /** |
| 464 | * Disables the timer for IR reception. |
nothing calls this directly
no outgoing calls
no test coverage detected