Ask questions, find answers, and share insights on STM32 products and their technical features.
Hello all,I am facing following problem:Trying to perform an erase operation of a flash sector forces a WWDG reset. The WWDG is initialized with following settings: hwwdg.Instance = WWDG; hwwdg.Init.Prescaler = WWDG_PRESCALER_8; hwwdg.Init.Wind...
HelloI found this article of ST about an LCA of a microcontroller: https://www.st.com/content/st_com/en/about/st_approach_to_sustainability/sustainability-priorities/sustainable-technology/eco-design/footprint-of-a-microcontroller.htmlIs it possible ...
HelloI want to add a 32kHz crystal on a F411 discovery board for the LSE.On the schematics, X2 has the value XTAL_32K_20PPM but is not fitted.Does someone has some hints for choosing the right crystal ?Bests
Hi all,I'm new to STM32G4 development. So I'm hoping to get some help to start.I need to measure pulse duration in 1 nanoseconds resolution or less. I then need to transfer the measured value to a another machines. I have been looking at STM32G4 seri...
I'm building a micropython firmware for running tensorflow lite for microcontroller examples. One of the main reference examples is called micro_speech and involves reading audio from a MEMS microphone at 16Khz using DMA and I2S and then feeding it ...
/*CODE to generate PWM signal of 50%*/#include "stm32l476xx.h"#include "pwm.h"void pwm_init(void){ /*RCC configuration*/ RCC->AHB2ENR|=RCC_AHB2ENR_GPIOEEN;//ENABLE GPIOE RCC->APB2ENR|=RCC_APB2ENR_TIM1EN;// ENABLE CLOCK ACCESS TO TIM1 //RCC->APB1ENR1|...
Hello,I'm working on 2 NUCLEO-F767ZI Demo Board.I'm using STM32CubeMX with last firmware package to generate the code and STM32CubeIDE to modify it and debug it.One of the board is used as an I2C Master, the other as I2C Slave. Every thing work fine ...