mirror of
https://github.com/markqvist/Reticulum.git
synced 2024-11-26 15:30:18 +00:00
Compare commits
1 Commits
959487cf8b
...
866262027a
Author | SHA1 | Date | |
---|---|---|---|
|
866262027a |
@ -774,13 +774,18 @@ class RNode():
|
||||
self.made = bytes([self.eeprom[ROM.ADDR_MADE], self.eeprom[ROM.ADDR_MADE+1], self.eeprom[ROM.ADDR_MADE+2], self.eeprom[ROM.ADDR_MADE+3]])
|
||||
self.checksum = b""
|
||||
|
||||
|
||||
self.min_freq = models[self.model][0]
|
||||
self.max_freq = models[self.model][1]
|
||||
self.max_output = models[self.model][2]
|
||||
|
||||
try:
|
||||
self.min_freq = models[self.model][0]
|
||||
self.max_freq = models[self.model][1]
|
||||
self.max_output = models[self.model][2]
|
||||
except Exception as e:
|
||||
RNS.log("Error: Model band and output power capabilities are unknown!")
|
||||
RNS.log("The contained exception was: "+str(e))
|
||||
RNS.log("Exception")
|
||||
RNS.log(str(e))
|
||||
self.min_freq = 0
|
||||
self.max_freq = 0
|
||||
self.max_output = 0
|
||||
@ -3036,13 +3041,10 @@ def main():
|
||||
if args.product != None:
|
||||
if args.product == "03":
|
||||
mapped_product = ROM.PRODUCT_RNODE
|
||||
elif args.product == "f0":
|
||||
if args.product == "f0":
|
||||
mapped_product = ROM.PRODUCT_HMBRW
|
||||
elif args.product == "e0":
|
||||
if args.product == "e0":
|
||||
mapped_product = ROM.PRODUCT_TBEAM
|
||||
else:
|
||||
if len(args.product) == 2:
|
||||
mapped_product = ord(bytes.fromhex(args.product))
|
||||
|
||||
if mapped_model != None:
|
||||
if mapped_model == ROM.MODEL_B4_TCXO:
|
||||
@ -3066,9 +3068,6 @@ def main():
|
||||
model = ROM.MODEL_E9
|
||||
elif args.model == "ff":
|
||||
model = ROM.MODEL_FF
|
||||
else:
|
||||
if len(args.model) == 2:
|
||||
model = ord(bytes.fromhex(args.model))
|
||||
|
||||
|
||||
if args.hwrev != None and (args.hwrev > 0 and args.hwrev < 256):
|
||||
|
Loading…
Reference in New Issue
Block a user