hi guys, I'm having trouble trying to change a specific pin.
i can switch between all pin but this one is static, pin PC14 (I call it olcl).
I think maybe one of the peripheral units in the card is catching it to me.
this is the code and the setup.
sbs_pol_Pin is swiching states properly.
while (1)
{
HAL_GPIO_WritePin(sbs_pol_GPIO_Port,sbs_pol_Pin,GPIO_PIN_SET);
HAL_GPIO_WritePin(olcl_GPIO_Port,olcl_Pin,GPIO_PIN_SET);
delay_1u(100);
HAL_GPIO_WritePin(olcl_GPIO_Port,olcl_Pin,GPIO_PIN_RESET);
HAL_GPIO_WritePin(sbs_pol_GPIO_Port,sbs_pol_Pin,GPIO_PIN_RESET);
/*}


