Ask questions, find answers, and share insights on STM32 products and their technical features.
I have connected my RS485 automatic hardware flow control with energymeter and with the help of that, tried to transmit the query 01 04 00 21 00 02 (forf voltage) along with CRC check ....uint16_t ModRtu_CRC(uint8_t buf[8], int len){ uint16_t crc = 0...
Hi all, I'm working with STM32F407VG-Discovery kit and I'm trying to create an application for exchange data via SPI with an ESP32 controller.I'm facing some problems with the synchronization. The STM32 acts as slave in mode 0. ESP32 controller sends...
Where to find specific part longevity? The following link has details for few parts only.https://www.st.com/content/st_com/en/about/quality-and-reliability/product-longevity.html#10-year-longevity
Hi,I'm facing an issue after configuring the SPI1 of STM32G491REI6 MCU using STm32CubeMX for SPI_DATASIZE_8BIT. I have captured the signals on the Oscilloscope after Transmitting the followed three-byte (0x03, 0x00, 0x50) from master(MCU) to slave. y...
MCU - STM32L431RC; HAL drivers ver 1.13.After switching clock from HSI to MSI 16 -> 32 MHz,CubeMX generated system Clock setup does not work.When trying to send data to STM constantly getting "Noise error" and rarely 1st byte is received via ISR. TX ...
Hello, I'm trying to read 9 ADC inputs on the G070 MCU using the interrupt method. Unfortunately, under the number of conversions setting I can only do 8 conversions. Is there a way around this? hadc.Instance = ADC1; hadc.Init.ClockPrescaler = AD...
Dear Sir,we are using STM32G series controller in our project but the problem is that we are also using eMMC card with 4GB which work on SDIO connectivity.could you plese share me which STM32g series will be suitable for it.Thank you
Sometimes DMA is setup prior to frame error interrupt, sometimes after frame error it is not clear to me why. Problem is when frame error is detected after dma is set up then "HAL_UART_IRQHandler" function executes "UART_DMAAbortOnError".I can not de...
Hi.I want to use interrupts to wake up from STOP2 and minimize the power consumption.The internal pull-up of 30k - 50K leaks about 100 uA when pulled to 3V3, so I was wondering how big can be a pull up in order to minimize this consumption. Ideally, ...