STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Delay function with TIM14 in nucleo G031K8

void TIM14_init(void){ RCC->APBENR2|=(1<<15); TIM14->PSC= 31; TIM14->SR=0; TIM14->CNT=0; TIM14->EGR|=(1<<0); } void TIM14_delay_us (int delay_us){ TIM14->ARR = delay_us; TIM14->CR1|= (1<<0); // counter enabled while (!((TIM14->SR)&1)); // wai...

0693W00000UoGKvQAN.png 0693W00000UoGKqQAN.png
Tommino by Senior
  • 1691 Views
  • 9 replies
  • 0 kudos

Erasing a page of flash on STM32L476RG

Hello everybody,I'm working on an STM32L476RG. For the moment, I'm using a nucleo-476RG board.I'm trying to write and read some data in the flash memory.I'm trying to write at the address : 0x080FF800 (first address of last page of the memory).I do t...

fab04 by Associate II
  • 1326 Views
  • 7 replies
  • 0 kudos

malloc or calloc allocation on stm32. I store some strings with calloc allocation and display that strings on the api text box. strings seems to be showing static on the api text box.Outputing strings are dynamic to be display on api text box.

Its the same strings showing on api text box. It does not change. But when I debug it I can see it changing and display on api (application interface) text box. Any idea about this?

cjaya.1 by Associate II
  • 407 Views
  • 0 replies
  • 0 kudos

Resolved! CAN Communication: Baud Rate Configuration

Hello,I have read the reference manual but the terminology used in the .ioc file and the reference manual do not align, so I am getting confused. I am using the STM32H7B3I-EVAL evaluation board, which uses a STM32H7B3LIH6Q MCU. According to the datas...

0693W00000UoNDcQAN.png 0693W00000UoNEaQAN.png
KMew by Senior III
  • 4471 Views
  • 5 replies
  • 0 kudos

STM32F303 HAL ISR being called twice

Hello!I am writing a program in which I am controlling a ST32F303 MCUs DAC1 and DAC2, thru a USB port, via LabView. The LabView part sends a data string containing the following "1,4095". The one implicates which DAC I am trying to control(in this ca...

BČern.1 by Associate
  • 1008 Views
  • 5 replies
  • 0 kudos