Set the 6th and 7th pins as outputs, and then call
pins &= ~(1 << 6)
power_gpio.write(pins)
Changing the level of gpio will result the serial ports of C and D not being able to read data. Only when I call gpio. close() can I read data.
if the serial port and gpio cannot be used simultaneously?
thank you very much
chip is FT4232H,
A and B are used as gpio C and D are used as serial ports
When calling the following code:
Set the 6th and 7th pins as outputs, and then call
Changing the level of gpio will result the serial ports of C and D not being able to read data. Only when I call gpio. close() can I read data. if the serial port and gpio cannot be used simultaneously? thank you very much