Question about DMA
I have few question about DMA.1)Is that callback function need to be register?2)During the memory copied the source to the destination using DMA is that necessary need include the callback function?CH
Ask questions, find answers, and share insights on STM32 products and their technical features.
I have few question about DMA.1)Is that callback function need to be register?2)During the memory copied the source to the destination using DMA is that necessary need include the callback function?CH
I am in need of an updated REACH declaration for the product: STM32F031C4T6TR The one stated on your material declaration declares conformity to a REACH SVHC list from 2018. Newest REACH SVHC list is from January 2020BrSimon
Hi all,I searched the forum for my specific problem, but i did not find any solution for this weird occurrence. On my STM32F103 i run the RTC, which is working fine, as long as it is connected to the USB power. I store the date on 2 backup registers,...
Hi all, i want to ask about except from the reference manual where can i find out more question about the memory to memory DMA transfer.I want to figure out is there trade-off for memory to memory DMA transfer when the data size is big and small?Rega...
Hi, My self sai. Am working on stm32f745vg controller . In my application am transmitting 7byte data through uart.Sometimes entire uart transmission is blocking and untill power off my system is not responding to any command.Can i know why uart i...
In the STM32G030/070 datasheets, TS_CAL2 is missing.However, as @Andreas Bolsch pointed out in this thread, RM0454 for the G0x0 (!) explicitly refers to TS_CAL1 *AND* TS_CAL2 values from DS, and the formula given in the RM makes no sense at all wit...
#include <stdio.h> #include "diag/Trace.h" #include "stm32f0xx.h" #include "stm32f0xx_conf.h" #include "pin.h" #include "adc.h" int main(int argc, char* argv[]) { //(#) ADC pins (pA1) configuration --------------------------------------------...
Hey there,I have an STM32F042K6 with 32 KB flash which works with a whole bunch of peripherals using STM32 HAL and a lot of code. Now that everything is configured, it is overflowed by nearly 1.5KB (region `FLASH' overflowed by 1464 bytes).What I'll ...
Hi,when I took two variables and perform a multiplication between them with the STM32CubeIDE, the multiplication itself its made automatically with the multiplier module in the fastest way or there is something I need to do/configure to make it faste...
Hi,Currently, I am looking for the method to detect this function is under ISR or not.And I found that there has two snipset code,<Example 1>uint8_t isUnderInterrupt(void){ uint8_t status = THREAD_MODE; if (SCB->ICSR & SCB_ICSR_VECTACTIVE_Msk) {...