zynq-rs/README.md

32 lines
623 B
Markdown
Raw Normal View History

2019-05-25 08:38:05 +08:00
# Build
```shell
nix-shell --command "cargo xbuild --release -p experiments"
2019-05-25 08:38:05 +08:00
```
2020-01-26 08:45:02 +08:00
Currently the ELF output is placed at `target/armv7-none-eabihf/release/experiments`
2019-05-25 08:38:05 +08:00
# Debug
2019-05-20 07:21:48 +08:00
2020-09-09 14:57:03 +08:00
## Running on the ZC706
2019-05-25 08:38:05 +08:00
```shell
nix-shell --command "cargo xbuild --release -p experiments"
2019-08-20 13:45:50 +08:00
cd openocd
openocd -f zc706.cfg
```
2019-05-25 08:38:05 +08:00
2020-09-09 14:57:03 +08:00
## Running on the Cora Z7-10
2019-05-25 08:38:05 +08:00
```shell
nix-shell --command "cd experiments && cargo xbuild --release --no-default-features --features=target_cora_z7_10"
2019-08-20 13:45:50 +08:00
cd openocd
openocd -f cora-z7-10.cfg
2019-05-25 08:38:05 +08:00
```
2020-01-15 05:07:19 +08:00
2020-09-09 14:57:03 +08:00
## Loading a bitstream into volatile memory
```shell
openocd -f zc706.cfg -c "pld load 0 blinker_migen.bit; exit"
```