PA4 and PA5 don't work STM8S208RB
Hello,
STM8S208RB microcontroller. Pins PA4 and PA5 do not work in push-pull mode. Why? I haven't tried it in other modes. It's not a microcontroller issue because I tested it on two different microcontrollers. Pins are shown in the datasheet (see figure bellow).

I tested the robotic functionality using this code:
main()
{
PA_DDR = 0b01111110;
PA_CR1 = 0b01111110;
PA_CR2 = 0b00000000;
PA_ODR = 0b00000000;
while (1)
{
delay_miles(2000);
PA_ODR = 0b01111110;
delay_miles(2000);
PA_ODR = 0b00000000;
}
}

