STM32H7 HAL_Delay(200); Problem
This is my first time working with STM32H7B3IIT6 MCU. I wanted to make a led blink application, but the program is HAL_Delay(); it goes into an infinite loop and doesn't exit.
Ask questions, find answers, and share insights on STM32 products and their technical features.
This is my first time working with STM32H7B3IIT6 MCU. I wanted to make a led blink application, but the program is HAL_Delay(); it goes into an infinite loop and doesn't exit.
Hi,I have questions about LSE Drive (STM32L0).1) In RCC register are LSEDRV[1:0] bits and I am not sure if I understand it corretly.From datasheet about these bits: They are cleared by a power-on reset or an RTC reset. Once “00�? has been written, th...
Hello dear STM32-Community,I'm using an STM32L4R and wanted to configure my data retention of SRAM2 for standbymode.I did the following changes to the linker file:/* Highest address of the user mode stack */ _estack = 0x10004000; /* end of RAM */ ...
i am trying to use Stcube programmer in ubuntu by when i press connect button program is crashing i am attaching log file thank you
I intend to use CAN module in STM32F722ZE Nucleo board, but I have a problem- the CAN module does not work. I tried to see the example code, but it also is not run. Anyone has the source code for CAN module in STM32F722ZE Nucleo? ( Loopback or normal...
Hello, I want to generate an interrupt using the timer update event every T seconds at a given MCU frequency F using LL library and a basic timer with STM32L071CB.Lets say for example that:T = 5 sSystem clock frequency F = 32 MHzTimer TIM6 It look...
current tick count is say 0x0fffffffff (just 15 short of an over flow) and if my delay (wait) is say 20. Running count will rollover after 15 ticks and becomes 0. The new comparison will 0-0x0fffffff. Will the delay still work? I guess not. Your valu...
in stm32f407vgt, i declared the RTC structures and set the RTC with date: 1,1,70 and time: 0:0:0 later i set RTC with new values (date: 4,3,22 and time: 10:55:28)after few minutes if i read the RTC it giving a time properly but date is wrong (i,e. 1,...
Is it possible to use the same I2C peripheral to be used as both a master and a slave?I made use of an STM32G0 MCU and using examples from CubeMX, I got the peripheral I2C2 to work as a slave and a master separately where I am using interrupts for th...