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

unlocking Data EEPROM on STM32L1xx

Posted on July 30, 2014 at 10:35Hi, to unlock data EEPROM on STM32 I need to write a sequence of two values to the FLASH_PEKEYR. Any failure in the sequence will permanently lock the EEPROM. Now there are some questions: - Do I need to disable inter...

mmensch by Associate II
  • 520 Views
  • 1 replies
  • 0 kudos

Flash Programming

Posted on July 29, 2014 at 21:40Hi, I am using STM32F103R8T6.I normally perform the in-circuit programming using the STMFlashLoader.exeSometimes I need to erase and program some pages performing an In-Application programming. I use the library funct...

sirpak by Associate II
  • 543 Views
  • 3 replies
  • 0 kudos

time management stm32l discovery

Posted on July 29, 2014 at 18:45Hi I am working fora project withthestm32ldiscoverybutI have a problem:the Delay functionthatI implementedin my programis not working void Delay(uint32_t nTime) { TimingDelay = nTime; while (TimingDelay != 0); }void T...

Filtering Function IIR Fiilter - Biquad Filter

Posted on July 28, 2014 at 11:46Hi everyone, I have to design an IIR Filter and i want to use the DSP library provided. I'm new to digital filtering and i want some help to understand the biquad function in the library. I found an exemple in the arm...

fohrer by Associate II
  • 1029 Views
  • 2 replies
  • 0 kudos

STM32L151: distinguish BOR and POR/PDR after reset

Posted on July 30, 2014 at 10:23Hello Is it possible to differ a reset caused by a POR/PDR from one caused by a BOR? The flag PORRSTF gets set by a PDR as well as by a BOR. I need to check if power voltage dropped only below VBOR or also below VPOR....

STM32F0- Serial communication problem (USART 1)

Posted on July 29, 2014 at 08:36 Hi, I am trying to sent some data to the controller (STM32F051) via pl2303 connector. Data is sent from an application. The problem is, I'm not able to receive the data sent by the application properly. The d...

aruns06 by Associate II
  • 726 Views
  • 2 replies
  • 0 kudos

How to make USB Audio Speaker work in STM32F303C-EVAL?

Posted on July 30, 2014 at 04:31Hi,Firstly, I tried to browse on the forums but there were only a few concerning STM32 F3-series.I have an STM32303C-EVAL board with STM32F303VCT6 MCU.I wanted it to act as a USB Audio Speaker.Basically:[PC] --USB--> ...

maggie by Associate III
  • 517 Views
  • 0 replies
  • 0 kudos

Unable to Set RTC on STM32F4

Posted on July 28, 2014 at 21:38Hi, I'm following an example as provided by the STD PERIPHERALS library, on an STM32F4 Discovery board. In spite of what's being written in the config routine, when I set the define for LSI, I read back this: Year = ...

DMA UART

Posted on July 29, 2014 at 20:26I am trying to send an array over UART using the DMA. I dont know why the DMA does not send more than 65535 elements.Is there a restriction on the DMA for only 16Bit numbers only ? #stm32f4 #board #discovery #rtfm ...