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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

60 lines
1.2 KiB
Text
Raw Permalink Normal View History

2024-08-26 13:00:55 +02:00
logging = {
level = "debug"
}
fpgas = {
zcu106 = {
interface = "platform",
2024-09-20 17:13:02 +02:00
ips = "/root/codebase/node/etc/fpga/zcu106_aurora_dino/zcu106_aurora_dino_240808-2.json", # Absolute path for remote debugging
2024-09-25 15:32:56 +02:00
ignore_ips = ["dino_dinoif_dac_0", "dino_dinoif_fast_nologic_0", "dino_registerif_0", "axi_iic_0"],
2024-08-26 13:00:55 +02:00
polling = true,
}
}
nodes = {
fpga_0 = {
type = "fpga",
card = "zcu106"
# connect = ["loopback"]
2024-10-30 22:20:37 +01:00
connect = ["0<->dma"]
2024-08-26 13:00:55 +02:00
#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"
}
)
}
)