| 672 | } |
| 673 | |
| 674 | void SerialPrint_P(PGM_P str, void (*f)(uint8_t) = SerialWrite ) { |
| 675 | for (uint8_t c; (c = pgm_read_byte(str)); str++) (*f)(c); |
| 676 | } |
| 677 | #endif |
| 678 | |
| 679 | void RFM69::readAllRegs() { |
nothing calls this directly
no outgoing calls
no test coverage detected