STM32 MCUs Embedded software

Ask questions and find answers on STM32Cube packages, including HAL, LL and middleware, and expansion software.

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Resolved! HAL of HRTIM Master timer

How to convert these LL to HAL? /* Clear ISR flag */ HRTIM1->sMasterRegs.MICR = HRTIM_MASTER_IT_MREP;and HRTIM1->sMasterRegs.MCMP1R = (MULTIPHASE_PERIOD / 5);If I use Timers A-EI usually use these:/* Clear Interrupt flag */ __HAL_HRTIM_TIMER_CLEAR...

Resolved! STM32H743 variable not updating in interrupt handler

Hello,i have a strange situation happening and I really can't catch the reasons; in my project I set up an SPI transfer and set a global volatile variable that keeps trace of status state://Transmit Data if(spi == AMPLI_SPI4) SPI4_TransferState = TRA...

MSard by Associate II
  • 1783 Views
  • 6 replies
  • 0 kudos

FreeRTOS : Inerrupts

I work with FreeRTOS and I have two interrupts that can be triggered at the same time: An interrupt on a Timer in Input Capture mode (because I'm working with an ultrasound sensor HCSR04) and a UART interrupt (which is the reception of 'a character )...

AGHAZ by Associate II
  • 1185 Views
  • 5 replies
  • 0 kudos

pdf library

i have found a library https://github.com/Jun1172/stm32_pdflib_msc_storagebut it need much ram and ZI DATA 14k about pdf,so i want to know is there a small libray

How to check if ROM is okay on STM32F030

ROM Check on STM32F030I have an STM32F030 where my product has a requirement to do a ROM check before performing any task. How can I do it? Is there any API which returns the result of ROM check done in bootloader? What’s the easiest way of achieving...