Compare commits
3 Commits
5a2770b825
...
26225719a1
Author | SHA1 | Date |
---|---|---|
occheung | 26225719a1 | |
occheung | 235ddaaf39 | |
occheung | 0b01b9f090 |
12
Makefile
12
Makefile
|
@ -1,9 +1,5 @@
|
||||||
fpga_config: fpga_config.rs
|
fpga_config: main.rs
|
||||||
openocd -f openocd/openocd.cfg -f openocd/fpga-config.cfg
|
openocd -f openocd/openocd.cfg -f openocd/main.cfg
|
||||||
|
|
||||||
fpga_config.rs: top.bin
|
|
||||||
cargo build --example fpga_config
|
|
||||||
|
|
||||||
top.bin:
|
|
||||||
python3 migen/fpga_config.py
|
|
||||||
|
|
||||||
|
main.rs: top.bin
|
||||||
|
cargo build --release
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
init
|
|
||||||
reset init
|
|
||||||
halt
|
|
||||||
flash write_image erase target/thumbv7em-none-eabihf/debug/examples/ethernet
|
|
||||||
reset run
|
|
||||||
shutdown
|
|
|
@ -1,6 +0,0 @@
|
||||||
init
|
|
||||||
reset init
|
|
||||||
halt
|
|
||||||
flash write_image erase target/thumbv7em-none-eabihf/debug/examples/fpga_config
|
|
||||||
reset run
|
|
||||||
shutdown
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
init
|
||||||
|
reset init
|
||||||
|
halt
|
||||||
|
flash write_image erase target/thumbv7em-none-eabihf/release/humpback-dds
|
||||||
|
reset run
|
||||||
|
shutdown
|
|
@ -1,6 +0,0 @@
|
||||||
init
|
|
||||||
reset init
|
|
||||||
halt
|
|
||||||
flash write_image erase target/thumbv7em-none-eabihf/debug/examples/mqtt_client
|
|
||||||
reset run
|
|
||||||
shutdown
|
|
29
shell.nix
29
shell.nix
|
@ -30,30 +30,6 @@ let
|
||||||
fi
|
fi
|
||||||
'';
|
'';
|
||||||
|
|
||||||
runEthernetServer = writeShellScriptBin "run-ethernet-server" ''
|
|
||||||
set-gdb-config-file && cargo run --example ethernet
|
|
||||||
'';
|
|
||||||
|
|
||||||
compileMigenScript = writeShellScriptBin "compile-migen-script" ''
|
|
||||||
python3 migen/fpga_config.py
|
|
||||||
echo "Compiled fpga_config.py to top.bin"
|
|
||||||
'';
|
|
||||||
|
|
||||||
flashFPGAConfig = writeShellScriptBin "flash-fpga-config" ''
|
|
||||||
openocd-flash fpga-config
|
|
||||||
'';
|
|
||||||
|
|
||||||
configureFPGA = writeShellScriptBin "configure-fpga" ''
|
|
||||||
compile-migen-script \
|
|
||||||
&& cargo build --example fpga_config \
|
|
||||||
&& flash-fpga-config
|
|
||||||
'';
|
|
||||||
|
|
||||||
resetFlash = writeShellScriptBin "reset-flash" ''
|
|
||||||
gdb -batch -x gdb_config/reset.gdb
|
|
||||||
echo "Reset is complete, please reset the openocd server."
|
|
||||||
'';
|
|
||||||
|
|
||||||
openocdFlash = writeShellScriptBin "openocd-flash" ''
|
openocdFlash = writeShellScriptBin "openocd-flash" ''
|
||||||
openocd -f openocd/openocd.cfg -f openocd/$1.cfg
|
openocd -f openocd/openocd.cfg -f openocd/$1.cfg
|
||||||
'';
|
'';
|
||||||
|
@ -79,11 +55,6 @@ in
|
||||||
runOpenOcd
|
runOpenOcd
|
||||||
runOpenOcdBlock
|
runOpenOcdBlock
|
||||||
setGDBConfigFile
|
setGDBConfigFile
|
||||||
runEthernetServer
|
|
||||||
compileMigenScript
|
|
||||||
flashFPGAConfig
|
|
||||||
configureFPGA
|
|
||||||
resetFlash
|
|
||||||
openocdFlash
|
openocdFlash
|
||||||
publishMqtt
|
publishMqtt
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in New Issue