aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNao Pross <np@0hm.ch>2021-12-13 19:09:56 +0100
committerNao Pross <np@0hm.ch>2021-12-13 19:09:56 +0100
commit079c9e127b1e070c7c1637e09b3ee682baee6f92 (patch)
treee54c171f43ff4023cdb15cc1821061c63acbbac1 /src
parentCorrect window sizes and bug in network_constellation_plot (diff)
downloadFading-079c9e127b1e070c7c1637e09b3ee682baee6f92.tar.gz
Fading-079c9e127b1e070c7c1637e09b3ee682baee6f92.zip
Update QAM flowgraph and show crosscorrelation
Diffstat (limited to 'src')
-rwxr-xr-xsrc/gui/gui.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/gui.py b/src/gui/gui.py
index 3d21fd2..6091618 100755
--- a/src/gui/gui.py
+++ b/src/gui/gui.py
@@ -51,7 +51,7 @@ show_debug()
# Constellation diagrams
with theme(tag="constellation_series_theme"):
with theme_component(mvScatterSeries):
- # add_theme_style(mvPlotStyleVar_Marker, mvPlotMarker_Asterisk, category=mvThemeCat_Plots)
+ add_theme_style(mvPlotStyleVar_Marker, mvPlotMarker_Asterisk, category=mvThemeCat_Plots)
add_theme_style(mvPlotStyleVar_MarkerSize, 3, category=mvThemeCat_Plots)
@@ -140,15 +140,15 @@ with window(label="RX DSP Flow Graph", width=800, height=400, pos=(0,25), tag="r
# Network plots
time_plot = net.network_plot(url="udp://localhost:31415", dtype=float, \
- nsamples=100, tag="time_plot", label="Time plot")
+ nsamples=500, tag="time_plot", label="Time plot")
channel_plot = net.network_constellation_plot(url="udp://localhost:31416", \
- nsamples=100, tag="channel_plot", label="Channel")
+ nsamples=200, tag="channel_plot", label="Channel")
synchronized_plot = net.network_constellation_plot(url="udp://localhost:31417", \
- nsamples=100, tag="synchronized_plot", label="Synchronized")
+ nsamples=200, tag="synchronized_plot", label="Synchronized")
equalized_plot = net.network_constellation_plot(url="udp://localhost:31418", \
- nsamples=100, tag="equalized_plot", label="Equalized")
+ nsamples=200, tag="equalized_plot", label="Equalized")
locked_plot = net.network_constellation_plot(url="udp://localhost:31419", \
- nsamples=100, tag="locked_plot", label="Locked")
+ nsamples=200, tag="locked_plot", label="Locked")
network_plots = {
time_plot: "time_plot_series",