Use baud rate from lora.conf or default

This commit is contained in:
2019-10-19 21:30:06 +02:00
parent c83e7d0901
commit 856d590eeb

View File

@@ -13,7 +13,10 @@ if __name__ == '__main__':
conf = ConfigParser()
conf.read("lora.conf")
root = RN2483(conf.get("DEFAULT", "port"))
root = RN2483(
conf.get("DEFAULT", "port"),
conf.get("DEFAULT", "baud", fallback=57600),
)
def first_init() -> None:
"""Init our RN2483 after firmware startup."""