Skip to content

Commit

Permalink
enable EMC, disable jackswitch as it stutters
Browse files Browse the repository at this point in the history
  • Loading branch information
vk2seb committed Oct 23, 2023
1 parent 7080982 commit 9af0536
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 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
6 changes: 3 additions & 3 deletions gateware/drivers/touch-cfg.hex
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ ff
10
03
01
58
44
00
37
06
Expand Down Expand Up @@ -126,5 +126,5 @@ ff
00
00
00
0d
2e
9c
39

0 comments on commit 9af0536

Please sign in to comment.