whitequark
2f4064ef0c
conda: override --install-lib, not --prefix.
2018-05-26 11:34:35 +08:00
whitequark
e7b3876eb6
Fix non-exception-safe finally: handlers.
...
Fixes #1013 .
2018-05-25 14:07:56 +08:00
whitequark
5f3cb1263c
conda: remove lib/python3.5 from artiq package paths as well.
...
Following c9287cfc
.
2018-05-25 11:31:51 +08:00
whitequark
d0e5aec862
compiler: handle direct calls to class methods.
...
Fixes #1005 .
2018-05-25 10:07:50 +08:00
whitequark
21406a585e
conda: put `noarch: python` on correct artiq-board package.
...
Fixes #989 .
2018-05-25 10:03:33 +08:00
whitequark
02f6727fa2
language: scan functions are not supported on core device.
...
Closes #1009 .
2018-05-23 10:46:29 +08:00
Sebastien Bourdeauducq
5667cef667
manual: add warning about developing section being for developers
2018-05-18 14:19:13 +08:00
Sebastien Bourdeauducq
1c4c5c9d96
coredevice/dds: fix bus_channel doc
2018-05-13 23:41:19 +08:00
Sebastien Bourdeauducq
bb91582acc
coredevice/dds: fix init_duration_mu and init_sync_duration_mu
2018-05-13 23:39:44 +08:00
whitequark
9c6978be84
Update LLVM to 6.0.0 and Rust to 1.25.0.
2018-05-06 15:05:00 +00:00
whitequark
9589decd54
Update log_buffer.
...
Closes #986 .
2018-05-06 14:30:54 +00:00
whitequark
a4fd9ad3e1
Unbreak 9dc7efef
.
2018-05-06 11:14:44 +08:00
whitequark
88134db35a
compiler: transparently handle Windows newlines in RunTool.
2018-05-06 11:14:37 +08:00
Sebastien Bourdeauducq
0faf781d5f
worker: keep sys.modules untouched until the end of examine()
2018-05-02 12:50:54 +08:00
Sebastien Bourdeauducq
840a401c5e
worker: python docs recommend not replacing sys.modules
2018-05-02 12:49:03 +08:00
Sebastien Bourdeauducq
6a0bba1d89
worker: restore sys.modules in examine() ( #976 )
2018-05-02 12:33:32 +08:00
Sebastien Bourdeauducq
b84a2a1eeb
Revert "tools/file_import: restore sys.modules. Closes #976 "
...
This reverts commit 5f3e417bb5
.
2018-05-02 12:33:23 +08:00
Sebastien Bourdeauducq
5f3e417bb5
tools/file_import: restore sys.modules. Closes #976
2018-05-01 22:17:16 +08:00
whitequark
843f871fd1
conda: artiq-board should be noarch, like artiq itself.
...
Fixes #989 .
2018-04-28 09:58:23 +08:00
whitequark
04e8d379b8
Unbreak f35f1001
.
2018-04-28 09:58:07 +08:00
whitequark
44e5d0804e
compiler: don't crash printing locations of specialized functions.
...
Fixes #987 .
2018-04-28 09:57:59 +08:00
whitequark
1e8cc731b6
firmware: don't truncate queued RPCs ( fixes #985 ).
2018-04-21 23:01:07 +00:00
whitequark
2c12e150f3
compiler: do not try to re-coerce fully coerced numerics.
2018-04-21 23:01:05 +00:00
whitequark
84d807a5e4
runtime: fix race condition in log extraction code paths ( #979 ).
...
The core device used to panic if certain combinations of borrows
of the log buffer happened. Now they all use .try_borrow_mut().
2018-04-21 11:55:10 +00:00
whitequark
4c65fb79b9
Commit missing part of b4e3c30d
.
2018-04-21 11:55:10 +00:00
whitequark
d11f66291c
compiler: desugar x != y into not x == y ( fixes #974 ).
2018-04-20 20:22:47 +08:00
Sebastien Bourdeauducq
66817e3b82
doc: add note about Sinara requiring ARTIQ-4+
2018-04-12 15:18:04 +08:00
Sebastien Bourdeauducq
e93a07bc8d
doc: update Sinara information
2018-04-12 15:15:07 +08:00
Sebastien Bourdeauducq
5dfd0e4701
conda: fix artiq-board (again)
2018-04-10 08:34:41 +08:00
Sebastien Bourdeauducq
6972ba4ee3
conda: fix artiq-board
2018-04-09 19:32:58 +08:00
Sebastien Bourdeauducq
3c678ad351
conda: split build/run requirements for artiq-board.
2018-04-08 21:03:35 +08:00
Sebastien Bourdeauducq
8c654748fa
conda: put requirements on correct artiq-board package.
2018-04-08 21:01:50 +08:00
Sebastien Bourdeauducq
9630833033
runtime: do not reset RTIO PHY on core.reset(). Closes #971
2018-03-28 10:51:33 +08:00
Sebastien Bourdeauducq
a844a3350e
firmware: reset local RTIO PHYs on startup ( #958 )
2018-03-22 16:30:08 +08:00
Sebastien Bourdeauducq
394b66cd8c
RELEASE_NOTES: update
2018-03-22 11:17:25 +08:00
Sebastien Bourdeauducq
41ae1d8e77
conda: bump misoc
2018-03-22 11:16:50 +08:00
Sebastien Bourdeauducq
35b70b3123
ttl_serdes_generic: fix/upgrade test
2018-03-20 16:47:40 +08:00
whitequark
24925f1c9e
conda: mark the artiq-build output package as noarch, not toplevel.
...
This also changes `noarch: python` to `noarch: generic` since
this is semantically correct; the bitstream/firmware packages
contain no Python code.
Fixes #960 .
2018-03-15 23:17:23 +00:00
whitequark
ba017147fc
compiler: do not pass files to external tools while they are opened.
...
This fixes access violations on Windows that are present both with
input and output files. For some reason, Cygwin-compiled binutils
did not exhibit this problem, but MSYS-compiled binutils do.
Fixes #961 .
2018-03-15 22:21:57 +00:00
whitequark
3904138c20
Remove merge artifact.
2018-03-14 04:21:10 +00:00
Sebastien Bourdeauducq
ce2b5a97cb
rtio/ttl_serdes_7series: reset IOSERDES ( #958 )
2018-03-14 09:01:56 +08:00
Sebastien Bourdeauducq
595d374f07
update copyright year
2018-03-13 00:25:35 +08:00
whitequark
c09269a323
conda: handle ARTIQ_VARIANT=phaser.
2018-03-11 18:59:54 +00:00
Sebastien Bourdeauducq
59fdb32b7b
conda: bump misoc
2018-03-10 22:59:09 +08:00
Sebastien Bourdeauducq
7337842ff9
runtime: add a missing overflow flag reset
2018-03-04 01:05:18 +08:00
Sebastien Bourdeauducq
87b51cbcc2
doc: DMA can also raise RTIOUnderflow
2018-03-04 01:04:11 +08:00
whitequark
232940e17f
conda: don't use globs in file list.
2018-02-27 17:40:41 +00:00
Robert Jördens
806d583153
kc705_sma_spi: fix cri_con
2018-02-27 10:48:10 +00:00
whitequark
015189b2ae
conda: modernize build.sh.
2018-02-26 16:25:49 +00:00
whitequark
d0d150d974
conda: add back py_ prefix in dependencies.
2018-02-26 15:48:31 +00:00