Revise pins for SPI and RGB

This commit is contained in:
Daniel Jobson 2024-10-29 15:30:10 +01:00
parent 5e8253465b
commit 5b32cf2500
No known key found for this signature in database
GPG key ID: 3707A9DBF4BB8F1A
2 changed files with 9 additions and 2 deletions

View file

@ -212,9 +212,9 @@ module tk1 (
.RGB1(led_g), .RGB1(led_g),
.RGB2(led_b), .RGB2(led_b),
.RGBLEDEN(1'h1), .RGBLEDEN(1'h1),
.RGB0PWM(muxed_led[LED_R_BIT]), .RGB0PWM(muxed_led[LED_B_BIT]),
.RGB1PWM(muxed_led[LED_G_BIT]), .RGB1PWM(muxed_led[LED_G_BIT]),
.RGB2PWM(muxed_led[LED_B_BIT]), .RGB2PWM(muxed_led[LED_R_BIT]),
.CURREN(1'b1) .CURREN(1'b1)
); );
/* verilator lint_on PINMISSING */ /* verilator lint_on PINMISSING */

View file

@ -19,6 +19,13 @@ set_io interface_tx A1
# set_io interface_rts 28 # set_io interface_rts 28
# SPI master to flash memory.
set_io spi_miso E1
set_io spi_sck D1
set_io spi_ss C1
set_io spi_mosi F1
# Touch sense. # Touch sense.
set_io touch_event B1 set_io touch_event B1