| 630 | } |
| 631 | |
| 632 | void Enc28J60Network::writeRegByte (uint8_t address, uint8_t data) { |
| 633 | #if ACTLOGLEVEL>=LOG_DEBUG_V3 |
| 634 | LogObject.uart_send_strln(F("Enc28J60Network::writeRegByte (uint8_t address, uint8_t data) DEBUG_V3:Function started")); |
| 635 | #endif |
| 636 | setBank(address); |
| 637 | writeOp(ENC28J60_WRITE_CTRL_REG, address, data); |
| 638 | } |
| 639 | |
| 640 | |
| 641 | uint8_t Enc28J60Network::readByte(uint16_t addr) |
nothing calls this directly
no outgoing calls
no test coverage detected