Hello,I am using RTC internal wake [10 sec] using the following code:void go_to_sleep(void)
{
HAL_SuspendTick();
HAL_RTCEx_SetWakeUpTimer_IT(&hrtc, 10, RTC_WAKEUPCLOCK_CK_SPRE_16BITS);
HAL_PWREx_EnterSTOP2Mode(PWR_STOPENTRY_WFI);
HAL_RTCEx_Deact...
Hi,I am using STM32F030 for a project where I need to trigger ADC conversion every 100us. I am running this SoC on 8MHz HSI. I am using TIM3 TRG for initiating ADC conversion every 100us. I am obtain ADC every 100us with ADC_CH5 which is set to 3V3 a...
Hi,I am prototyping a custom PCB with integrated ESC for a BLDC Motor (Datasheet attached). For this purpose, I plan of using STSPIN32F0 due to versatile options following this article. The article's design is based on 45A max consumption and looking...
Hi,I am new to STM32 MCUs and working on a small project at the moment. I following the reference manual but facing an issue that as soon as I enable ADC in CR, the MCU stops responding. I have attached the following code if someone could guide on wh...
Thanks for responding but it converts each channel in sequence & EOC event/ flag is generated to indicate each channel conversion. I may switch to DMA but I need to clear this step before proceeding to next.Regards