GPIO initialization for STM32F769I-DISCO
Hello,
I want to do GPIO initialization for STM32F769I-DISCO
here, i am using those pins in my code:
{GPIO_InitStruct.Pin = EV2_Pin|AF1_Pin|WF5_Pin;
GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
GPIO_InitStruct.Pull = GPIO_NOPULL;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
HAL_GPIO_Init(GPIOF, &GPIO_InitStruct);
}
EV2_Pin for electrovane AF1_Pin for air-fan
i am connecting the STM32F769i card to relay card and i want to initialize relays to 0 value.
I use this after declaration of pins
{
GPIO_ctrl_relay_AF1(GPIO_OFF);
GPIO_ctrl_relay_EV2(GPIO_OFF);
GPIO_ctrl_relay_WF5(GPIO_OFF);
}
Any Help or suggestion Guys ?
