Forum Posts
Is it possible to flash STM32 Nucleo board then power it with a battery and use it in an application without connecting it to PC?
Is it possible to flash STM32 Nucleo board then power it with a battery and use it in an application without connecting it to PC?
What is the highest External Timer Counter frequency on STM32L4?
We are using TIM1 and TIM2 in External Clock Mode 1 with a direct connection to a pin using TI1FP1.What is the maximum counting frequency, and more specifically, minimum pulse width detectable?Thank you.
Unable to wake-up from stand-by using pin wake-up
Hello,I'm using STM32F779NI.I'm trying to enter Standby mode & would like to wake-up through pin wake-up (PC13).Looks like stand-by entry is happening fine (SBF is set post reset) but wake-up pin flag is not set.Please find the code as belowint main(...
STM32H743 DMA have some bug when I using lastest HAL lib
We check stm32h7xx_hal_spi.c, and Surprise that the lastest HAL Lib still not support HAL_SPI_DMAStop() and HAL_SPI_DMAResume(). It is very important. We found DMA_SxCR's EN bit out of control in some time. We use DMA to send and receive spi dat...
DMA Performance
Do some homework assigned by the lecture but have no direction so ask for some help.I need to write a function DMASpeed() to demosntrate the speed improvement of DMA over a software loop for memory to memory transfers. I include polling DMA for my ho...
STM32L073 - Init RTC via external clock (PC)
Hi, My client has an existing circuit which is logging some data (no information given)Until the logging just has a counter which starts, when a power source is connected.Now they want to add a real clock to the logging entry, and I saw that the STM...
Resolved! STM32F1 PC14 and PC15 don't be output ?
Posted on February 21, 2018 at 13:01Hi;I have a problem.I want to be output pins PC14 and PC 15, so make the registers PWR -> CR = 0x00000100, RCC-> BDCR = 0x00000000. probably LSE ocillator isn't off. thim my code :#include 'stm32f10x.h'#include '...
I'm trying to use the MultibufferDMA mode of HAL driver for STM32F769 device. There's not a single example I could find which uses this mode in the list all the applications/demos/examples for STM32 devices. Here's an example call I use :
// using Double-Buffer DMADMA_HandleTypeDef hdma ;StreamBaseAddr = DMA_CalcBaseAndBitshift(&hdma) ; // get the stream base addr if (HAL_DMAEx_MultiBufferStart_IT(&hdma, StreamBaseAddr, Buffer[0], Buffer[1], BUF_SIZE)) { Error_Handler(); ...