Merge pull request #326 from SebastianObi/master

RNodeInterface - Fixed missing init of 'r_stat_snr'.
This commit is contained in:
markqvist 2023-06-07 18:40:50 +02:00 committed by GitHub
commit 45aa71b2b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -395,6 +395,7 @@ class RNodeInterface(Interface):
self.r_stat_rx = None
self.r_stat_tx = None
self.r_stat_rssi = None
self.r_stat_snr = None
self.r_random = None
self.packet_queue = []

View File

@ -157,6 +157,7 @@ class RNodeInterface(Interface):
self.r_stat_rx = None
self.r_stat_tx = None
self.r_stat_rssi = None
self.r_stat_snr = None
self.r_random = None
self.packet_queue = []