We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi,
i am new with Keil. I tried to blink a led. So, in order to enable clock I looked into "stm32f4xx.h" header file. And i see that this instruction below 'How to use this driver'
(#) Enable the GPIO AHB clock using the following function: __HAL_RCC_GPIOx_CLK_ENABLE().
But when i copy this, i get an error and it says:
Undefined symbol __HAL_RCC_GPIOx_CLK_ENABLE()
What is the reason for this?
Best regards.
GPIO Module not optioned via stm32h7xx_hal_conf.h ? Missing command line defines? USE_HAL_DRIVER
I included "stm32f4xx_hal.h" and now it works. Thanks.