Skip to content

Commit

Permalink
remove jackdet zeroing
Browse files Browse the repository at this point in the history
  • Loading branch information
schnommus committed Oct 4, 2023
1 parent 60dd528 commit 4dd863a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gateware/cal/cal.sv
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,10 @@ always_ff @(posedge clk_256fs) begin
end
CAL_ST_OUT: begin
// Calibrated input samples are zeroed if jack disconnected.
out0 <= jack[0] ? out[0][W-1:0] : 0;
out1 <= jack[1] ? out[1][W-1:0] : 0;
out2 <= jack[2] ? out[2][W-1:0] : 0;
out3 <= jack[3] ? out[3][W-1:0] : 0;
out0 <= out[0][W-1:0];
out1 <= out[1][W-1:0];
out2 <= out[2][W-1:0];
out3 <= out[3][W-1:0];
out4 <= out[4][W-1:0];
out5 <= out[5][W-1:0];
out6 <= out[6][W-1:0];
Expand Down

0 comments on commit 4dd863a

Please sign in to comment.