1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
|
options:
parameters:
author: 'Sara Halter '
category: '[GRC Hier Blocks]'
cmake_opt: ''
comment: ''
copyright: ''
description: ''
gen_cmake: 'On'
gen_linking: dynamic
generate_options: no_gui
hier_block_src_path: '.:'
id: Map_test
max_nouts: '0'
output_language: python
placement: (0,0)
qt_qss_theme: ''
realtime_scheduling: ''
run: 'True'
run_command: '{python} -u {filename}'
run_options: prompt
sizing_mode: fixed
thread_safe_setters: ''
title: Map test
window_size: ''
states:
bus_sink: false
bus_source: false
bus_structure: null
coordinate: [8, 8]
rotation: 0
state: enabled
blocks:
- name: const
id: variable_constellation
parameters:
comment: ''
const_points: '[-1-1j, -1+1j, 1+1j, 1-1j]'
dims: '1'
precision: '8'
rot_sym: '4'
soft_dec_lut: None
sym_map: '[0, 1, 3, 2]'
type: 16qam
states:
bus_sink: false
bus_source: false
bus_structure: null
coordinate: [984, 388.0]
rotation: 0
state: enabled
- name: samp_rate
id: variable
parameters:
comment: ''
value: '32000'
states:
bus_sink: false
bus_source: false
bus_structure: null
coordinate: [184, 12.0]
rotation: 0
state: enabled
- name: v0
id: variable
parameters:
comment: ''
value: -0.7071067811865475-0.7071067811865475j
states:
bus_sink: false
bus_source: false
bus_structure: null
coordinate: [712, 404.0]
rotation: 0
state: enabled
- name: v1
id: variable
parameters:
comment: ''
value: 0.7071067811865475-0.7071067811865475j
states:
bus_sink: false
bus_source: false
bus_structure: null
coordinate: [712, 468.0]
rotation: 0
state: enabled
- name: v2
id: variable
parameters:
comment: ''
value: -0.7071067811865475+0.7071067811865475j
states:
bus_sink: false
bus_source: false
bus_structure: null
coordinate: [712, 532.0]
rotation: 0
state: enabled
- name: v3
id: variable
parameters:
comment: ''
value: 0.7071067811865475+0.7071067811865475j
states:
bus_sink: false
bus_source: false
bus_structure: null
coordinate: [712, 596.0]
rotation: 0
state: enabled
- name: blocks_repack_bits_bb_0
id: blocks_repack_bits_bb
parameters:
affinity: ''
alias: ''
align_output: 'False'
comment: ''
endianness: gr.GR_MSB_FIRST
k: '4'
l: '8'
len_tag_key: '""'
maxoutbuf: '0'
minoutbuf: '0'
states:
bus_sink: false
bus_source: false
bus_structure: null
coordinate: [1376, 324.0]
rotation: 0
state: true
- name: blocks_vector_source_x_1_0
id: blocks_vector_source_x
parameters:
affinity: ''
alias: ''
comment: ''
maxoutbuf: '0'
minoutbuf: '0'
repeat: 'True'
tags: '[]'
type: complex
vector: '[(-0.9486832980505138-0.9486832980505138j), (0.9486832980505138+0.9486832980505138j)]'
vlen: '1'
states:
bus_sink: false
bus_source: false
bus_structure: null
coordinate: [704, 316.0]
rotation: 0
state: enabled
- name: digital_constellation_decoder_cb_0
id: digital_constellation_decoder_cb
parameters:
affinity: ''
alias: ''
comment: ''
constellation: const
maxoutbuf: '0'
minoutbuf: '0'
states:
bus_sink: false
bus_source: false
bus_structure: null
coordinate: [976, 332.0]
rotation: 0
state: true
- name: digital_map_bb_0
id: digital_map_bb
parameters:
affinity: ''
alias: ''
comment: ''
map: '[0, 1, 3, 2]'
maxoutbuf: '0'
minoutbuf: '0'
states:
bus_sink: false
bus_source: false
bus_structure: null
coordinate: [1216, 332.0]
rotation: 0
state: bypassed
- name: epy_block_1
id: epy_block
parameters:
_source_code: "\"\"\"\nEmbedded Python Blocks:\n\nEach time this file is saved,\
\ GRC will instantiate the first class it finds\nto get ports and parameters\
\ of your block. The arguments to __init__ will\nbe the parameters. All of\
\ them are required to have default values!\n\"\"\"\n\nimport numpy as np\n\
from gnuradio import gr\n\nnp.set_printoptions(formatter={'int':hex})\n\nclass\
\ blk(gr.sync_block):\n def __init__(self):\n gr.sync_block.__init__(\n\
\ self,\n name='Printer',\n in_sig=[np.byte],\n\
\ out_sig=[]\n )\n\n def work(self, input_items, output_items):\n\
\ inp = np.array(input_items[0], dtype=np.uint8)\n print(f\"Decoded\
\ {len(inp)} samples:\\n{inp}\")\n\n return len(inp)\n"
affinity: ''
alias: ''
comment: ''
maxoutbuf: '0'
minoutbuf: '0'
states:
_io_cache: ('Printer', 'blk', [], [('0', 'byte', 1)], [], '', [])
bus_sink: false
bus_source: false
bus_structure: null
coordinate: [1632, 336.0]
rotation: 0
state: enabled
- name: import_0
id: import
parameters:
alias: ''
comment: ''
imports: import numpy as np
states:
bus_sink: false
bus_source: false
bus_structure: null
coordinate: [272, 20.0]
rotation: 0
state: true
connections:
- [blocks_repack_bits_bb_0, '0', epy_block_1, '0']
- [blocks_vector_source_x_1_0, '0', digital_constellation_decoder_cb_0, '0']
- [digital_constellation_decoder_cb_0, '0', digital_map_bb_0, '0']
- [digital_map_bb_0, '0', blocks_repack_bits_bb_0, '0']
metadata:
file_format: 1
|