User Activity

I am using the latest System Workbench on Nucleo to set up for experiments.My code is as follows:#define SYS_CLOCK_FREQ_50_MHZ 50   int main(void) {   HAL_Init();     SystemClock_Config_HSE(SYS_CLOCK_FREQ_50_MHZ);   GPIO_Init();   UART2_Init();  ...
I would like to experiment with feeding external clocks to the MCU on a Nucleo-F446RE (MB 1136 C) board.I am not a hardware engineer, so pardon my ignorance with this. I am still learning!From the schematics and physical board inspection of the Nucle...
I am trying to verify the various commands described in AN3155, ST's app note for USART protocol used in the STM32 bootloader.Per Section 1, when the bootloader receives 0x7F data frame, the code initializes the serial interface and then is ready to ...