2016-03-19 06:48:12 +08:00
|
|
|
.. Add new releases at the top to keep important stuff directly visible.
|
|
|
|
|
2016-01-26 08:04:33 +08:00
|
|
|
Release notes
|
|
|
|
=============
|
|
|
|
|
2016-03-25 20:24:49 +08:00
|
|
|
unreleased
|
|
|
|
----------
|
|
|
|
|
|
|
|
* The CPU speed in the pipistrello gateware has been reduced from 83 1/3 MHz to
|
|
|
|
75 MHz. This will reduce the achievable sustained pulse rate and latency
|
|
|
|
accordingly. ISE was intermittently failing to meet timing (#341).
|
|
|
|
|
|
|
|
|
2016-03-19 07:12:20 +08:00
|
|
|
1.0rc1
|
|
|
|
------
|
2016-01-26 08:04:33 +08:00
|
|
|
|
2016-01-29 12:55:03 +08:00
|
|
|
* Experiments (your code) should use ``from artiq.experiment import *``
|
|
|
|
(and not ``from artiq import *`` as previously)
|
|
|
|
* Core device flash storage has moved due to increased runtime size.
|
|
|
|
This requires reflashing the runtime and the flash storage filesystem image
|
2016-01-31 05:50:15 +08:00
|
|
|
or erase and rewrite its entries.
|
2016-03-18 01:41:49 +08:00
|
|
|
* ``RTIOCollisionError`` has been renamed to ``RTIOCollision``
|
|
|
|
* the new API for DDS batches is::
|
2016-03-19 05:55:39 +08:00
|
|
|
|
2016-03-09 17:12:50 +08:00
|
|
|
with self.core_dds.batch:
|
|
|
|
...
|
2016-03-18 01:41:49 +08:00
|
|
|
|
|
|
|
with ``core_dds`` a device of type ``artiq.coredevice.dds.CoreDDS``.
|
2016-03-09 17:12:50 +08:00
|
|
|
The dds_bus device should not be used anymore.
|
2016-03-18 01:41:49 +08:00
|
|
|
* LinearScan now supports scanning from high to low. Accordingly,
|
2016-03-19 07:12:20 +08:00
|
|
|
its arguments ``min/max`` have been renamed to ``start/stop`` respectively.
|
2016-03-18 01:41:49 +08:00
|
|
|
Same for RandomScan (even though there direction matters little).
|