Bare-metal Rust on Zynq-7000
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Go to file
cw 4d961c1049 WIP: Fix mutability 3 years ago
.cargo cargo: remove unmaintained runner 3 years ago
experiments experiments: fix zc706 build 3 years ago
libasync update authors in cargo.toml 3 years ago
libboard_zynq remove flash support 3 years ago
libconfig WIP: Fix mutability 3 years ago
libcoreio add libconfig, libcoreio, szl from artiq-zynq a277e89b3ad; update dependencies 3 years ago
libcortex_a9 add Red Pitaya support (WIP) 3 years ago
libregister update authors in cargo.toml 3 years ago
libsupport_zynq add Red Pitaya support (WIP) 3 years ago
nix sync nix files with artiq-zynq c3f9a76f2a; add fsbl 3 years ago
openocd add Red Pitaya support (WIP) 3 years ago
szl add libconfig, libcoreio, szl from artiq-zynq a277e89b3ad; update dependencies 3 years ago
.gitignore remove zc706.elf from gitignore 4 years ago
Cargo.lock add libconfig, libcoreio, szl from artiq-zynq a277e89b3ad; update dependencies 3 years ago
Cargo.toml add libconfig, libcoreio, szl from artiq-zynq a277e89b3ad; update dependencies 3 years ago
README.md remove outdated/unmaintained files 3 years ago
armv7-none-eabihf.json define custom target, use with cargo-xbuild 4 years ago
default.nix default.nix: build redpitaya-experiments 3 years ago
remote_run.sh add remote run script 4 years ago
shell.nix add libconfig, libcoreio, szl from artiq-zynq a277e89b3ad; update dependencies 3 years ago

README.md

Build

nix-shell --command "cargo xbuild --release -p experiments"

Currently the ELF output is placed at target/armv7-none-eabihf/release/experiments

Debug

Running on the ZC706

nix-shell --command "cargo xbuild --release -p experiments"
cd openocd
openocd -f zc706.cfg

Running on the Cora Z7-10

nix-shell --command "cd experiments && cargo xbuild --release --no-default-features --features=target_cora_z7_10"
cd openocd
openocd -f cora-z7-10.cfg

Loading a bitstream into volatile memory

openocd -f zc706.cfg -c "pld load 0 blinker_migen.bit; exit"