mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
59 lines
1.2 KiB
Text
59 lines
1.2 KiB
Text
logging = {
|
|
level = "debug"
|
|
}
|
|
|
|
fpgas = {
|
|
zcu106 = {
|
|
interface = "platform",
|
|
ips = "/root/codebase/node/etc/fpga/zcu106_aurora_dino/zcu106_aurora_dino_240808-2.json", # Absolute path for remote debugging
|
|
ignore_ips = ["dino_dinoif_dac_0", "dino_dinoif_fast_nologic_0", "dino_registerif_0", "axi_iic_0"],
|
|
polling = true,
|
|
}
|
|
}
|
|
|
|
nodes = {
|
|
fpga_0 = {
|
|
type = "fpga",
|
|
card = "zcu106"
|
|
# connect = ["loopback"]
|
|
connect = ["0<->dma"]
|
|
#builtin = false,
|
|
#lowLatencyMode = true,
|
|
},
|
|
|
|
signal_gen_0 = {
|
|
type = "signal.v2",
|
|
realtime = true,
|
|
rate = 100,
|
|
in = {
|
|
signals = (
|
|
{
|
|
name = "sine.v2",
|
|
signal = "sine",
|
|
frequency = 2,
|
|
amplitude = 1,
|
|
}
|
|
)
|
|
},
|
|
}
|
|
}
|
|
|
|
paths = (
|
|
{
|
|
in = "signal_gen_0"
|
|
out = "fpga_0"
|
|
},
|
|
{
|
|
in = "fpga_0"
|
|
hooks = (
|
|
{
|
|
type = "print"
|
|
#output = "print_output_file.log"
|
|
#format = "villas.human"
|
|
}
|
|
)
|
|
}
|
|
)
|
|
|
|
|
|
|