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 ...
Hello,there seems to be a problem in function SD_read with reading data in DMA transfer mode to cached buffers.I've enabled cache handling with#define ENABLE_SD_DMA_CACHE_MAINTENANCE 1but there is a serious problem with calling SCB_InvalidateDCache_b...
/*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|...