Trouble setting D2 clocks
I'm trying to set up the clock tree, and D1CKRDY becomes ready, but for some reason D2CKRDY does not. Here is the code:// Clock setup RCC->CR |= RCC_CR_HSEBYP; // Set HSE as...
Ask questions, find answers, and share insights on STM32 products and their technical features.
I'm trying to set up the clock tree, and D1CKRDY becomes ready, but for some reason D2CKRDY does not. Here is the code:// Clock setup RCC->CR |= RCC_CR_HSEBYP; // Set HSE as...
Hello,I currently use the STM32G4 MCU Nucleo board (NUCLEO-G474RE) - I create an array of numbers (specifically - a sine wave at a certain frequency), which I transmit via the DMA, triggered by a timer (TIM2). Currently, the array is being transmitte...
Hello,I want to receive messages from CAN bus using STM32F042, but I have a problem with it because the interrupt is not working.I can send messages without any kind of problem, the problem is only with the receiving.I have set up the filter as it ca...
Well I tried to read the documentation, but found only HW requirements to use SMPS. So is the SMPS required?Or can the SMPS just tie VDDSMPS, VLXSMPS, VFBSMPS and VSSSMPS to ground directly on PCB when no needs for that?
Hi,I am trying to record audio on a STM32F412 with an MP23DT05-A (digital MEMS microphone made by ST) using DSFDM.After basic configuration in CubeMX the project does not compile. The error is a missing function: undefined reference to `__HAL_RCC_D...
Unfortunately there isn't an example provided for SPI on the STM32L4R9 Disco board. I can tell from the User Manual that I need to set the quad SPDT switch on the board to the SPI configuration. If I understand table 20 in the User Manual, I need to ...
Hi, Can anybody help to point out why the pin voltage on adc input goes high as soon as i start the adc. When I connected a 10K resistor between AIN1 and GND (VDDA=VDD=3.3V), the voltage dropped to 1.6V. I tried HAL_ADC_START , Start with IT , DMA...
Hello,I am using NUCLEO-STM32G071RB hardware. I configure to detect PVD (falling edge) but it looks like it doesn't detect any interrupt./** * @brief Configures the PVD resources. * @param None * @retval None */ void PVD_Config(void) { /*...
While trying to figure out how to trigger multiple ADC conversions every 100ms, I came up with what is listed below. This works but I wanted to know if there is a better way to do this? Also do all selected channels get monitored for conversion at th...
Hi,I'm trying to get familiar with the STM32L5 series of MCU's by loading and executing one of the example projects on the STM32L562E-DK Development Kit. The user manual for getting started with STM32L5, UM2656, says that there is an example project...