gr-lora/python/__init__.py

25 wiersze
541 B
Python

2016-06-22 19:43:15 +00:00
#
# Copyright 2008,2009 Free Software Foundation, Inc.
#
2021-11-29 16:41:47 +00:00
# SPDX-License-Identifier: GPL-3.0-or-later
2016-06-22 19:43:15 +00:00
#
# The presence of this file turns this directory into a Python package
'''
This is the GNU Radio LORA module. Place your Python package
description here (python/__init__.py).
'''
2021-11-29 16:41:47 +00:00
import os
2016-06-22 19:43:15 +00:00
2021-11-29 16:41:47 +00:00
# import pybind11 generated symbols into the lora namespace
try:
# this might fail if the module is python-only
from .lora_python import *
except ModuleNotFoundError:
pass
2016-06-22 19:43:15 +00:00
# import any pure python here
2021-11-29 16:41:47 +00:00
from .lora_receiver import *
2016-06-22 19:43:15 +00:00
#