Hello,The latest STM32CubeProgrammer (V 2.15.0) appears to be unable to program an STM32L471 microcontroller.It communicates successfully but fails with error: Error: Operation exceeds memory limits Error: failed to erase memoryThe hex file mem...
That's not correct:https://community.arm.com/cfs-file/__key/communityserver-blogs-components-weblogfiles/00-00-00-21-42/7563.ARM-white-paper-_2D00_-DSP-capabilities-of-Cortex_2D00_M4-and-Cortex_2D00_M7.pdfAlso H7's CPU can operate at a higher clock r...
Delays of 100 seconds in an interrupt handler are usually not healthy...The delay function will not work in the EXTI handler if the priority of that interrupt is higher than the priority of SysTick.
NRST is not a GPIO pin.int main (void)
{
[perhaps hardware initialization code]
[perhaps HAL_Init();]
printf("I've been reset!!!!");
[other initialization code]
while (1)
{
[do stuff]
}
}