blob: 49142c65fc551526a391027fb73bd147b921f54a (
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
38
39
40
41
42
43
44
45
46
47
|
#
# Copyright 2003-2012, 2018 Free Software Foundation, Inc.
# Copyright 2021 Marcus Müller
#
# This file is part of GNU Radio
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
#
# The presence of this file turns this directory into a Python package
"""
Core contents.
"""
# This is the main GNU Radio python module.
# We pull the pybind output and the other modules into the gnuradio.gr namespace
# If gnuradio is installed then the pybind output will be in this directory.
# Otherwise it will reside in bindings/.
import os
try:
from .gr_python import *
except ImportError:
dirname, filename = os.path.split(os.path.abspath(__file__))
__path__.append(os.path.join(dirname, "bindings"))
from .gr_python import *
from .exceptions import *
from .top_block import *
from .hier_block2 import *
from .tag_utils import *
from .gateway import basic_block, sync_block, decim_block, interp_block, py_io_signature
# # Force the preference database to be initialized
# prefs = prefs.singleton
log = gr.logger("log")
log.set_level(prefs().get_string("LOG", "log_level", "notset"))
log_debug = gr.logger("log_debug")
io_signaturev = io_signature.makev
io_signature3 = io_signature.make3
io_signature2 = io_signature.make2
|