Posted on July 14, 2015 at 13:25Hello,I would suggest you to Have a look at the ADC_DMA example in the STM32F4 Standard Peripherals Library.You can download it from this http://www.st.com/web/catalog/tools/FM147/CL1794/SC961/SS1743/LN1939/PF257901 I...
Posted on July 14, 2015 at 12:34
Hello,
I would suggest you to use this code to enter in standby mode
/* Enable PWR Clock */
RCC->APB1ENR |= RCC_APB1ENR_PWREN;
/* Disable WKUP pin 1 */
PWR_WakeUpPinCmd(DISABLE);
/* Clear standby flag *...
Posted on July 14, 2015 at 11:51Hello,1) In the section Reset and clock control (RCC) in any reference manual of STM32 products you can find details about clocks settings.2) If you are using HAL, I would suggest you to use CUBEMX tool which has ''cl...