mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-16 21:10:10 +00:00
16 lines
420 B
Python
16 lines
420 B
Python
#
|
|
# Copyright 2017 Ettus Research, a National Instruments Company
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
#
|
|
"""
|
|
periph_manager __init__.py
|
|
"""
|
|
|
|
__version__ = "${MPM_VERSION_MAJOR}.${MPM_VERSION_API}.${MPM_VERSION_ABI}.${MPM_VERSION_PATCH}"
|
|
__githash__ = "${MPM_GIT_HASH_RAW}"
|
|
|
|
from .base import PeriphManagerBase
|
|
|
|
# This is where the import magic happens
|
|
from .${MPM_DEVICE} import ${MPM_DEVICE} as periph_manager
|