User Activity

Posted on March 02, 2015 at 01:34Hello,I would like to give external oscillators (TCXO, VCXO, etc) a try as HSE but can't find any diagram or documentation about it regarding STM32(F427). Could you please help with these three questions : OSC_IN ...
Posted on May 14, 2014 at 21:12Hello, is STM32Cube the future exclusive peripheral library for STM32 ?Is the previous peripheral library discontinued and not recommended for new projects ?Thank you
Posted on May 12, 2014 at 05:38Hello,before STM32Cube, my code would try to iterate with the computer right after USB configuration.With the code converted to STM32Cube, it does not. I have to unplug and replug USB. How could I force the MCU to try ...
Posted on May 11, 2014 at 17:21Hello, in stm32f4xx_hal_sd.c line 1554 :pCardInfo->CardCapacity  = ((pCardInfo->SD_csd.DeviceSize + 1)) * 512 * 1024;should be :pCardInfo->CardCapacity  = (uint64_t) ((pCardInfo->SD_csd.DeviceSize + 1)) * 512 * 1024;or...