uhd/mpm/python/usrp_mpm/chips/__init__.py
Toni Jones 902f458137 cmake: Add RegMaps build component to MPM
Add RegMaps build component to MPM. The PYTHON_CHECK_MODULE is
included from UHDPython in order to look up the presence of Mako.
Mako is required for generating the regmaps and RegMap will be
disabled without it. The RegMaps component creates custom commands for
generating all regmaps, creates a Python submodule "ic_reg_maps" with a
custom __init__.py file, and creates a target "ic_reg_maps" which gets
installed with usrp_mpm.
2021-03-01 15:57:01 -06:00

14 lines
287 B
Python

#
# Copyright 2017 Ettus Research, a National Instruments Company
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
"""
Chips submodule
"""
from .adf400x import ADF400x
from .lmk04828 import LMK04828
from .lmk04832 import LMK04832
from .lmk03328 import LMK03328
from . import ic_reg_maps