From: Mark Qvist Date: Thu, 28 May 2020 15:58:08 +0000 (+0200) Subject: Fixed reference in Python Library X-Git-Url: https://git.tnoah.ca/?a=commitdiff_plain;h=417f39d02a135d6a7c231cde6308781d6a09625b;p=lora-radio.git Fixed reference in Python Library --- diff --git a/Libraries/RNode.py b/Libraries/RNode.py index d3f3d91..e63e214 100644 --- a/Libraries/RNode.py +++ b/Libraries/RNode.py @@ -310,7 +310,7 @@ class RNodeInterface(): def updateBitrate(self): try: - self.bitrate = self.r_sf * ( (4.0/self.cr) / (math.pow(2,self.r_sf)/(self.r_bandwidth/1000)) ) * 1000 + self.bitrate = self.r_sf * ( (4.0/self.r_cr) / (math.pow(2,self.r_sf)/(self.r_bandwidth/1000)) ) * 1000 self.bitrate_kbps = round(self.bitrate/1000.0, 2) self.log(str(self)+" On-air bitrate is now "+str(self.bitrate_kbps)+ " kbps", RNodeInterface.LOG_DEBUG) except: