From: Ryan Barrie Date: Thu, 2 Aug 2018 02:48:59 +0000 (-0500) Subject: Fixed exception caused by global reference. X-Git-Url: https://git.tnoah.ca/?a=commitdiff_plain;h=a4f51689fb6d9a99caf7b9c24cbb6c1537dd4287;p=lora-radio.git Fixed exception caused by global reference. --- diff --git a/Libraries/RNode.py b/Libraries/RNode.py index 01129ad..1537034 100644 --- a/Libraries/RNode.py +++ b/Libraries/RNode.py @@ -412,7 +412,7 @@ class RNodeInterface(): self.r_stat_tx = ord(command_buffer[0]) << 24 | ord(command_buffer[1]) << 16 | ord(command_buffer[2]) << 8 | ord(command_buffer[3]) elif (command == KISS.CMD_STAT_RSSI): - self.r_stat_rssi = ord(byte)-RSSI_OFFSET + self.r_stat_rssi = ord(byte)-self.RSSI_OFFSET elif (command == KISS.CMD_RANDOM): self.r_random = ord(byte) elif (command == KISS.CMD_ERROR):