blob: f507a68081ead9103e93ffffc201f172e4558064 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#
# Copyright 2017 Ettus Research, a National Instruments Company
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
"""
periph_manager __init__.py
"""
from .base import PeriphManagerBase
# This is where the import magic happens
from .${MPM_DEVICE} import ${MPM_DEVICE} as periph_manager
|