Abnormal GPIO Operating Frequency on STM32H743IIT6
Dear Support Team,
I am encountering an unexpected issue with my STM32H743IIT6 microcontroller where the GPIO operation frequency observed via an oscilloscope is only 16.6 MHz, despite configuring the bus clock at 400 MHz and AHB clock at 200 MHz. Below is the code snippet I am using for testing:
__attribute__((section("RAM_CODE"))) void gpio_test()
{
while(1)
{
GPIOB->BSRR = 0x02; /* PB1 set high */
GPIOB->BSRR = 0x020000; /* PB1 set low */
}
}
STM32F407 168M clock, GPIO with the same code can reach 33M
