diff options
author | Toni Jones <toni.jones@ni.com> | 2019-01-08 17:23:24 +0000 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-02-22 10:15:13 -0600 |
commit | 2e441d296b1f98fd4939d4008430e8814e777e0c (patch) | |
tree | 582c03600dd20a9443a90a9d9fbd9a3291526a0c /mpm/python/usrp_mpm/chips/__init__.py | |
parent | ecbb24505dc2662ecee9da1de95cf8f99dec0c9e (diff) | |
download | uhd-2e441d296b1f98fd4939d4008430e8814e777e0c.tar.gz uhd-2e441d296b1f98fd4939d4008430e8814e777e0c.tar.bz2 uhd-2e441d296b1f98fd4939d4008430e8814e777e0c.zip |
mpm: Add an LMK04832 base chip driver
Added an LMK04832 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 is similar to
the LMK04828 base driver class, but has a different register map
structure.
Diffstat (limited to 'mpm/python/usrp_mpm/chips/__init__.py')
-rw-r--r-- | mpm/python/usrp_mpm/chips/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mpm/python/usrp_mpm/chips/__init__.py b/mpm/python/usrp_mpm/chips/__init__.py index 15b4a3704..60368ad6a 100644 --- a/mpm/python/usrp_mpm/chips/__init__.py +++ b/mpm/python/usrp_mpm/chips/__init__.py @@ -9,3 +9,4 @@ Chips submodule from .adf400x import ADF400x from .lmk04828 import LMK04828 +from .lmk04832 import LMK04832 |