Fixed incorrect TX power limit on Android

pull/512/head
Mark Qvist 2024-05-22 12:40:21 +02:00
rodzic 0bb1108771
commit 3ef6c06b51
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -428,7 +428,7 @@ class RNodeInterface(Interface):
RNS.log("Invalid frequency configured for "+str(self), RNS.LOG_ERROR)
self.validcfg = False
if (self.txpower < 0 or self.txpower > 17):
if (self.txpower < 0 or self.txpower > 22):
RNS.log("Invalid TX power configured for "+str(self), RNS.LOG_ERROR)
self.validcfg = False