STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

STM32F4 - Hanging on SPI Get Status

Posted on October 11, 2015 at 23:36Hi, I'm trying to get a Micron M25P128 flash device going on SPI1. below is the initialization, and then the send function. At this point I am sending just a read ID opcode, but it is hanging at the next line after...

[Bug] SAI1 PLL settings CubeMX

Posted on September 11, 2015 at 16:13 Hello There is a bug in the current version of CubeMX using the L4 libs. The ''PLLSAI1ClockOut'' (and I assume the SAI2 one) isn't set within the generated SystemClock_Config function which leads to ...

STM32F4 Delay

Posted on October 31, 2014 at 16:29Hello.How to insert precision delay with timer or systick?For example, 100 ns or 1 us.Best regards,CH

How to compare a result of a function ?

Posted on October 11, 2015 at 12:39Guys, How can compare the result of the furnction output ? I have on main.c :Code:result = VS1053_Init(); if (result == 0) { HAL_GPIO_WritePin(GPIOE, GPIO_PIN_6 , 1 ); HAL_Delay(100); HAL_GPIO_WritePin(GPIOE, GPIO...