Solved
STM32H753ZI Internal pull up resistors not doing anything?
Hey guys,
Kinda pulling my hair out as to why the pull up resistor is not kicking in? I am expecting when the MCU boots up to see a nice high signal on PA4, but nothing.
I am not sure what I am doing wrong. if I write a 0x01 into ODR it then pulls up, but I know that is not correct.
GPIO configuration:
LL_AHB4_GRP1_EnableClock(LL_AHB4_GRP1_PERIPH_GPIOA);
LL_GPIO_InitTypeDef GPIO_STD_CFG;
LL_GPIO_StructInit(&GPIO_STD_CFG);
GPIO_STD_CFG.Alternate = 0;
GPIO_STD_CFG.Mode = LL_GPIO_MODE_OUTPUT;
GPIO_STD_CFG.OutputType = LL_GPIO_OUTPUT_PUSHPULL;
GPIO_STD_CFG.Pin = LL_GPIO_PIN_4;
GPIO_STD_CFG.Pull = LL_GPIO_PULL_UP;
GPIO_STD_CFG.Speed = LL_GPIO_SPEED_HIGH;
LL_GPIO_Init(GPIOA, &GPIO_STD_CFG);
GPIOA Reg:

Logic Analazyer

