You can chat about native SDK questions and issues here.

User avatar
By k4t4n4
#82053 How does one go about setting a gpio pin state to the equivalent of Hi-Z using nonos sdk? I'm trying to set tx/rx to hi-z on 8285 for a usb project.
User avatar
By quackmore
#82217 setting the gpio as an input and disabling the pullup should do it
have a look to the pullup macros into eagle_soc.h

Code: Select all#define PIN_PULLUP_DIS(PIN_NAME) ...
#define PIN_PULLUP_EN(PIN_NAME) ...