Files
r2_int_1/Library/Includes/system_clock.h
T
moyuhai 02f1638ef2 V1.0
2026-06-12 09:12:35 +08:00

17 lines
250 B
C

#ifndef SYS_CLOCK_H
#define SYS_CLOCK_H
//CKCON寄存器定义
#define IHCKE (1<<7)
#define ILCKE (1<<6)
#define SCKS (1<<0) //0-IH,1-IL
#define CKSEL_IRCH 0
#define CKSEL_IRCL 1
void Sys_Clk_Set_IRCH(void);
void Sys_Clk_Set_IRCL(void);
#endif