User Activity

Hello,in order to use external memories, is it mandatory to use the FMC?Thank you
Hello,in the STM32F7 it is possible to enable instruction prefetch and in the same time disable ICache. Then I suppose that the prefetching does not put the prefetched instruction in cache. Is it correct?Thank you
Hello, I'm studying the STM32F767 MCU, and I noticed that in STMCubeIDE is possible to configure if the speculation is permitted, but I didn't find an explanation of this feature. If I set Speculation disabled, do I set the flash strongly-ordered? Do...
Good morning, in the user manual "STM32 Nucleo-144 boards" is written that the HSE clock is linked to a 8 MHz oscillator. But when I enable the HSE clock in the .ioc file, the value is 25 MHz. I don't understand if the HSE clock is 8 MHz or 25 MHz. T...
#include "components.h"#include "serial_lld_cfg.h"void sddmatxcb(SerialDriver *sdp) { (void)sdp; pal_lld_togglepad(PORT_F, PF_LED2);}void sddmarxcb(SerialDriver *sdp) { (void)sdp; pal_lld_togglepad(PORT_F, PF_LED1);}/* * Application entry point. */in...