User Activity

The function "__weak void HAL_SYSTICK_Callback()" is implemented in "stm32f4xx_hal_cortex.c"I overwrite it in the "main.c", I compiled project, but my project still does not work.void HAL_SYSTICK_Callback(void) { HAL_IncTick(); }Why am I wrong ?Wher...
I write a simple blinking project on STM32F4 Discovery board.It calls HAL_Delay() function for blinking effect on one LED.But the code hanging when reach HAL_Delay().When I debug, the HAL_Delay() stuck at while() loop in there.Here my code :#include ...
I am just a beginner with C, I set up a project with Keil MDK, the header files make me a little confused. I don't understand the meaning of "driver". The blinky project takes me a while but go nowhere.Does STMicroelectronics public any documents abo...
I'm drawing schematic for a small project, I have an information trouble with SDIO. I don't know how to wiring SDIO interface to micro sd card slot. Is there any document can help ?Thank !Sorry if my English is poor.
I am studying "audio example" in "stm32f4cube mcu package".In main.h file:#include "stm32f411e_discovery.h"How is this posible ?. "stm32f411e_discovery.h" file and "main.h" file are not in the same folder.