Skip to content
Snippets Groups Projects
Commit e9a9b18b authored by Philipp Spilger's avatar Philipp Spilger
Browse files

Fix missing dependency on nux_vx_vY for neuron reset vector test

* required because sleep_cycles() is used

Change-Id: Ice5f757b9c37da64e52a4a9abca7c701b84ccd05
parent ba061919
No related branches found
Tags ebrains-3.0-a1
No related merge requests found
......@@ -169,7 +169,7 @@ def build_ppu_cpp(bld, chip_version: Integral):
features="cxx",
target=f"neuron_reset_vector-ppu_vx_v{chip_version}.bin",
source="vx/neuron_reset_vector-ppu.cpp",
use=[f"nux_runtime_vx_v{chip_version}"],
use=[f"nux_vx_v{chip_version}", f"nux_runtime_vx_v{chip_version}"],
env=env)
bld.program(
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment