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

faliing to migrate trivial example from TIM6 to TIM5

Posted on April 15, 2014 at 15:23 I have a snippet which works, it blinks blue LED on stm32f4discovery: void TIM6_DAC_IRQHandler() { if (TIM6->SR) GPIOD->ODR ^= (1 << 15 ); // Toggle D15 TIM6->SR &= ~1; // Interrupt has been handled ...

arro239 by Senior
  • 799 Views
  • 8 replies
  • 0 kudos

STM32F439I-EVAL2 board support and configuring STM32CubeMX

Posted on April 15, 2014 at 19:14I just purchased the STM32F439I-EVAL2. The board didn't come with any BSP or code that I can build in IAR. I'm guessing I need to use STM32CubeMX to configure the Bsp and setup the pinouts used on the board. Unfortun...

kartik by Associate II
  • 349 Views
  • 1 replies
  • 0 kudos

STM 32 interfacing EEPROM with SPI.

Posted on April 15, 2014 at 19:08The original post was too long to process during our migration. Please click on the attachment to read the original post.

smkuls by Associate II
  • 670 Views
  • 1 replies
  • 0 kudos

How to retrieve 8MHz from 168 MHz processor

Posted on April 11, 2014 at 08:21I've got STM32F407VE controller that works at 168 MHz. I need to get a 8 MHz clock frequency from it and I guessed to use a timer in PWM mode, but they all have a 42 MHz or 84 MHz clocks and so I can't use approriate...

sminder by Associate II
  • 685 Views
  • 3 replies
  • 0 kudos

Discovery board PWM output example period value

Posted on April 14, 2014 at 22:17Hi all, just a simple question hopefully,In the peripheral example for configuring TIM3 for PWM output, calculations for working out PSC and ARR values are given, comments supposing to explain them.The bit thats conf...

chronometer STM32F4

Posted on April 14, 2014 at 19:51Hi, I am trying to create a chronometer runs in parallel with my main program. For my part I have created a delay function that works perfectly. And I tried to make the stopwatch with sysTick but its does not work.  ...

haythem by Associate II
  • 511 Views
  • 2 replies
  • 0 kudos

a reset in IAP, sp or ram or ...??

Posted on April 14, 2014 at 10:56Hello everybody , I have a firmware which runs whose offset adress is 0x9000 and on stm32f105RC (256 KB Flash, 64K Ram). It is a iap sw that runs on stm32f205 I am trying it to run on stm32f105.NVIC_SetVectorTable(NV...

arge by Associate III
  • 1111 Views
  • 6 replies
  • 0 kudos

PWM: drive output low in disabled mode

Posted on April 15, 2014 at 16:26I'm using TIM1 for a 6-step motor control on a STM32F2xx. According of the table 4 in DM0004234 application note, I update OCxE and OCxNE at each commutation, to select a new step. When OCxE = 0 and OCxNE = 0, the ou...

stinguely by Associate II
  • 1521 Views
  • 8 replies
  • 0 kudos

Overrun errors with two USART interrupts

Posted on April 15, 2014 at 11:09Using two USARTs running at 115200 baud on a STM32F2, one to communicate with a radio module and one for serial from a PC. The clock speed is 120MHz.When receiving data from both USARTs simultaneously overrun errors ...