Resolved! PCB Wiring Guidelines [STM32H743XGH6]
Does anyone have PCB Wiring Guidelines for the STM32H743XGH6?
Ask questions, find answers, and share insights on STM32 products and their technical features.
Does anyone have PCB Wiring Guidelines for the STM32H743XGH6?
Hello, I am trying to write to the option byte area of an stm32u5g9vjt6q using the built in bootloader over the canFD protocol. I have verified I am able to erase and write my programs to flash over canFD using the built in boot loader so I know tha...
Hi ST team,I'm implementing DShot protocol with Timer + DMA. I use 4 PWM channels to generate control signals for ESC. Timer and DMA's parameters are same for all PWM channel. But PA3 (TIM2_CH4) does not work the same as other PWM channels. It only t...
Hi Everybody! I confronts a very interesting problem at my project. Details above:Hardware: NUCLEOG071RBAttached the IOC configuration. Control the SPI CS pin by software. I got small 4-8us signal spikes all GPIO, SPI, I2S pins. SPI and I2S powered ...
Hi, I want to go to sleep/stop mode with STM32 and wake on interrupt. After last interrupt it should wait for 10sec and go back to sleep. But I see an edge case where interrupt could occur just before going to sleep/stop mode.How do I handle interrup...
I have a question regarding voltage level I/O compatibility for STM32 MCUs. The sensors providing analog output within a 0–5V range, while those with digital output at either 0V or 12V. Although some GPIO pins on the MCU are 5V tolerant, they are sca...
I conducted some test in case the option bytes in the STM32L474 (Nucleo 64 board) are set incorrectly for my application. Note HAL is not used (it's a strict bare metal application since this is a home experiment to reduce power consumption to the ba...
#include "stm32f10x.h" #include "interrupt.h" void intr_config() { RCC -> APB2ENR |= RCC_APB2ENR_IOPAEN; RCC -> APB2ENR |= RCC_APB2ENR_IOPBEN; RCC -> APB2ENR |= RCC_APB2ENR_IOPDEN; RCC -> APB2ENR |= RCC_APB2ENR_AFIOEN; GPIOA ->CRH |= GPIO_CRH_MODE...
We have tested the STL package in 2 scenarios for Flash test on STM32L452: CASE 1: Linker settings:FLASH (rx) : ORIGIN = 0x8000000, LENGTH = 512K Pre-Post build settings:0x08000000 0x08080000 0x400 STL user template settings:/* FLASH configur...
As the subject states I am trying to get Ethernet work on the VET6 Microcontroller. I have tried to configure my microcontroller like the Ethernet example project provided on Github for the STM32H723GT. I have tried the exact code on the H723GT Nucle...