STM32 MCUs products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

SDIO (SDMMC) and FatFS with CubeMX

Posted on May 12, 2016 at 13:55Hello! I try to use the SDMMC1 interface together with FatFS. Initialization is created with CubeMX. My init is something like this: ... MX_LTDC_Init(); MX_SDMMC1_SD_Init(); MX_FATFS_Init(); ... Then I try to use the S...

dennis23 by Associate II
  • 508 Views
  • 3 replies
  • 0 kudos

DMA delay caused by Interrupts?

Posted on September 04, 2017 at 12:33 On my STM32F411RE I send data to my SPI2 peripheral port using DMA and it works fine, but the moment I enable any kind of interrupts for the NVIC it completely scrambles up my stream of DMA data on my SPI2 -...

Resolved! Should USARTx->BRR have to re-calculate ?

Posted on September 11, 2017 at 16:33 Hi, Now I'm trying to implement UART function as the below, But the problem is keep showing in RS232 Tool. I'm just referring fully reference posting such as https://community.st.com/thread/19577?comment...

0690X000006044uQAA.jpg 0690X000006041cQAA.jpg

Resolved! CubeMX for F0 has no GPIO settings

Posted on May 12, 2017 at 02:33Using recently updated (app and all libraries) CubeMX v4.21.0 on Windows 10, I create a new project for the NUCLEO-32 (STM32F042K6T6) board, but there are no settings for configuring the GPIO pins.When I go to the 'Con...

dale by Associate III
  • 436 Views
  • 3 replies
  • 0 kudos

stm32f030k6 problem with sysclk

Posted on September 12, 2017 at 19:21part of code from CoIDE//----------Clock configure-------------//RCC->CFGR |= RCC_CFGR_PLLMULL4;          // PLL multiplication factor = 4 RCC->CR |= RCC_CR_PLLON; // PLL start RCC->CFGR |= RCC_CFGR_SW_PLL;      ...