STM32 MCUs Products

Ask questions, find answers, and share insights on STM32 products and their technical features.

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

HardFault Handler occurs with the memcpy function

Posted on April 11, 2013 at 10:52void DMA2_Stream2_Rx(void) {   USART_ITConfig(USART1,USART_IT_RXNE,ENABLE);   USART_ITConfig(USART1,USART_IT_ORE_RX,ENABLE);   USART_DMACmd(USART1,USART_DMAReq_Rx,DISABLE);                       memcpy(&mbdCurRxDNode...

gaojian by Associate II
  • 1573 Views
  • 7 replies
  • 0 kudos

STM32 Hardware Independent Development

Posted on April 11, 2013 at 09:40 Hi, all! I have some experience in development programs on stm32 microcontrollers, and want to do my programs more fluent and independent for using on microcontrollers of other series. Have anybody som...

LWIP PROBLEM

Posted on April 11, 2013 at 09:56 Hi Guys, after tracing why my programs hangs up.. i finally traced it down to this ''Go to infinite loop when Hard Fault exception occurs'' int main(void) { /*!< At this stage the microcontroller clock settin...

xtian by Associate II
  • 563 Views
  • 1 replies
  • 0 kudos

IAP doesn't go to IRQ

Posted on April 10, 2013 at 09:50Hello. I make an IAP where my Boot start on 0x08000000, and my application on 0x08010000. The Boot make the jump correctly and by using LED signals I see it start O.K. But when I get to the first IRQ request and not ...

Barbie by Associate II
  • 1252 Views
  • 9 replies
  • 0 kudos

MCU firmware update with USART interface for STM32F100C8

Posted on April 10, 2013 at 08:33I am a new bird for this MCU. My project has two part:(1) Main program: Using the ST MCU (P/N: STM32F100C8) totransfer data in and out witha Bluetooth-module through USART interface and then to Android phone:ST MCU <...

aal by Associate
  • 693 Views
  • 1 replies
  • 0 kudos

MCU firmware update with USART interface for STM32F100C8

Posted on April 10, 2013 at 09:21Iam a new bird for this MCU. My project has two part:(1) Mainprogram: Using the ST MCU (P/N: STM32F100C8) to transfer data in andout withaBluetooth-module through USART interface and then to Androidphone:ST MCU <--> ...

aal by Associate
  • 533 Views
  • 1 replies
  • 0 kudos

External clock generation at non-multiple of system clock

Posted on April 08, 2013 at 09:24Hi All,     I am trying to produce a 256 kHz frequency clock for use with audio codecs. I am trying to produce this 256kHz freq from the 120MHz system clock on the STM32F207 series. I would like to use the timers to ...

Paul UHS by Associate II
  • 3597 Views
  • 22 replies
  • 0 kudos

Problem DMA interrupt with ADC

Posted on July 13, 2012 at 16:08 Hello everybody, I 'm using the STM32F4 discovery board. I use the ADC in triple mode with DMA. I configure the ADC in scan mode and regular channel. Here is my setup : /***************...