mirror of https://github.com/m-labs/artiq.git
sawg: absolute phase updates
This commit is contained in:
parent
9b43f09c1d
commit
d16068dd9b
|
@ -37,8 +37,10 @@ class DDSFast(Module):
|
||||||
If(self.f.stb,
|
If(self.f.stb,
|
||||||
eqh(q.i.f, self.f.f)
|
eqh(q.i.f, self.f.f)
|
||||||
),
|
),
|
||||||
|
q.i.clr.eq(0),
|
||||||
If(self.p.stb,
|
If(self.p.stb,
|
||||||
eqh(q.i.p, self.p.p)
|
eqh(q.i.p, self.p.p),
|
||||||
|
q.i.clr.eq(1)
|
||||||
),
|
),
|
||||||
q.i.stb.eq(self.f.stb | self.p.stb),
|
q.i.stb.eq(self.f.stb | self.p.stb),
|
||||||
]
|
]
|
||||||
|
@ -47,7 +49,6 @@ class DDSFast(Module):
|
||||||
self.f.ack.eq(1),
|
self.f.ack.eq(1),
|
||||||
self.p.ack.eq(1),
|
self.p.ack.eq(1),
|
||||||
q.o.ack.eq(1),
|
q.o.ack.eq(1),
|
||||||
q.i.clr.eq(0),
|
|
||||||
]
|
]
|
||||||
|
|
||||||
c = []
|
c = []
|
||||||
|
|
Loading…
Reference in New Issue