blob: 2af5ee0daa1feb3e99ca78882989b6ca3fcf2f8a (
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
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright 2021 Naoki Pross.
import numpy as np
from gnuradio import gr
class deframer(gr.sync_block):
"""
Check for integrity and remove frame header from packet.
"""
def __init__(self, frame_obj):
gr.sync_block.__init__(self,
name="deframer",
in_sig=[np.byte],
out_sig=[np.byte])
def work(self, input_items, output_items):
in0 = input_items[0]
out = output_items[0]
out[:] = in0
return len(output_items[0])
|