nac3embedded: add device_db for artiq_run of the compiler output

This commit is contained in:
Sebastien Bourdeauducq 2021-09-24 13:26:23 +08:00
parent bf48151748
commit 4535b60fc0
1 changed files with 13 additions and 0 deletions

13
nac3embedded/device_db.py Normal file
View File

@ -0,0 +1,13 @@
# python demo.py
# artiq_run module.elf
core_addr = "192.168.1.50"
device_db = {
"core": {
"type": "local",
"module": "artiq.coredevice.core",
"class": "Core",
"arguments": {"host": core_addr, "ref_period": 1e-9}
}
}