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