ARTIQ Zynq-based core device support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
Configure Nix channels:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
nix-channel --add https://nixbld.m-labs.hk/channel/custom/artiq/fast-beta/artiq-fast
|
|
|
|
nix-channel --update
|
|
|
|
```
|
|
|
|
|
|
|
|
Pure build with Nix:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
nix-build -A zc706-simple-jtag # or zc706-nist_qc2-jtag or zc706-nist_clock-jtag
|
|
|
|
./remote_run.sh
|
|
|
|
```
|
|
|
|
|
|
|
|
Impure incremental build:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
nix-shell
|
|
|
|
cd src
|
|
|
|
gateware/zc706.py -g ../build/gateware # build gateware
|
|
|
|
make # build firmware
|
|
|
|
cd ..
|
|
|
|
./remote_run.sh -i
|
|
|
|
```
|
|
|
|
|
|
|
|
The impure build process can also be used on non-Nix systems.
|