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

Support for accessing SD card through SDIO/SPI interface through Keil platform or a firmware coding model?

The device we are using is STM32F446RE nucleo board.We would like to have well documented support for accessing SD card through either of these two modes:i.SDIO mode(1-bit)ii.SPI modeWe have tried tweaking the code provided for other variants in STM ...

How to use 2 gpio interrupts on same EXTI2 line

Hi ,I have connected switch to PC2 and PD2 (the are acting as gpio input),after trying to generate initial code using cubemx found that these two pins are on same gpio interrupt EXTI2 line , so cubemx is not allowing to have interrupt on both pins,is...

SA.17 by Associate III
  • 1881 Views
  • 6 replies
  • 0 kudos

Documents - do you agree?

I wonder how many of you agree with me about the needed documents when playing with STM32s?I'd say, one needs 3 documents:the data sheets of your devicethe reference manual of your devicethe ARM Architecture Reference Manual of your deviceThose cover...

Problem with I2C, don't receive ACK

Hey guysI'm using a STM32H743ZIT6 on a Nucleo-144 Dev Board and want to communicate with a BME280 Sensor.For this I'm using a library recommended by somebody else and when I begin the I2C transmission the chip sends the correct address, however, the ...

NC??l by Associate
  • 774 Views
  • 4 replies
  • 0 kudos

Can I download HEX files to STM32 without PCs and programs?

I already have a compiled HEX file and I have already done downloading HEX files to STM32 using my PC using Keil and ST-LINK. Now I would like to download the Hex file to STM32 only on a hardware basis in a more advanced way, without PCs and programs...

SShin.4 by Associate
  • 2192 Views
  • 5 replies
  • 0 kudos

Resolved! Timer doesn't work (STM32F767 + TIM3)

Hello. I have this init TIM3:void Start_Timer_3(void) { LL_TIM_InitTypeDef TIM_InitStruct;   LL_APB1_GRP1_EnableClock(LL_APB1_GRP1_PERIPH_TIM3);   NVIC_SetPriority(TIM3_IRQn, 3); NVIC_EnableIRQ(TIM3_IRQn);   // 50MHz clock // 1000 Hz, up...