Ask questions, find answers, and share insights on STM32 products and their technical features.
Based on the info in the STM32 reference manual, I would have thought this code to start up the WWDG would work (after processor reset). // sets up the WWDG with a period of about 1 sec, no lower limit inline void StartWwdg() { LL_APB1_GRP1_EnableC...
Hi together,I have ADC reading issues with my STM32G431. I read the ADC with DMA. The readings are triggered by a burst of pulses (approx. 750 kHz) and the ADC buffer seems to get filled. However, the ADC readings are way to high.A 2.5 voltage regula...
Hello,I am trying to recognize a number sent to USART:If I send '123' over USART to MCU then MCU receives only '3' (the last character). Variable recv has uint8_t (unsigned integer) type. How could I receive the complete number ('123')?I am using STM...
Hai,I just want to enable the gpio through the LabVIEW using VISA communication, for this how can i make changes in stm32 firmware code to enable the gpio through the labview, if anyone have idea about to how to write the firmware code to access the...
The description of DMA_CMARx (and also DMA_CPARx) register in single-port DMA (AN2548) says:This register must not be written when the channel is enabled.What wrong may happen if this register is written when the channel is enabled?This of course is ...
Hi,I'm trying to sample data inside an ISR, write it to a buffer, and then write the data in the buffer to an SD card. The SD interface uses the SDMMC devices.It seems that when the ISR interrupts the SDMMC performing a write, the SDMMC errors and re...
i am using NUCLEO-G474RE board, TIM1 to output PWM wave, it works fine ,i can see the pwm wave through scope, but when i use HAL_TIM_PWM_Stop(&htim1, TIM_CHANNEL_3);HAL_TIMEx_PWMN_Stop(&htim1, TIM_CHANNEL_3);to stop PWM , there is a attenuated wavefo...
Also Which is better option to use Single Bank mode or Dual Bank Mode?I want to upgrade my application via bootloader and at the time of upgrade it is not necessary to continue currently running operation.And In DBANK bit ,description is written as ,...
I have made combine hexfile of BOOTLOADER+Application and i want to load that hexfile using STVP utility. But can not find STM32G483 MCU in device selection of STVP tool.As before i were using STM32F030CC mcu which is available but can not find STM32...