File: __init__.py

package info (click to toggle)
gr-satellites 5.8.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,836 kB
  • sloc: python: 29,546; cpp: 5,448; ansic: 1,247; sh: 118; makefile: 24
file content (27 lines) | stat: -rw-r--r-- 745 bytes parent folder | download | duplicates (4)
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# Copyright 2019 Daniel Estevez <daniel@destevez.net>
#
# This file is part of gr-satellites
#
# SPDX-License-Identifier: GPL-3.0-or-later
#

'''
gr-satellites datasink components

The datasinks consume frames or packets in order to do something
useful with them (printing telemetry, reconstructing images,
storing to file, etc.)

The input to these blocks are PDUs with the frames.
'''

from .codec2_udp_sink import codec2_udp_sink
from .file_receiver import file_receiver
from .hexdump_sink import hexdump_sink
from .kiss_file_sink import kiss_file_sink
from .kiss_server_sink import kiss_server_sink
from .telemetry_submit import telemetry_submit
from .telemetry_parser import telemetry_parser