STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Why doesn't gdb reach a breakpoint in main?

Posted on December 17, 2014 at 17:43Hello, I'm trying to debug a simple test program (http://developer.mbed.org/teams/ST/code/Nucleo_blink_led/) on my Nucleo board. I've successfully compiled it using GCC-ARM (arm-none-eabi-gcc), flashed my device o...

matt2399 by Associate II
  • 1053 Views
  • 2 replies
  • 0 kudos

STM32F439I-EVAL FreeRTOS + FatFs

Posted on December 17, 2014 at 14:50Hello, I'm having trouble reading from the uSD-card (2GB). Smaller files (<1KB) always seem to work, but when larger (>1KB) it's a bit random wether it works or just returns the first blocks of the file before goi...

STM32L151 Stop mode power consumption

Posted on November 20, 2014 at 12:47I am trying to get lowest power mode(in stop mode) of STM32L151RB. According to datasheet, power consumption in lowest achievable mode is below 14uA. But I am getting 40uA minimum on my device. I have tried differ...

Is there anaybody that have a TIM triggered DMA working Code?

Posted on December 01, 2014 at 22:49I'm stuck on TIM triggered DMA to SPI. My DMA Code configuration is as follow: void DMA_Configuration(void)  {      DMA_InitTypeDef               DMA_InitStructure;           /* Enable DMA1 clock */    RCC_AHBPer...

franck2 by Associate II
  • 1678 Views
  • 24 replies
  • 0 kudos

STM32F373c SDADC Init problem

Posted on December 17, 2014 at 14:03  The original post was too long to process during our migration. Please click on the attachment to read the original post.

STM32F439II RMII ethernet not working

Posted on December 16, 2014 at 14:15My company has developed a board with a STM32F207IG and RMII ethernet which is working fine. Now they have given me the same board with a STM32F439II fitted, and here I can not get the ethernet to work. The CPUs s...

Timers and SPI and DMA

Posted on December 15, 2014 at 16:52Hi, I am using STM32L152. I programmed some timers to output a repeated burst of pulses without any software interaction. Now I want SPI to transmit data from a buffer, one 16 bit word at each pulse, and repeat th...

mmensch by Associate II
  • 357 Views
  • 2 replies
  • 0 kudos

Linking 2 different hex files

Posted on December 15, 2014 at 02:55Hi,How can i link 2 different hex files at 2 distinct memory locations?for example at 0000h i have my main code and at 4000h i have my application code. app code must access the functions in main code, so since i ...