From a644467ee7d2facf68474d3d0ef4de8a30cb1c37 Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Sat, 11 Dec 2021 14:04:56 +0100 Subject: Correctly decode symbols --- tests/correlator/epy_block_1.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'tests/correlator/epy_block_1.py') diff --git a/tests/correlator/epy_block_1.py b/tests/correlator/epy_block_1.py index 8ace6e4..2ee37fa 100644 --- a/tests/correlator/epy_block_1.py +++ b/tests/correlator/epy_block_1.py @@ -2,14 +2,12 @@ import numpy as np from gnuradio import gr # remove print for now -print = lambda x: None +# print = lambda x: None np.set_printoptions(formatter={'int':hex}) class blk(gr.sync_block): - def __init__(self, vlen=1): - dt = np.byte if vlen == 1 else (np.byte, vlen) - + def __init__(self, vlen=8): gr.sync_block.__init__( self, name='Printer', -- cgit v1.2.1