|
在论坛上下的FM33LC0xx KEIL例程(2021年4月28号更新)
《BSTIM32 定时》例程主函数main里调用的MF_Clock_Init();MF_SystemClock_Config();这两个函数是空函数吗?其他例程看到也都是空的
void MF_Clock_Init(void)
{
/* MCU Configuration--------------------------------------------------------*/
/* Reset of all peripherals, Initializes the Flash inte**ce and the Systick. */
/* System interrupt init*/
/* Initialize all configured peripherals */
}
/**
* @brief System Clock Configuration
* @retval None
*/
void MF_SystemClock_Config(void)
{
} |
|