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

DFU Bootloader for STM32L072xx

Posted on June 24, 2017 at 14:53Hi there,I'm facing some problem in getting a STM32L072 MCU in DFU (USB) mode by jumping to the Bootloader in-code.Following other posts suggestion and the AN2606 i've written these two functions:#define RESET_TO_BOOT...

davide by Associate II
  • 536 Views
  • 1 replies
  • 0 kudos

CAN connection problem

Posted on November 21, 2017 at 08:16Hi.I am trying to establish CAN connection between STM32F767NUCLEO144 and STM32F4DISCOVERY boards. So far I have maneged to establish connection between 2 STM32F4 boards and between 2 STM32F7 boards(I can transmit...

ADC STM32

Posted on November 20, 2017 at 12:46Hi, I'm trying to use 4 ADC channels on STM32L152RE but it seems there are some problems with HAL_Delay and Hal Gettick... if I use only 2 channels it works.

LL equivalent to SPL FLASH_ProgramWord routine?

Posted on November 20, 2017 at 13:56HiI'am trying to migrate existing SPL based flash erase and program code to LL. Some flash routine are part of the xxx_ll_system driver but I am missing the erase and program routines such as the FLASH_ProgramWord...

loeffel2 by Associate III
  • 385 Views
  • 2 replies
  • 0 kudos

still have problem in SDIO

Posted on November 20, 2017 at 06:49my sdio driver is copied from STM32Cube_FW_F4_V1.17.0\Drivers\BSP\STM324x9I_EVAL\stm324x9i_eval_sd.cwhile i call HAL_SD_ReadBlocks_DMA,it's looks normalafter the card finish read,HAL_SD_GetState return HAL_SD_STAT...

Xin Yang by Associate II
  • 398 Views
  • 1 replies
  • 0 kudos

Problem adding DTCM section to GNU linker script

Posted on November 20, 2017 at 23:13Hi, I am running a custom microSD Card bootloader on an STM ARM Cortex-M7 STM32F746NG device. The bootloader itself works well. The bootloader occupies the first 32KByte sector starting at 0x08000000 and an area o...

flash program single byte in stm32L031g6

Posted on November 20, 2017 at 08:00I want to write 1byte variable to the internal flash memory. It works well when I write 4bytes variable like this.if (HAL_FLASH_Program(FLASH_TYPEPROGRAM_WORD, Address, vari4) == HAL_OK) {    Address+=4; }but when...