User Activity

Hi team thanks for your coperation with me. I have been trying to enable MDIO peripheral At one of the STM32 EVK kit(NUCLEO-H7A3ZI). What i could see, when i have gone through the MDIO's official block diagram. The MDC pin drew as input and MDIO as b...
#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...
boot from flash Board:Stm32f401ccu6 black phillthese are my upload statusSTMicroelectronics ST-LINK GDB server. Version 5.8.0Copyright (c) 2020, STMicroelectronics. All rights reserved.Starting server with the following options:       Persistent Mod...
#include "stm32f4xx.h"#define PLLM 25#define PLLN 320#define PLLP 1//divide 4void SysConfigure(){      RCC->CR|=RCC_CR_HSEON;//External Crystal Oscillator      while(!(RCC->CR & RCC_CR_HSERDY));// External Crystal oscillator status flag checking     ...