Forum Posts
hello I am using STM32F030F4 microcontroller, question is regarding low power mode. For that i want to wake from stop mode using RTC. As RTC programmable mode is not there in STM32F030F4, So what is the best way to awake from stop mode.
Or any other way in STM32F030F4 microcontroller, to awake from low power mode. and I am using timer in my application.
In my application, I need to awake up with in 2 seconds regular intervals when it goes in stop mode. can you share sample code for RTC's calender and using its internal Alarm A for waking up?
I am using STM32F030F4P6I am just looking for an example code where RTC gives a periodic alarm every 1 second (or any other time period)
DMA RX buffer cache invalidation - BEFORE or AFTER a transfer?
Hi, I have following system:NUCLEO-F767ZI board (STM32F767ZI)Playing a waveform on DAC1, running it through a magic analog black-box, feeding it back to ADC1. Recording the signal on ADC1, stopping the transfer after one full buffer has been recorde...
BUG in RM0394 Rev 4, regarding timer (TIM2) synchronization.
When trying to synchronize (cascade) timers, specifically wanting TIM1 to provide clock for the TIM2, there is a bug in the reference manual RM0394 Rev 4.The bug is in the recipe in the section 27.3.19, page 857, called Using one timer as prescaler f...
HAL_SPI master OVR error
Hi everyone,I'm using the STM HAL for my SPIcommunication in master mode. Toreadout my ADC, I implemented a state machine, which startsthe ADC conversion and then once a data ready signal is received, the data isclock out in SPI full duplex mode. Onc...
Executable format for flashing under Linux
Hi,I use Linux as a development environment for STM32F429. I've created several Makefile files for my project and I'm able to compile it. Now I'd like to flash project's output binary file to STM32F429. I know that it is possible to mount STM32F429 ...
how to flash via dual boot option on stm32l476rg while using mbed os-version 5.x?
Hello,I am wanting to do flash via dual boot option on a STM32L476RG board using an external board NUCLEO- L476. when I am trying to change the option bit via program in which i am using HAL_FLASHEx_OBGetConfig and HAL_FLASHEx_OBProgram in our main p...
Resolved! HAL UART DMA RX - variable packet length & counter reset
Posted on April 05, 2017 at 12:48HelloI'm trying to read data from a GPS module that send packets with different lengths. I connected the rx line to another pin and enabled an interrupt on it, in this way I can 'timeout' the end of packet (packets a...
I2C Reception Issue with DMA in HAL Library
HelloI am implementing I2C transfer with DMA in stm32.Processor: stm32l152rdt6DMA Configuration:I would like to continuously receive 3 bytes from master, so I use circular mode.NVIC Configuration:I2C Initialization Code: hi2c1.Instance = I2C1; hi2...