From 112498255b46e822b149ccff11a030de55dc1749 Mon Sep 17 00:00:00 2001 From: Pascal Engeler <engelerp@phys.ethz.ch> Date: Fri, 30 Aug 2024 08:12:44 +0200 Subject: [PATCH] accumulator changed to extract sin/cos --- stitch_project/stitch/LockInAccumulator.vhd | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stitch_project/stitch/LockInAccumulator.vhd b/stitch_project/stitch/LockInAccumulator.vhd index c92f8f6..b0e4de0 100644 --- a/stitch_project/stitch/LockInAccumulator.vhd +++ b/stitch_project/stitch/LockInAccumulator.vhd @@ -147,7 +147,9 @@ begin dataInternal <= dataInternal; sinApplied <= sinInternal; cosApplied <= cosInternal; - dataApplied <= dataInternal; + --dataApplied <= dataInternal; + dataApplied(0) <= '1'; + dataApplied(20 downto 1) <= (others => '0'); trigInternal <= '1'; enableInternal <= '1'; clearInternal <= '0'; -- GitLab