mirror of
https://github.com/markqvist/Reticulum.git
synced 2025-12-17 01:14:21 -05:00
Added support for configuring RNode WiFi settings to rnodeconf
This commit is contained in:
parent
1179757893
commit
b2d6ed733d
3 changed files with 195 additions and 36 deletions
|
|
@ -380,6 +380,7 @@ class RNodeInterface(Interface):
|
|||
else:
|
||||
if self.use_ble:
|
||||
RNS.log(f"Opening BLE connection for {self}...")
|
||||
self.timeout = 1250
|
||||
if self.ble != None and self.ble.running == False:
|
||||
self.ble.close()
|
||||
self.ble.cleanup()
|
||||
|
|
@ -394,6 +395,7 @@ class RNodeInterface(Interface):
|
|||
time.sleep(1)
|
||||
|
||||
if self.use_tcp:
|
||||
self.timeout = 1000
|
||||
RNS.log(f"Opening TCP connection for {self}...")
|
||||
if self.tcp != None and self.tcp.running == False:
|
||||
self.tcp.close()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue