* Print functions * Since a library should not allocate the "Serial" object, all functions require a pointer to a Print object. **********************************************************************************************************************/
| 1524 | * Since a library should not allocate the "Serial" object, all functions require a pointer to a Print object. |
| 1525 | **********************************************************************************************************************/ |
| 1526 | void IRrecv::printActiveIRProtocols(Print *aSerial) { |
| 1527 | // call no class function with same name |
| 1528 | ::printActiveIRProtocols(aSerial); |
| 1529 | } |
| 1530 | /* |
| 1531 | * Prints a list of enabled protocols for this application. |
| 1532 | * @param aSerial pointer to serial used for printing. Use "&Serial". |
nothing calls this directly
no test coverage detected