Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ad9912: mention lower f_ref, loop filter phase noise performance #2500

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion artiq/coredevice/ad9912.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,13 @@ class AD9912:
:param pll_n: DDS PLL multiplier. The DDS sample clock is
``f_ref / clk_div * pll_n`` where ``f_ref`` is the reference frequency and
``clk_div`` is the reference clock divider (both set in the parent
Urukul CPLD instance).
Urukul CPLD instance). For ``f_ref`` below 11MHz,
internal SYSCLK PLL doubler is used, and ``pll_n`` must be halved.
:param pll_en: PLL enable bit, set to 0 to bypass PLL (default: 1).
Note that when bypassing the PLL the red front panel LED may remain on.

.. note:: For other than default ``f_ref``, onboard loop filter may be not optimal
and requires hardware changes, according to the AD9912 datasheet.
"""

def __init__(self, dmgr, chip_select, cpld_device, sw_device=None,
Expand Down