Broken SD card
ci/woodpecker/push/test-workflow Pipeline was successful

How tf did it break bro
This commit is contained in:
2025-06-09 15:41:13 -07:00
parent 71eecd18e8
commit fe227d1b61
16 changed files with 871 additions and 135 deletions
@@ -17,11 +17,15 @@ module display_anode_driver(
output logic [7:0] AN,
output logic [2:0] mux_select);
// Initialize this once, it can be free-running after
logic started;
// This is just a shift register that drives each anode individually
always_ff @(posedge clk) begin
if (reset) begin
AN <= '1 - 1;
mux_select <= 0;
started <= 1;
end
else begin
AN <= {AN[6:0], AN[7]};