mirror of https://github.com/m-labs/artiq.git
Fix some typos
This commit is contained in:
parent
eae5e02d04
commit
4bc5d1baf7
|
@ -197,7 +197,7 @@ class AD9910:
|
||||||
when changing frequency or phase. The DDS phase is the sum of the
|
when changing frequency or phase. The DDS phase is the sum of the
|
||||||
phase accumulator and the phase offset. The only discontinuous
|
phase accumulator and the phase offset. The only discontinuous
|
||||||
changes in the DDS output phase come from changes to the phase
|
changes in the DDS output phase come from changes to the phase
|
||||||
offset. This mode is also knows as "relative phase mode".
|
offset. This mode is also known as "relative phase mode".
|
||||||
:math:`\phi(t) = q(t^\prime) + p + (t - t^\prime) f`
|
:math:`\phi(t) = q(t^\prime) + p + (t - t^\prime) f`
|
||||||
|
|
||||||
* :const:`PHASE_MODE_ABSOLUTE`: the phase accumulator is reset when
|
* :const:`PHASE_MODE_ABSOLUTE`: the phase accumulator is reset when
|
||||||
|
|
|
@ -479,7 +479,7 @@ class Channel:
|
||||||
def get_y_mu(self, profile):
|
def get_y_mu(self, profile):
|
||||||
"""Get a profile's IIR state (filter output, Y0) in machine units.
|
"""Get a profile's IIR state (filter output, Y0) in machine units.
|
||||||
|
|
||||||
The IIR state is also know as the "integrator", or the DDS amplitude
|
The IIR state is also known as the "integrator", or the DDS amplitude
|
||||||
scale factor. It is 17 bits wide and unsigned.
|
scale factor. It is 17 bits wide and unsigned.
|
||||||
|
|
||||||
This method does not advance the timeline but consumes all slack.
|
This method does not advance the timeline but consumes all slack.
|
||||||
|
@ -497,7 +497,7 @@ class Channel:
|
||||||
def get_y(self, profile):
|
def get_y(self, profile):
|
||||||
"""Get a profile's IIR state (filter output, Y0).
|
"""Get a profile's IIR state (filter output, Y0).
|
||||||
|
|
||||||
The IIR state is also know as the "integrator", or the DDS amplitude
|
The IIR state is also known as the "integrator", or the DDS amplitude
|
||||||
scale factor. It is 17 bits wide and unsigned.
|
scale factor. It is 17 bits wide and unsigned.
|
||||||
|
|
||||||
This method does not advance the timeline but consumes all slack.
|
This method does not advance the timeline but consumes all slack.
|
||||||
|
@ -515,7 +515,7 @@ class Channel:
|
||||||
def set_y_mu(self, profile, y):
|
def set_y_mu(self, profile, y):
|
||||||
"""Set a profile's IIR state (filter output, Y0) in machine units.
|
"""Set a profile's IIR state (filter output, Y0) in machine units.
|
||||||
|
|
||||||
The IIR state is also know as the "integrator", or the DDS amplitude
|
The IIR state is also known as the "integrator", or the DDS amplitude
|
||||||
scale factor. It is 17 bits wide and unsigned.
|
scale factor. It is 17 bits wide and unsigned.
|
||||||
|
|
||||||
This method must not be used when the servo could be writing to the
|
This method must not be used when the servo could be writing to the
|
||||||
|
@ -535,7 +535,7 @@ class Channel:
|
||||||
def set_y(self, profile, y):
|
def set_y(self, profile, y):
|
||||||
"""Set a profile's IIR state (filter output, Y0).
|
"""Set a profile's IIR state (filter output, Y0).
|
||||||
|
|
||||||
The IIR state is also know as the "integrator", or the DDS amplitude
|
The IIR state is also known as the "integrator", or the DDS amplitude
|
||||||
scale factor. It is 17 bits wide and unsigned.
|
scale factor. It is 17 bits wide and unsigned.
|
||||||
|
|
||||||
This method must not be used when the servo could be writing to the
|
This method must not be used when the servo could be writing to the
|
||||||
|
|
|
@ -313,7 +313,7 @@ class _CompleterDelegate(QtWidgets.QStyledItemDelegate):
|
||||||
# case, but causes unnecessary flickering and trashing of the user
|
# case, but causes unnecessary flickering and trashing of the user
|
||||||
# selection when datasets are modified due to Qt's naive handler.
|
# selection when datasets are modified due to Qt's naive handler.
|
||||||
# Doing this is of course convoluted due to Qt's arrogance
|
# Doing this is of course convoluted due to Qt's arrogance
|
||||||
# about private fields and not letting users knows what
|
# about private fields and not letting users know what
|
||||||
# slots are connected to signals, but thanks to the complicated
|
# slots are connected to signals, but thanks to the complicated
|
||||||
# model system there is a short dirty hack in this particular case.
|
# model system there is a short dirty hack in this particular case.
|
||||||
nodatachanged_model = QtCore.QIdentityProxyModel()
|
nodatachanged_model = QtCore.QIdentityProxyModel()
|
||||||
|
|
Loading…
Reference in New Issue