Closed Xiran64 closed 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!
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!