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

Resolved! Reset timer counter on Input Capture

Posted on June 14, 2018 at 01:13I have configured an timer IC channel and it is working ok however the timer counter isn't reset when I read the captured value: void HAL_TIM_IC_CaptureCallback(TIM_HandleTypeDef *htim){if (htim == &htim2)    {       ...

ee06091 by Associate III
  • 1924 Views
  • 5 replies
  • 1 kudos

Resolved! Broken Forum Login

Posted on May 18, 2016 at 20:54The forum has been a mess the last few days. Only ''sign-on to forum'' seems to work, entering username/password on message replies just results in all sorts of error screens/pages. TCP connect or somesuch. #worst-f...

How to display a large JPG image?

Posted on June 14, 2018 at 20:50HiI have a STM32F746 Discovery board.  I want to show jpg images on its display as background.There is an example for small images that works, but I don't understand the part where something is actually shown. Buffers...

LMI2 by Lead
  • 233 Views
  • 0 replies
  • 0 kudos

STM32L072CZ Discovery Board PIN Layout

Posted on June 14, 2018 at 17:32Hi,I use the STM32L072CZ Discovery Board and I don�t find the PA6 PIN (MISO) on the board. In which document I can find the shematic Information? Or can somebody tell me another way to find the right PIN on the board,...

Resolved! Over the Air Update BLE, STM32F2, CRC Always 0?

Posted on June 05, 2018 at 17:21I would suggest opening the file attached in notepad++.Generally speaking the code makes sense. I can get it working without the CRC, which apparently is supposed to equal 0.Note the following section:if(psFirmware->u...

ADC & DMA disrupting SPI

Posted on June 13, 2018 at 21:48Hi,I have ADC & DMA working well, scanning 2 channels in circular mode using full and half full callback routines. It works swimmingly. I also have SPI transmissions happening off of a timer interrupt. The problem is ...

STM32F030R8T6 I2C2 doesnt work

Posted on June 12, 2018 at 10:54I2C1 works absolutely fine. When I went through the datasheet found out that I2C2 doesnt support Independent clock.Could anyone throw some light on how to configure I2C2. I am using STM32 CubeMX.#i2c #i2c2 #i2c-clock

Resolved! Software interrupt on STM32L4

Posted on June 12, 2018 at 10:34Hi all,I try to create a software interrupt in STM32L476.This is the software interrupt enable codeHAL_NVIC_SetPriority(EXTI1_IRQn, 3, 0); HAL_NVIC_EnableIRQ(EXTI1_IRQn); LL_EXTI_EnableIT_0_31(LL_EXTI_LINE_1); LL_EXTI...