📄 configinttimer6.c
字号:
#include <timer.h>
#ifdef _T6IF
/*******************************************************************
* Function Name: ConfigIntTimer6 *
* Description: This function configures interrupt and sets *
* Interrupt Priority *
* Return Value: None *
*******************************************************************/
void ConfigIntTimer6(unsigned int config)
{
_T6IF = 0; /* clear IF bit */
_T6IP = (config &0x0007); /* assigning Interrupt Priority */
_T6IE = (config &0x0008)>>3; /* Interrupt Enable /Disable */
}
#else
#warning "Does not build on this target"
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -