mirror of https://github.com/m-labs/artiq.git
doc: use wavedrom to visualize stuff
This commit is contained in:
parent
552146bd08
commit
60919c2ea7
|
@ -27,6 +27,7 @@ requirements:
|
||||||
- asyncserial
|
- asyncserial
|
||||||
- sphinx
|
- sphinx
|
||||||
- sphinx-argparse
|
- sphinx-argparse
|
||||||
|
- sphinxcontrib-wavedrom
|
||||||
- h5py
|
- h5py
|
||||||
- dateutil
|
- dateutil
|
||||||
- pyqt5
|
- pyqt5
|
||||||
|
|
|
@ -53,6 +53,7 @@ extensions = [
|
||||||
'sphinx.ext.mathjax',
|
'sphinx.ext.mathjax',
|
||||||
'sphinx.ext.viewcode',
|
'sphinx.ext.viewcode',
|
||||||
'sphinxarg.ext',
|
'sphinxarg.ext',
|
||||||
|
'sphinxcontrib.wavedrom',
|
||||||
]
|
]
|
||||||
|
|
||||||
# Add any paths that contain templates here, relative to this directory.
|
# Add any paths that contain templates here, relative to this directory.
|
||||||
|
|
|
@ -40,23 +40,45 @@ When computing the difference of absolute timestamps, use ``mu_to_seconds(t2-t1)
|
||||||
When accumulating time, do it in machine units and not in SI units, so that rounding errors do not accumulate.
|
When accumulating time, do it in machine units and not in SI units, so that rounding errors do not accumulate.
|
||||||
|
|
||||||
The following basic example shows how to place output events on the timeline.
|
The following basic example shows how to place output events on the timeline.
|
||||||
It emits a precisely timed 10 µs pulse:::
|
It emits a precisely timed 2 µs pulse:::
|
||||||
|
|
||||||
ttl.on()
|
ttl.on()
|
||||||
delay(10*us)
|
delay(2*us)
|
||||||
ttl.off()
|
ttl.off()
|
||||||
|
|
||||||
The device ``ttl`` represents a single digital output channel
|
The device ``ttl`` represents a single digital output channel
|
||||||
(:class:`artiq.coredevice.ttl.TTLOut`).
|
(:class:`artiq.coredevice.ttl.TTLOut`).
|
||||||
The :meth:`artiq.coredevice.ttl.TTLOut.on` method places an rising edge on the timeline at the current cursor position (``now``).
|
The :meth:`artiq.coredevice.ttl.TTLOut.on` method places an rising edge on the timeline at the current cursor position (``now``).
|
||||||
Then the cursor is moved forward 10 µs and a falling edge event is placed at the new cursor position.
|
Then the cursor is moved forward 2 µs and a falling edge event is placed at the new cursor position.
|
||||||
|
Then later, when the wall clock reaches the respective timestamps the RTIO gateware executes the two events.
|
||||||
|
|
||||||
|
The following diagram shows what is going on at the different levels of the software and gateware stack:
|
||||||
|
|
||||||
|
.. wavedrom::
|
||||||
|
{
|
||||||
|
signal: [
|
||||||
|
{name: 'kernel', wave: 'x22.2x', data: ['on()', 'delay(2*us)', 'off()'], node: '..A.XB'},
|
||||||
|
{name: 'now_mu', wave: '2...2.', data: ['7000', '9000'], node: '..P..Q'},
|
||||||
|
{name: 'slack', wave: 'x2x.2x', data: ['4400', '5800']},
|
||||||
|
{},
|
||||||
|
{name: 'rtio_counter', wave: 'x2x|2x|2x2x', data: ['2600', '3200', '7000', '9000'], node: ' V.W'},
|
||||||
|
{name: 'ttl', wave: 'x1.0', node: ' R.S', phase: -7.5},
|
||||||
|
{ node: ' T.U', phase: -7.5}
|
||||||
|
],
|
||||||
|
edge: [
|
||||||
|
'A~>R', 'P~>R', 'V~>R', 'B~>S', 'Q~>S', 'W~>S',
|
||||||
|
'R-T', 'S-U', 'T<->U 2µs'
|
||||||
|
],
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The sequence is exactly equivalent to:::
|
The sequence is exactly equivalent to:::
|
||||||
|
|
||||||
ttl.pulse(10*us)
|
ttl.pulse(2*us)
|
||||||
|
|
||||||
The :meth:`artiq.coredevice.ttl.TTLOut.pulse` method advances the timeline cursor (using ``delay()``) while other methods such as :meth:`artiq.coredevice.ttl.TTLOut.on`, :meth:`artiq.coredevice.ttl.TTLOut.off`, :meth:`artiq.coredevice.dds._DDSGeneric.set`, or the ``set_*()`` methods of :class:`artiq.coredevice.spi.SPIMaster` do not. The latter are called *zero-duration* methods.
|
The :meth:`artiq.coredevice.ttl.TTLOut.pulse` method advances the timeline cursor (using ``delay()``) while other methods such as :meth:`artiq.coredevice.ttl.TTLOut.on`, :meth:`artiq.coredevice.ttl.TTLOut.off`, :meth:`artiq.coredevice.dds._DDSGeneric.set`, or the ``set_*()`` methods of :class:`artiq.coredevice.spi.SPIMaster` do not. The latter are called *zero-duration* methods.
|
||||||
|
|
||||||
|
|
||||||
Underflow exceptions
|
Underflow exceptions
|
||||||
--------------------
|
--------------------
|
||||||
|
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -12,7 +12,8 @@ if sys.version_info[:3] < (3, 5, 2):
|
||||||
|
|
||||||
# Depends on PyQt5, but setuptools cannot check for it.
|
# Depends on PyQt5, but setuptools cannot check for it.
|
||||||
requirements = [
|
requirements = [
|
||||||
"sphinx", "sphinx-argparse", "asyncserial", "numpy", "scipy",
|
"sphinx", "sphinx-argparse", "sphinxcontrib-wavedrom",
|
||||||
|
"asyncserial", "numpy", "scipy",
|
||||||
"python-dateutil", "prettytable", "h5py",
|
"python-dateutil", "prettytable", "h5py",
|
||||||
"quamash", "pyqtgraph", "pygit2", "aiohttp",
|
"quamash", "pyqtgraph", "pygit2", "aiohttp",
|
||||||
"llvmlite_artiq", "pythonparser", "python-Levenshtein",
|
"llvmlite_artiq", "pythonparser", "python-Levenshtein",
|
||||||
|
|
Loading…
Reference in New Issue