We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c658591 commit 3baf761Copy full SHA for 3baf761
src/tt_um_waves.v
@@ -202,7 +202,8 @@ end
202
203
// Waveform Output
204
wire [7:0] wave_out;
205
- wire [7:0] scaled_wave;
+ assign wave_out = selected_wave; // Ensure wave_out is driven
206
+ wire [7:0] scaled_wave;
207
208
// White Noise Generator
209
reg [7:0] white_noise_out;
@@ -248,6 +249,11 @@ end
248
249
assign uo_out[7:3] = 5'b0; // Remaining unused bits
250
assign uio_out = 8'b0; // Unused IOs
251
assign uio_oe = 8'b0; // All IOs set to input mode
252
+ assign uo_out[7:3] = 5'b00000; // Ensure upper bits are driven
253
+ assign uo_out[0] = i2s_out.sck; // I2S clock
254
+ assign uo_out[1] = i2s_out.ws; // I2S word select
255
+ assign uo_out[2] = i2s_out.sd; // I2S serial data
256
+
257
258
endmodule
259
0 commit comments