mirror of https://github.com/m-labs/artiq.git
Merge branch 'master' of https://github.com/m-labs/artiq
This commit is contained in:
commit
7d3acf4d10
|
@ -3,7 +3,7 @@
|
||||||
# exit on error
|
# exit on error
|
||||||
set -e
|
set -e
|
||||||
# print commands
|
# print commands
|
||||||
set -v
|
#set -x
|
||||||
|
|
||||||
ARTIQ_PREFIX=$(python3 -c "import artiq; print(artiq.__path__[0])")
|
ARTIQ_PREFIX=$(python3 -c "import artiq; print(artiq.__path__[0])")
|
||||||
|
|
||||||
|
|
|
@ -75,10 +75,11 @@ scheduler API to achieve the same (``scheduler.yield(duration=0)``)
|
||||||
or wrap your own generators/coroutines/tasks in regular functions that
|
or wrap your own generators/coroutines/tasks in regular functions that
|
||||||
you then expose as part of the API.
|
you then expose as part of the API.
|
||||||
|
|
||||||
list the serial devices attached to my Linux/Windows system?
|
determine the pyserial URL to attach to a device by its serial number?
|
||||||
------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
You can do it by running::
|
You can list your system's serial devices and print their vendor/product
|
||||||
|
id and serial number by running::
|
||||||
|
|
||||||
$ python3 -m serial.tools.list_ports -v
|
$ python3 -m serial.tools.list_ports -v
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue