Reduce POR duration
authorJean THOMAS <git0@pub.jeanthomas.me>
Mon, 13 Jul 2020 11:07:50 +0000 (13:07 +0200)
committerJean THOMAS <git0@pub.jeanthomas.me>
Mon, 13 Jul 2020 11:07:50 +0000 (13:07 +0200)
gram/simulation/crg.py

index 092c31953f33e98761108ef870c5af9511850324..d1ce6db8f606dd2f78ebe02074830855f2367744 100644 (file)
@@ -105,7 +105,7 @@ class ECPIX5CRG(Elaboratable):
         ]
 
         # Power-on delay (655us)
-        podcnt = Signal(16, reset=2**16-1)
+        podcnt = Signal(3, reset=2**3-1)
         pod_done = Signal()
         with m.If(podcnt != 0):
             m.d.rawclk += podcnt.eq(podcnt-1)