changes for dynamic nodenum assignment

This commit is contained in:
geeksville 2020-02-08 12:44:56 -08:00
parent 11ce60eb6d
commit 4af51e88c7
2 changed files with 21 additions and 29 deletions

View file

@ -359,14 +359,6 @@ class MeshService : Service(), Logging {
MeshProtos.SubPacket.USER_FIELD_NUMBER ->
handleReceivedUser(fromNum, p.user)
MeshProtos.SubPacket.WANT_NODE_FIELD_NUMBER -> {
// This is managed by the radio on its own
debug("Ignoring WANT_NODE from $fromNum")
}
MeshProtos.SubPacket.DENY_NODE_FIELD_NUMBER -> {
// This is managed by the radio on its own
debug("Ignoring DENY_NODE from $fromNum to $toNum")
}
else -> TODO("Unexpected SubPacket variant")
}
}