STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Small LCD using SPI with a STM32F4

Posted on October 20, 2013 at 04:11Hi all,I'm at my wit's end with this little project I'm working on. I'm new to MCUs and had a few ideas on small projects that I would like to make. I've been following a guide on the STM32 and modifying bits and p...

vinnie by Associate II
  • 1340 Views
  • 5 replies
  • 0 kudos

Frequency count and Input Capture

Posted on October 21, 2013 at 16:22How can I count more then 50Mhz frequency with STM32F407 series. #prescaler #input-capture #sample #frequency-counter #frequency-counter #frequency-counter

smeric by Associate II
  • 950 Views
  • 7 replies
  • 0 kudos

Impot Matrix

Posted on October 21, 2013 at 16:33Hello, I want to import a Matrix which his size is 140*200 to my program. This matrix is create by MATLAB (file format .mat) i can copy it to txt file. How can i call in main program to be useful after ? have I to...

bmwael1 by Associate II
  • 715 Views
  • 3 replies
  • 0 kudos

STM32F303 Flash size / Hardfault error

Posted on October 21, 2013 at 16:10Hello,I am using a : STM32F303RC (256k FLASK, 32k RAM, 8K CCRAM) gcc g++ tool chain with Eclipse. At compilation time, my firmware memory are as following:arm-none-eabi-size  --format=berkeley -t Muster.elf   text ...

stm32f4 interrupt pipeline hazard

Posted on October 21, 2013 at 10:26 Hello again, I have learned that this: void DMA2_Stream3_IRQHandler() { // Test if DMA Stream Transfer Complete interrupt if (DMA_GetITStatus(DMA2_Stream3, DMA_IT_TCIF3)) { DMA_ClearITPend...

mail2 by Associate II
  • 3451 Views
  • 3 replies
  • 0 kudos

Frequency Capture

Posted on June 08, 2013 at 12:03I am using stm32f103rbt6 for frequency capturing. I am trying to use timer1 channel1 and channel2 to capture two different frequency say 1K and 500 hertz. Once 1k frequency rising edge is detected i am reading the CCM...

aru by Associate II
  • 554 Views
  • 3 replies
  • 0 kudos

DMA and ADC on the STM32F2xx

Posted on October 18, 2013 at 22:41Trying to stuff multiple channels of ADC3 into a DMA, but am unsure of how the DMA address gets incremented. Is this done automatically behind the scenes and I don't have to worry, or am I missing a setup?  I didn'...