Wren6991 / PicoDVI

Bitbanged DVI on the RP2040 Microcontroller
BSD 3-Clause "New" or "Revised" License
1.26k stars 140 forks source link

Support Waveshare RP2040 PiZero #66

Closed SvenMb closed 2 months ago

SvenMb commented 4 months ago

Can you please add this board.

// Waveshare RP2040 PiZero
static const struct dvi_serialiser_cfg pizero_cfg = {
    .pio = DVI_DEFAULT_PIO_INST,
    .sm_tmds = {0, 1, 2},
    .pins_tmds = {26, 24, 22},
    .pins_clk = 28,
    .invert_diffpairs = false
};

Thanks SvenMb