From 7d443807f5794305b51ada99da52bcc17f1bda5a Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Thu, 15 Dec 2022 14:15:23 +0100 Subject: [PATCH] Fixed missing config value initialisation --- sbapp/sideband/core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sbapp/sideband/core.py b/sbapp/sideband/core.py index 2694277..0be4f69 100644 --- a/sbapp/sideband/core.py +++ b/sbapp/sideband/core.py @@ -260,6 +260,7 @@ class SidebandCore(): self.config["hw_rnode_beaconinterval"] = None self.config["hw_rnode_beacondata"] = None self.config["hw_rnode_bt_device"] = None + self.config["hw_rnode_bluetooth"] = False self.config["hw_modem_baudrate"] = 57600 self.config["hw_modem_databits"] = 8 self.config["hw_modem_stopbits"] = 1