STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

New possibilities for the ultra-low power segment!

STM32U0 is the first Cortex-M0+ with a static consumption of only 160 nA in standby mode with RTC (Real-Time Clock) and 16 nA in shutdown. It also achieves 118 points in CoreMark and targets SESIP level 3 and PSA level 1 focusing on firmware code pro...

gif-stm32u0.gif

Keil and stm32CubeMX generated USB CDC project

Posted on February 16, 2015 at 18:06 I Keil and stm32CubeMX generated USB CDC project I generated a USB CDC driver using Cube MX for the STM32L0538 DISCO. This compiled and linked and connected to a PC. I tried to send some bytes usin...

0690X0000060Mn6QAE.gif

Usart Selection ports

Posted on February 16, 2015 at 10:49Hi Can I select the TX and RX from diffirenet ports ? for example TX PC12 for usart 5 but RX PD2 usart 5 ? or they should be same (  port RX must be PC11 )? Thank you in advanced

I2C weird read value return in STM32F429I Disco

Posted on February 16, 2015 at 10:52Hey everyone,I am trying to get the Device ID of an I2C connected image sensor for our project but somehow the value keeps returning 0x00. I did recieve the Device ID (0xA0) a couple of times but could not do so o...

USB FIle download ->''Snow'' on LCD

Posted on February 14, 2015 at 16:33Using USB and FATFS, I am downloading a large file from USB to external flash (approx 2 MB), during download, I can see small random ''snow'' white pixels on LCD screen.The file download is a separate FreeRTOS tas...

Johanan1 by Associate II
  • 209 Views
  • 1 replies
  • 0 kudos

two STM32 micro USART communication

Posted on February 14, 2015 at 14:33In my design, I am using two STM32 micro communicate with USART, the connection is as below, these two micro is in same board, and the communicate trace line length is around 1.5 inch. STM32F030 (USART1_TX)  PA9--...

STM32F407 Half Duplex

Posted on February 13, 2015 at 11:33Hi,I am trying to figure what I need to set the SPI peripheral to communicate to a device which can be configured to be master or slave and has a single data bus.The slave device has the following pins - SCK, DATA...

paul23 by Associate II
  • 317 Views
  • 1 replies
  • 0 kudos

STM32F101 is not responding to reset

Posted on February 14, 2015 at 07:42Hi,We have a trouble with STM32F101. We used STM32F101 for far field device. It passed all EMI/EMC test for CE, then we started to field installation.After a while, server communication was lost with some devices....

mustafa by Associate II
  • 1245 Views
  • 8 replies
  • 0 kudos

stm32f4 spi problem

Posted on February 14, 2015 at 14:57Hi, the code for my interrupt handler is belowvoid SPI_IRQHandler(SPI_TypeDef * SPIx){ uint8_t SPIn = (SPIx == SPI1) ? 0 : ((SPIx == SPI2) ? 1 : 2); if(SPI_I2S_GetITStatus(SPIx, SPI_I2S_IT_RXNE) == SET) { if(_RxCo...