Ask questions, find answers, and share insights on STM32 products and their technical features.
I am working with the STM32F446 microcontroller and for over a year I've successfully been able to erase sectors from within my code using FLASH_Erase_Sector. Now all of a sudden my code gets stuck whenever I call it! I have looked at the Option Byte...
The evaluation board STM32F429I-DISCO has a Synchronous Dynamic RAM: ISSI IS42S16400J I must use this external RAM instead of the internal RAM so I had a look to the example from "FMC/FMC_SDRAM_DataMemory"The example looks quiete easy. Nevertheless I...
Hi,I'm using STM32L072 Discovery Board and generated UART code using CubeMx, I'm able to transmit the data via UART but not able to receive the data. Please help me in this regard.int main(void) { /* USER CODE BEGIN 1 */ /* USER CODE END 1 */ ...
Hello everyone, I'm using RTC on board NUCLEO-L053R8, so I have some problems. How do I connect a battery in this board? I know that if I want save my battery lifetime I have to put my microcontroler in a mode as StopMode, but how can I do that when ...
hi i'm using HRTIM for PWM output.i could complete pwm output. but i want to stop it at pulse count that I want.is there any good way to stop output at i set pulse counts??
/* Enable write access to Backup domain */ PWR->CR1 |= PWR_CR1_DBP; while((PWR->CR1 & PWR_CR1_DBP) == RESET) { } /*Enable BKPRAM clock*/ __HAL_RCC_BKPRAM_CLK_ENABLE(); *(__IO uint32_t*)(0x38800000+36) = 12345678;run to here, DATA 12345678 is writt...
This code is from STM32H7xx_hal_dma.hwhat is __DMA_HandleTypeDef describing ?is it weak ? for what purpose ?typedef struct __DMA_HandleTypeDef { void *Instance; /*!< Register base address ...
STM32F446 in my case...When the ADC finishes a conversion and the DMA controller deposits the converter data into memory, what is the overhead ? i.e. How long does it take ? Is this shown in the documentation anywhere ?I would assume that as soon as ...
Hi,We are developing a board with the stm32l432kc comunicating thru CAN bus @500kbit/s, and after reading about the internal clock precision (1% at best for HSI16 in the 0-85C temperature range) we are concerned that it could lead to CAN communicatio...