Re: Tristating GPIO as an output
I used the code below but not working , did you find the solution ? void SetPinTristate(GPIO_TypeDef *GPIOx, uint16_t GPIO_Pin) { GPIO_InitTypeDef GPIO_InitStruct = {0}; GPIO_InitStruct.Pin = GPIO_Pin; GPIO_InitStruct.Mode = GPIO_MODE_INPUT; // Swi...