mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-16 21:10:10 +00:00
Added an LMK03328 base chip driver which does basic register access, ID validation, and PLL lock validation. This will act as the base class for device specific drivers which control the chip. The code it similar to the LMK04828 and LMK04832 base driver classes but has a different register map structure. Register bitfield definitions were omitted and will be added on an as needed basis.
13 lines
261 B
Python
13 lines
261 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
|