Wren6991 / PicoDVI

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

Trying to write some text in terminal app #30

Closed Xiran64 closed 2 years ago

Xiran64 commented 2 years ago

Hi Wren6991!

Do you know, how to turn the tmds pins, in input mode, and after 5 segs. turn on again to continue drawing?

I´ve tried:

void tmds_as_input() { for (int x_tmds = GPIO_12; x_tmds < GPIO_12 + 7; x_tmds++) { gpio_init(x_tmds); gpio_set_dir(x_tmds, GPIO_IN);} } void tmds_as_output() { for (int x_tmds = GPIO_12; x_tmds < GPIO_12 + 7; x_tmds++) { gpio_init(x_tmds); gpio_set_dir(x_tmds, GPIO_OUT);} }

With no luck, because it doesn´t send signal again...

Thx in advice!