Ask questions, find answers, and share insights on STM32 products and their technical features.
Three comparators are fed with three currents of each leg. we want to stop the PWM of concerned leg whenever the current goes beyond the set value of DAC.
Hi, I am trying to setup SDMMC2 interface with an SD card. I am using the pyboard d series therefore I am using the SWDIO and SWDCLK pins. The schematic of the board is here (https://micropython.org/resources/PYBD_SFxW_schematics.pdf).According to th...
Under normal circumstances, THE PLLRdy of RCC is controlled by hardware. When PLLON is enabled by software, PLLRdy is set by hardware. When the software does not enable PLLON, PLRdy is cleared by the hardware. I now have a device with a Farad capacit...
#include "stm32f4xx.h"#define PLLM 25#define PLLN 320#define PLLP 1//divide 4int clock_80MHz_Ex_pll();int pinMode();void InitTIM2();void Delay_us();void Delay_ms(int x);int clock_80MHz_Ex_pll(){RCC->CR|=RCC_CR_HSEON;//External Crystal Oscillatorwhile...
Hello ,So for my project i need to send UART command every 15min Between this my MCU need to be sleeping And send a command if a Interrupt pin change stateBut when i wrote UART_transmit fonction in a ISR : RTC , timer , interrupt pin the comman...
Hi,I have been writing drivers for the ISM43341-M4G-L44-SPI WiFi module mounted on the STM32H7BI3-DK.I can send the device AT commands and get back the OK response, but after setting the network parameters SSID, password, security mode, DHCP after is...
Hi,I´m working with a STMF767zi and STMF429zi kits and I´d like detect ADC overrun. Sow I write the callbackup code:void HAL_ADC_ConvCpltCallback(ADC_HandleTypeDef* hadc) { flagOverRunCH1=0; if (hadc->Instance==hadc1.Instance){ // Overun detection/* ...
Hi everyone,I have synchronized the clock of 2 F7 nucleo boards with the same external oscillator. To do that I have activated MCO of a third nucleo board and then I have connected it to the Pin 29 of CN11 of 2 boards.2 Clocks of MCUs:I have used the...