1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

add example config for VILLASnode integration

This commit is contained in:
Steffen Vogel 2022-10-27 06:02:20 -04:00
parent 2ad5fc1ccf
commit 26231dc78c

View file

@ -0,0 +1,44 @@
fpgas = {
vc707 = {
type = "pcie" // "platform" für ZCU107
port = "0:88.0.0"
ips = "path/to/device_tree.json"
crossbar = {
// Additional FPGA IP-core related configuration here
// Such as crossbar settings
}
}
}
nodes = {
aurora_ch0 = {
type = "villas-fpga"
fpga = "vc707"
dma = "axi_dma_0" // should not be required if there is only a single DMA
target = "aurora_axis_ch0"
}
aurora_ch1 = {
type = "villas-fpga"
fpga = "vc707"
dma = "axi_dma_1"
target = "aurora_axis_ch1"
}
record = {
type = "file"
uri = "dump.csv"
}
}
paths = (
{
in = "aurora_ch0"
out = "record"
},
)