You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
677 B
19 lines
677 B
/******************************************************************************************
|
|
* Copyright (C), 2015, Shanghai Eastsoft Microelectronics Co., Ltd
|
|
* 文件名: system_ES8P5066.c
|
|
* 作 者: AE Team
|
|
* 版 本: V1.00
|
|
* 日 期: 2021/04/27
|
|
* 备 注: 本软件仅供学习和演示使用,对用户直接引用代码所带来的风险或后果不承担任何法律责任。
|
|
*******************************************************************************************/
|
|
|
|
#include "system_ES8P5066.h"
|
|
#include "ES8P5066.h"
|
|
#include "lib_scu.h"
|
|
|
|
uint32_t SystemCoreClock = 48000000;
|
|
|
|
void SystemInit(void)
|
|
{
|
|
SCU_SysClkSelect(SCU_CLK_HRC);
|
|
}
|