diff --git a/miob.conf b/miob.conf new file mode 100644 index 000000000..76a091ef4 --- /dev/null +++ b/miob.conf @@ -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" + } + ) + } +) + + +