Timer with dma
Can i use timer configured encoder with dma?
Ask questions, find answers, and share insights on STM32 products and their technical features.
Can i use timer configured encoder with dma?
In RM0090 rev.17, ch.5.1.4 Voltage regulator for STM32F42xxx and STM32F43xxx, at several places uses ODSW bit name, while the actual bit is caled ODSWEN both in 5.5 Power control registers (STM32F42xxx and STM32F43xxx) and the CMSIS-mandated device h...
Hi,Just downloaded the ST-MCU-FINDER-PC to compare some STM32G03x MCUs and have not found them in the app.Is there any alternative to easily compare two MCUs? Years ago I used to use xls sheet but I cannot find it now...
Greetings everyone,I'm thinking of a setup where a STM32H7 series chip is witha 1.2V regulator powers the core directly bypassing the LDO (REG1)another regulator whose output can be switched between 3.3V or 1.8V (default 3.3V on power up) powering th...
In "prioritized preemptive scheduling", able to send the data to UART from each task.For the round robin, I set the time slice of 200 ms.Have the doubt like how much time taken to change the state of UART handle from "Busy" to "Ready"?.
Im using F030F4P6 controller. Here's TIM16 configuration:Here's clock configuration:main.c: /* USER CODE BEGIN WHILE */ while (1) { toggleAll(); delayUs(1000); /* USER CODE END WHILE */...delayUs function:void delayUs(uint32_t delay) { us...
Hi,I started working on stm32f103cbu6 uC recently. Whenever i try to enable ADC1/ ADC2 , debugging terminates abruptly insideADC_Cmd(ADC1, ENABLE); at ADCx->CR2 |= CR2_ADON_Set;The same code works with stm32f103cbt6. I tried with example code in st ...
External interrupt errata?I have setup EXTI_Line12 and EXTI_Line14 to generate en interrupt.But the EXTI15_10_IRQHandler() fails to execute a second interrupt if it happens too close to the first interrupt.But it seems only happen when I use bit-band...
I'm having trouble getting the ADC on a STM32L476VGT6 discovery board to work. If I run by configuration code then click the ADSTART bit in the debugger, everything works fine. If I set the ADSTART bit in code in real time, the conversion never fin...
So, we are creating firmware for the STM32F7 that takes pictures and stores them to an SDCard. We have implemented kind of a custom database format which stores a kind of file allocation table in RAM, makes the edits as necessary, and then copies the...