blob: 19b67322174487c10101ab46f27b032ce0c8a7e2 (
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
|
id: digital_crc32_async_bb
label: Async CRC32
parameters:
- id: check
label: Mode
dtype: enum
options: ['False', 'True']
option_labels: [Generate CRC, Check CRC]
inputs:
- domain: message
id: in
optional: true
outputs:
- domain: message
id: out
optional: true
templates:
imports: from gnuradio import digital
make: digital.crc32_async_bb(${check})
file_format: 1
|