2022-03-14 17:15:27 +01:00
|
|
|
watchall
|
2022-03-09 16:44:44 +01:00
|
|
|
system "echo '[0] start test'"
|
2022-03-09 20:02:41 +01:00
|
|
|
system "echo '----------------------------------------------------------'"
|
2022-03-09 16:44:44 +01:00
|
|
|
|
|
|
|
set-qdi-channel-neutral "t.in" 5
|
|
|
|
set t.data[0].d[0] 0
|
|
|
|
set t.data[0].d[1] 0
|
|
|
|
set t.data[1].d[0] 0
|
|
|
|
set t.data[1].d[1] 0
|
2022-03-14 17:15:27 +01:00
|
|
|
set t.dly_cfg[0] 1
|
|
|
|
set t.dly_cfg[1] 1
|
2022-03-09 20:02:41 +01:00
|
|
|
set t.out.a 0
|
2022-03-14 17:15:27 +01:00
|
|
|
set t.out.v 0
|
|
|
|
#set t.registers._in_write.a 0
|
2022-03-09 16:44:44 +01:00
|
|
|
set Reset 0
|
|
|
|
cycle
|
|
|
|
status X
|
2022-03-14 17:15:27 +01:00
|
|
|
#mode run
|
|
|
|
cycle
|
|
|
|
|
|
|
|
assert-qdi-channel-neutral "t.out" 4
|
2022-03-09 16:44:44 +01:00
|
|
|
assert t.data[0].d[0] 0
|
|
|
|
assert t.data[0].d[1] 0
|
|
|
|
assert t.data[1].d[0] 0
|
|
|
|
assert t.data[1].d[1] 0
|
|
|
|
cycle
|
|
|
|
system "echo '[1] reset completed'"
|
2022-03-09 20:02:41 +01:00
|
|
|
system "echo '----------------------------------------------------------'"
|
|
|
|
|
2022-03-09 16:44:44 +01:00
|
|
|
# Set delay config lines
|
2022-03-14 17:15:27 +01:00
|
|
|
|
2022-03-09 16:44:44 +01:00
|
|
|
cycle
|
|
|
|
system "echo '[2] delay line set'"
|
2022-03-09 20:02:41 +01:00
|
|
|
system "echo '----------------------------------------------------------'"
|
|
|
|
|
2022-03-14 17:15:27 +01:00
|
|
|
|
2022-03-09 20:02:41 +01:00
|
|
|
set-qdi-channel-valid "t.in" 5 3
|
2022-03-14 17:15:27 +01:00
|
|
|
# 3 -> 00011 -> writing mode, address 00, word 11
|
2022-03-09 16:44:44 +01:00
|
|
|
cycle
|
2022-03-14 17:15:27 +01:00
|
|
|
assert t.in.a 1
|
|
|
|
assert-qdi-channel-neutral "t.out" 4
|
2022-03-09 16:44:44 +01:00
|
|
|
set-qdi-channel-neutral "t.in" 5
|
|
|
|
cycle
|
2022-03-14 17:15:27 +01:00
|
|
|
assert t.registers.ff[0].q 1
|
|
|
|
assert t.registers.ff[1].q 1
|
|
|
|
assert t.registers.ff[2].q 0
|
|
|
|
assert t.registers.ff[3].q 0
|
|
|
|
|
2022-03-09 20:02:41 +01:00
|
|
|
system "echo '[3] first writing done'"
|
|
|
|
system "echo '----------------------------------------------------------'"
|
|
|
|
|
2022-03-14 17:15:27 +01:00
|
|
|
set-qdi-channel-valid "t.in" 5 16
|
|
|
|
# 16 -> 10000 -> reading mode, address 00, word 00 (word doesn't needed here)
|
|
|
|
cycle
|
|
|
|
assert-qdi-channel-valid "t.out" 4 3
|
|
|
|
set t.out.v 1
|
|
|
|
cycle
|
|
|
|
set t.out.a 1
|
|
|
|
cycle
|
|
|
|
assert t.in.a 1
|
|
|
|
set-qdi-channel-neutral "t.in" 5
|
|
|
|
cycle
|
|
|
|
assert t.registers.ff[0].q 1
|
|
|
|
assert t.registers.ff[1].q 1
|
|
|
|
assert t.registers.ff[2].q 0
|
|
|
|
assert t.registers.ff[3].q 0
|
|
|
|
assert-qdi-channel-neutral "t.out" 4
|
|
|
|
system "echo '[4] reading done'"
|
|
|
|
system "echo '----------------------------------------------------------'"
|
2022-03-09 16:44:44 +01:00
|
|
|
|
|
|
|
|