User Activity

My requirement is as follows.When I power ON the STM32L4 series MCU, a string must be sent on to the UART terminal like "Power is ON". Now abruptly I will power OFF. Now at this instance, another string must be sent to UART terminal which is "Power i...
void SystemClock_Config(void) { // Step 1: Enable HSI RCC->CR |= RCC_CR_HSION; // Enable HSI while (!(RCC->CR & RCC_CR_HSIRDY)); // Wait until HSI is ready // Step 2: Configure the voltage scaling PWR->CR1 |= PWR_CR1_VOS_0; // Set voltage scale to 1...
I am trying to use the Pin ADC1_EXT11(PC11) and ADC1_EXT15(PA15) as ADC input sampling pins. But in the setting given in Cube IDE, if i enable injected conversion, additionally 2 pins are automatically getting configured for some reason. I don't know...
I am using STM32F423RHT6 in the project. In .ioc file, there are different versions of USB being given. I am getting confused in which is given for what purpose?  Under the connectivity tab, there is USB OTG FS, whereas in Middlewares and Softwares a...
Hi, I am using 3 different STM32MCU's for our various projects, which include STM32F423, STM32L496, STM32F407 etc., I am using HAL Layers for this code in general. Now I need to create HAL Layers for these boards only, and I need to reduce the overhe...
Kudos from