Ask questions, find answers, and share insights on STM32 products and their technical features.
Hi everyone!I want to read 2 channels with an ADC via DMA using circular buffer. So far so good. Now I want to use a watchdog for both channels when a certain threshold is reached. However, when the watchdog is triggered and I read the values in the ...
Hi Team, I am using the stm32h745zi-Q as my development board. I am working in the SPI in the low level . But When I am enabling interrupts like LL_SPI_EnableIT_TXP(SPI1); and debugging the code It is getting in to the default handler in the startup ...
In my STM32L496 MCU I saw that if I activate timer1(PWM channel1) is not possible to use internal flash because FLASH_SR_PGSERR go up just after initialization (Hal_Init).while, if I disable the timer (in cube) and regenerate code, flash works as exp...
STM32F105VCI am new to stm programming. Appreciate any help to resolve the issue.
Hi all,I enabled LSECSSON register after select rtc clock as said from RM.I did not have any problem but if i shutdown power and power on , device used LSI as a rtc source and it cannot start LSE. Why this is happening ?
I copied the code for my timer setup, and the plan was every time the capture compare was equal the CC1IF would set and I toggle the LED in the IRQHandler; however, upon loading in the code it seems the IRQHandler only gets called once to turn the LE...
Hi I am the new for stm32 I use perih. library for stm32f0. Could you show using register not hal libraryMy code is like belowvoid TIM1_BRK_UP_TRG_COM_IRQHandler(){ if(TIM_GetITStatus(TIM1,TIM_IT_Trigger) != RESET){ if((TIM1->CR1 &TIM_CR1_URS )== RE...
I want to clear all pending interrupts in my bootloader before jumping to the user application, otherwise an interrupt will remain pending and therefore other interrupts wouldn't be triggered in the user application.After reading the Cortex-M datashe...