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 miob conf

This commit is contained in:
Pascal Bauer 2024-08-26 13:00:55 +02:00 committed by Niklas Eiling
parent 00f28582d8
commit e8c4d1964c

58
miob.conf Normal file
View file

@ -0,0 +1,58 @@
logging = {
level = "debug"
}
fpgas = {
zcu106 = {
interface = "platform",
ips = "etc/fpga/zcu106_aurora_dino/zcu106_aurora_dino_240808-2.json",
polling = true,
}
}
nodes = {
fpga_0 = {
type = "fpga",
card = "zcu106"
# connect = ["loopback"]
# connect = ["1<->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"
}
)
}
)