Ask questions, find answers, and share insights on STM32 products and their technical features.
I started writing embedded code 7 months back for a robotics project. Till now , I was able to handle most of the stuff with HAL libraries. I hit a snag when trying to interface with a AHRS(Microstrain CX5-25) unit. There were time when only first fe...
Hello,I am going to replace STM32F107 instead of F105 in my design, and as I see F107 has only one serial interface I2C1. In my case, I need both I2C1 and I2C2. Is there any way I can remap or define some pins as I2C2?Thank you.
I ' ve been working on a device that able to use industrial area. I must be sure that rtc clock is accurate because this device need to use RTC too much. When i researched , i did not find any code example about rtc calibration by temperature. Any su...
Hi,I have successfully configured the SPI1 with following parameters and trying to transfer a single byte but it is being timed-out in HAL_SPI_Transmit as EOT is not being set.Init.Mode = SPI_MODE_MASTER;Init.Direction = SPI_DIRECTION_2LINES;Init.Dat...
I need urgent help on STM32L071 RTC power consumption. when we enable standby mode, without RTC, the current from battery is <1uA. when we enable standby mode, WITH RTC, the current from battery is ~200 uA ? Which is too high to sustain
The reference manual (RM0402, DocID028087 Rev 7, Fig 4) shows TIM3 as a 32 bit timer. However, the in the description in Section 17.2, TIM3 and TIM4 are described as 16 bit timers.Is this a mistake in Figure 4 ?Thanks
Hello,I'm using STM32H757i-EVAL board and trying to store some data in the onboard SDRAM using stm32cubeide (1.7.0).Below is my initialization for SDRAMvoid MX_FMC_Init(void) { /* USER CODE BEGIN FMC_Init 0 */ /* USER CODE END FMC_Init 0 */ ...
Hi ST Community.I need your help. I am working on a PWM Proyect, Duty cicle must be change every period, and there is delta time where the PWM must be OFF.I am using a Timer, it fire an interrution and this interruption set a flag to 1 in order to r...
i've created 2 threads - i2c_tx_dma and i2c_rx_dma which use the HAL_I2C_Master_Transmit_DMA and HAL_I2C_Slave_Receive_DMA.I am working with 2 boards of the STM32h74 family:first board-> configured RX DMA on i2c1 block as a slave and activate HAL_I2C...