mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-15 21:01:26 +00:00
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.
14 lines
287 B
Python
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
|