📄 dsp_init.c
字号:
#include <cdefBF533.h>
#include <ccblkfn.h>
#include <sysreg.h>
#include "pll_detect.h"
#include "ebiu.h"
#include "pll.h"
#include "core_timer.h"
void dsp_init()
{
sysreg_write(reg_SYSCFG, 0x32); //Initialize System Configuration Register
*pSIC_IWR = 0x1; //Initialize Interrupt Wakeup-Enable Register
*pPLL_CTL = PLL_MSEL << 9; //Initialize PLL Control Register
*pPLL_DIV = PLL_SSEL;
// *pPLL_CTL |= PLL_OFF;
ssync();
idle();
delay_init();
Init_EBIU();
// cache_init();
//xbwang020_413
ctimer_init();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -