From 08471e8c172a7132ddb48ee14dc1d0479f6c6f7c Mon Sep 17 00:00:00 2001 From: sara Date: Wed, 15 Dec 2021 22:13:30 +0100 Subject: littel changes on the flowgraphs and gui --- src/gr-fadingui/python/logger.py | 2 +- src/gui/gui.py | 2 +- src/gui/net.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/gr-fadingui/python/logger.py b/src/gr-fadingui/python/logger.py index a189aeb..a101b9e 100644 --- a/src/gr-fadingui/python/logger.py +++ b/src/gr-fadingui/python/logger.py @@ -10,5 +10,5 @@ def get_logger(module): log.addHandler(stdout_handler) stdout_handler.setFormatter(formatter) - log.setLevel(logging.DEBUG) + log.setLevel(logging.WARNING) return log diff --git a/src/gui/gui.py b/src/gui/gui.py index c0e4a9e..cc201a3 100755 --- a/src/gui/gui.py +++ b/src/gui/gui.py @@ -255,7 +255,7 @@ with window(label="Bit Error Rate ", width=800, height=320, pos=(0,825),\ add_theme_color(mvThemeCol_Text,(0,0,0)) #Schwarz add_theme_style(mvStyleVar_FrameRounding, 5) - add_button(label="BER", height=60, width=700, pos=(50,125),tag="ber_value") + add_button(label="BER", height=60, width=700, pos=(50,125), tag="ber_value") bind_item_theme(last_item(), "button_ber") bind_item_theme(ber_window, "ber_window") diff --git a/src/gui/net.py b/src/gui/net.py index 820bc84..f35c7f0 100644 --- a/src/gui/net.py +++ b/src/gui/net.py @@ -83,7 +83,7 @@ class network_value(udpsource): self.bind() def read(self): - return udpsource.read(self, 1) + return udpsource.read(self, 3) def refresh(self): self.value = self.read() -- cgit v1.2.1