blob: 716b77b02caab41c03d6c3ef5c06362d8c8a5c81 (
plain)
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
|
id: digital_glfsr_source_x
label: GLFSR Source
parameters:
- id: type
label: Type
dtype: enum
options: [float, byte]
option_attributes:
fcn: [f, b]
hide: part
- id: degree
label: Degree
dtype: int
- id: repeat
label: Repeat
dtype: enum
options: ['True', 'False']
option_labels: ['Yes', 'No']
- id: mask
label: Mask
dtype: int
default: '0'
- id: seed
label: Seed
dtype: int
default: '1'
outputs:
- domain: stream
dtype: ${ type }
templates:
imports: from gnuradio import digital
make: digital.glfsr_source_${type.fcn}(${degree}, ${repeat}, ${mask}, ${seed})
file_format: 1
|