set this node's network id
| 232 | |
| 233 | // set this node's network id |
| 234 | void RFM69::setNetwork(uint8_t networkID) { |
| 235 | _networkID = networkID; |
| 236 | writeReg(REG_SYNCVALUE2, networkID); |
| 237 | } |
| 238 | |
| 239 | uint8_t RFM69::getNetwork() { |
| 240 | return _networkID; |
nothing calls this directly
no outgoing calls
no test coverage detected