set this node's address
| 222 | |
| 223 | // set this node's address |
| 224 | void RFM69::setAddress(uint16_t addr) { |
| 225 | _address = addr; |
| 226 | writeReg(REG_NODEADRS, _address); // unused in packet mode |
| 227 | } |
| 228 | |
| 229 | uint16_t RFM69::getAddress() { |
| 230 | return _address; |
nothing calls this directly
no outgoing calls
no test coverage detected